Forum Replies Created

Page 2 of 19
  • Anuj

    Member
    October 12, 2020 at 12:24 pm in reply to: What are the Benefits of using Custom Setting in Salesforce ?

    The benefit of using custom setting instead of custom objects:

    • Data in custom setting is available in application cache, hence efficient and fast access.
    • No need to waste SOQL for fetching data from custom setting. There are some methods available in custom settings that we can use to get the data instead of SOQL.
  • Anuj

    Member
    October 9, 2020 at 3:30 pm in reply to: What are the Best Practices to make your deployment faster?

    How to improve deployment process?
    Let's take a look!

    1. Plan Early. ...
    2. Release Regularly. ...
    3. The Continuity Trifecta: Integration, Delivery, and Deployment. ...
    4. Make Use of Tools and Services. ...
    5. Automating Code Review. ...
    6. Automate Most Things, Don't Worry About All Things. ...
    7. Test Early, Test Often. ...
    8. Practice Gradual Feature Rollouts.
  • Anuj

    Member
    October 9, 2020 at 3:24 pm in reply to: How can we add page layout to outbound Changeset in Salesforce ?
  • Anuj

    Member
    October 9, 2020 at 3:21 pm in reply to: What are the Salesforce deployment Best practices ?

    Salesforce Deployment Best Practices

    • Plan everything well in advance. ...
    • Build everything in a sandbox environment first. ...
    • Test, test, and test again. ...
    • Give pre-deployment a try. ...
    • Create a comprehensive release management strategy. ...
    • Practice good governance. ...
    • Document everything. ...
    • Keep track of changes with version control.
  • A single Apex transaction can make a maximum of 100 callouts to an HTTP request or an API call.

  • Anuj

    Member
    October 6, 2020 at 4:22 pm in reply to: What is sObject in Salesforce?

    The Account sObject is an abstraction of the account record and holds the account field information in memory as an object. ... Standard and custom object records in Salesforce map to their sObject types in Apex. Here are some common sObject type names in Apex used for standard objects.

  • Anuj

    Member
    October 6, 2020 at 4:18 pm in reply to: How many active assignment rules can you have in a case?

    At a time only one assignment rule can be active for an Org. But you can have a multiple entries for that rule, so that your cases will be assigned to correct queue.

  • Anuj

    Member
    October 5, 2020 at 4:19 pm in reply to: How to Insert Standard List Controller in Visualforce page?

    Using a standard list controller is very similar to using a standard controller. First you set the standardController attribute on the <apex:page> component, then you set the recordSetVar attribute on the same component.

  • Anuj

    Member
    October 5, 2020 at 4:16 pm in reply to: What is Inherited Sharing keyword in Salesforce ?

    If you specify inherited sharing Keyword on an Apex class, which allows the class to run in the sharing mode of the class that called it. Using inherited sharing enables you to pass security review and ensure that your privileged Apex code is not used in unexpected or insecure ways.

  • Anuj

    Member
    October 5, 2020 at 4:15 pm in reply to: What is apex:pagemessage component in Salesforce ?

    This component should be used for presenting custom messages in the page using the Salesforce pattern for errors, warnings and other types of messages for a given severity.

  • Anuj

    Member
    October 1, 2020 at 4:41 pm in reply to: How do I use entitlement templates in Salesforce?

    Entitlement templates let you predefine terms of support that users can add to products....Add the entitlement template to a product.

    1. Go to the product detail page.
    2. Click Add Entitlement Template on the Entitlement Templates related list.
    3. Select the entitlement template.
    4. Click Insert Selected.
    5. Click Done.
  • Anuj

    Member
    October 1, 2020 at 4:39 pm in reply to: What are the ways to customize entitlements in Salesforce org?
  • Anuj

    Member
    October 1, 2020 at 4:36 pm in reply to: What is the service contract in Salesforce?

    Service contracts in Salesforce represent a customer support agreement between you and your customers. You can use them to represent subscriptions, service level agreements (SLAs), and other types of customer support.

  • Anuj

    Member
    September 30, 2020 at 5:17 pm in reply to: What is inbound and outbound calls in Salesforce?

    Inbound web service is when Salesforce exposes SOAP/REST web service, and any external/third party application consume it to get data from your Salesforce org. It is an Inbound call to Salesforce, but outbound call to the external system.

  • Anuj

    Member
    September 30, 2020 at 5:16 pm in reply to: What are the benefits of asynchronous processing in Salesforce?

    One of the main benefits of running asynchronous Apex is higher governor and execution limits. For example, the number of SOQL queries is doubled from 100 to 200 queries when using asynchronous calls.

  • Anuj

    Member
    September 30, 2020 at 5:14 pm in reply to: How do I insert data using the data loader in Salesforce?
    1. Open the Data Loader.
    2. Click Insert, Update, Upsert, Delete, or Hard Delete. ...
    3. Enter your Salesforce username and password. ...
    4. Choose an object. ...
    5. To select your CSV file, click Browse. ...
    6. Click Next. ...
    7. If you are performing an upsert, your CSV file must contain a column of ID values for matching against existing records.
  • Difference Between Inbound and Outbound Web Service in Salesforce. Inbound Web Service: ... It is an Inbound call to Salesforce, but outbound call to the external system. Here, Salesforce is the publisher and external system is the consumer of web services.

  • Anuj

    Member
    September 29, 2020 at 12:58 pm in reply to: What IAAS i salesforce?

    Infrastructure as a service (IaaS) is a form of cloud computing that provides virtualized computing resources over the internet. IaaS is one of the three main categories of cloud computing services, alongside software as a service (SaaS) and platform as a service (PaaS).

  • Anuj

    Member
    September 29, 2020 at 12:53 pm in reply to: How to abort queued Apex jobs in Salesforce?

    So you scheduled it, now you want to abort the job for some reason. How can you do? The jobs we schedule will be available in the crontrigger object. Lets query the trigger and see how we can retrieve the particular job to abort it.SELECT CreatedById, CreatedDate, CronExpression, CronJobDetailId, EndTime,Id, LastModifiedById, NextFireTime, OwnerId, PreviousFireTime, StartTime, State, TimesTriggered FROM CronTriggerSo from the above query, I found my job based on the cronexpression and createddate. I want to abort that job. So I get the id of the job and assign it to the soql query.
    CronTrigger ct = [SELECT Id FROM CronTrigger where Id=''];System.abortJob(ct.Id);

  • Anuj

    Member
    September 28, 2020 at 4:44 pm in reply to: How do I import a product in Salesforce?

    Open the Data Loader click on Insert, then under the list of Salesforce object choose Price Book Entry (PricebookEntry). Map the fields accordingly and do the import. Save success and error files in a folder.

  • Anuj

    Member
    September 28, 2020 at 4:43 pm in reply to: How do I mass delete products in Salesforce?

    From Setup, enter Mass Delete Records in the Quick Find box, then select Mass Delete Records and click the link for the type of record to delete. Review the information that is deleted with the records. Specify conditions that the selected items must match, for example, “State equals California.”

  • Anuj

    Member
    September 28, 2020 at 4:42 pm in reply to: relation between Opportunity, Product, OpportunityLineItem, PricebookEntry

    <div> Here's the Relationship diagram.</div>
    enter image description here

    • This reply was modified 3 years, 6 months ago by  Anuj.
  • Anuj

    Member
    September 25, 2020 at 12:50 pm in reply to: What is account based marketing in Salesforce?

    Account-based marketing is a B2B marketing strategy that focuses on specific customers or accounts and targets each as a market of one with highly personalized 1-to-1 experiences and content.

  • Anuj

    Member
    September 25, 2020 at 12:49 pm in reply to: How does support process works in Salesforce?

    Support Process is only for the "Status" pick list. The pick list values available in the status of a case record type determine a support process. It is only a business relevant feature as the status field is the most process-specific field on a case.

  • Anuj

    Member
    September 25, 2020 at 12:48 pm in reply to: How to manage cases in Salesforce?

    After a case is opened, you update the customer and case details, then you ultimately close and resolve the customer issue.

Page 2 of 19