Forum Replies Created

Page 15 of 21
  • Marziya

    Member
    May 8, 2020 at 1:21 pm in reply to: External Data Sources in Salesforce?

    External data sources usually contain data that does not change very much or data that is too large to bring into the Active Data Cache.

  • Marziya

    Member
    May 8, 2020 at 1:20 pm in reply to: External Objects in Salesforce?

    Each external object is associated with an external data source definition in your Salesforce organization. It has a reference to its external data source and a table within that source.

  • Marziya

    Member
    May 8, 2020 at 1:16 pm in reply to: What is ProcessInstance in Salesforce?

    ProcessInstance. Represents an instance of a single, end-to-end approval process. Use this and the node, step, and workitem process instance objects to create approval history reports.

  • Marziya

    Member
    May 7, 2020 at 1:02 pm in reply to: How to track changes in Salesforce org?

    To view the audit history, from Setup, enter View Setup Audit Trail in the Quick Find box, then select View Setup Audit Trail.

  • Marziya

    Member
    May 7, 2020 at 12:59 pm in reply to: What are types of Report Formats in Salesforce?

    There are four types of reports you can create in Salesforce, Tabular, Summary,Matrix and Joined Reports. Each are best suited for showing different types of data depending on what you want out of a report. Tabular – The images that I have shown you in this post have all been from a tabular report.

  • Marziya

    Member
    May 7, 2020 at 12:57 pm in reply to: What is connected Apps in Salesforce?

    Connected Apps use the standard OAuth 2.0 protocol to authenticate, provide Single Sign-On, and acquire access tokens for use with Salesforce APIs.

  • Marziya

    Member
    May 6, 2020 at 1:54 pm in reply to: What is Record Type in Salesforce?

    Record types allow you to associate different business processes and subset of pick list value to different users based on their user profile. They are used to drive which page layouts users see when viewing records, based on their user profile.

  • Hii Pooja,
    Finish method is used to send confirmation emails or execute post-processing operations.

  • How to check whether an ArrayList is empty or not in Apex in Salesforce?

    • This reply was modified 4 years, 4 months ago by  Marziya.
  • Marziya

    Member
    May 6, 2020 at 1:33 pm in reply to: Can we call future method from Queueable in salesforce?

    Future methods cannot be monitored, but queueable apex can be monitored using the job id which is returned by System. enqueueJob() In execution cycle, you cannot call from one future method to another future method. Its achieved inqueueable class by using the Chaining Jobs.

  • Marziya

    Member
    May 6, 2020 at 1:30 pm in reply to: Why future method is static in Salesforce?

    The reason why future methods are static and having a void return type is : ... Future method by definition is static so that variables with this method is associated to the class and not the instance and you can access them without instantiating the class.

  • Marziya

    Member
    May 5, 2020 at 2:12 pm in reply to: How we can configure object type relationship in Salesforce?

    A many-to-many relationship allows each record of one object to be linked to multiple records from another object and vice versa. To create a many-to-many relationship, simply create a custom junction object with two master-detail relationship fields, each linking to the objects you want to relate.

  • Marziya

    Member
    May 5, 2020 at 2:11 pm in reply to: Is AMPscript case sensitive in Salesforce?

    AMPscript can include numeric and string constants. ... Boolean constant values must use true or false and are case-insensitive.

  • The Test.isRunningTest() method is used to identify, if the piece of code being executed is invoked from a Test class execution or from other artefacts such as a Trigger, Bacth Job etc. Returns true if the code being executed is invoked from a test class otherwise returns a false.

  • Marziya

    Member
    May 4, 2020 at 2:22 pm in reply to: How does Field Service Lighting work in Salesforce ?

    When Field Service Lightning is enabled, you gain access to a suite of standard objects that you can find in Setup and as tabs in Salesforce. These objects make up the core field service features, including work orders and service appointments.

  • Marziya

    Member
    May 4, 2020 at 2:21 pm in reply to: What are migration tools in Salesforce?

    The Force.com migration tool is a Java/Ant based command line utility that let's Salesforce developers access the Salesforce metadata API indirectly to move Apex and configuration changes between Orgs. The Salesforce metadata API is a SOAP API that allows you to push and retrieve some metadata types

  • Marziya

    Member
    May 4, 2020 at 2:08 pm in reply to: What is Field Service Lightning in Salesforce ?

    Field Service Lightning (FSL) is part of the Salesforce Service Cloud suite, a management tool that enhance field service management by automation and integration of tasks for agents, dispatchers and mobile employees. Therefore provides a streamlined service experience with an intelligent and productive workforce.

  • Marziya

    Member
    May 1, 2020 at 10:56 am in reply to: What is the character limit in Apex in Salesforce?

    It is a standard Developer Edition org. You are currently using 1,797,594 characters of Apex Code (excluding comments and @isTest annotated classes) in your organization, out of an allowed limit of 10,000,000 characters. Note that the amount in use includes both Apex Classes and Triggers defined in your organization.

  • Apex runs in a multitenant environment, the Apex runtime engine strictly enforces limits to ensure that runaway Apex code or processes don't monopolize shared resources. ... Test classes: This limit also does not apply to any code included in a class defined with the @isTest annotation.

  • Marziya

    Member
    May 1, 2020 at 10:51 am in reply to: How does Salesforce calculates test coverage?

    The Apex testing framework generates code coverage numbers for your Apex classes and triggers every time you run one or more tests. ... To deploy Apex or package it for the Salesforce AppExchange, unit tests must cover at least 75% of your Apex code, and those tests must pass.

  • Marziya

    Member
    April 30, 2020 at 11:32 am in reply to: When to use newMap and oldMap in Salesforce?

    when we say trigger.newMap we are talking about a map of key-value pairs where the key is the account ID and the value is the account record itself.
    Trigger.OldMap: A map of IDs to the old versions of the sObject records.

  • Marziya

    Member
    April 30, 2020 at 11:31 am in reply to: What is static and non static in Salesforce?

    Using Static Methods and Variables. You can use static methods and variables only with outer classes. Inner classes have no static methods or variables. A static method or variable doesn't require an instance of the class in order to run. ... A static variable is static only within the scope of the Apex transaction.

  • Marziya

    Member
    April 30, 2020 at 11:26 am in reply to: What is the purpose of System.assertEquals() in salesforce?

    System. assertEquals() is used to validate two values are equal. Basically it is used in test method. This method asserts that the first two arguments, x and y are the same, if they are not a runtime exception is thrown.

  • Marziya

    Member
    April 29, 2020 at 1:57 pm in reply to: What is Email to Case in Salesforce ?

    Email to Case is a standard Salesforce feature that allows cases to be created from emails. We will be looking into the detail of On-Demand Email-To-Case and Email Services.

  • Marziya

    Member
    April 29, 2020 at 1:55 pm in reply to: What is trigger newMap keySet () in Salesforce?

    The key used in the map is the record ID, and the value is the record itself.
    .keySet() is a method used on maps that returns all the keys of the map. Since the key in the map above is the record ID, you are returned a set of all IDs on your map.

Page 15 of 21