Forum Replies Created

Page 6 of 24
  • Deepak

    Member
    September 18, 2020 at 5:36 pm in reply to: What is SQL activity in SFMC?

    A query is an activity that retrieves data extension or data view information matching your criteria, then includes that information in a data extension.

  • Deepak

    Member
    September 18, 2020 at 5:35 pm in reply to: Whats is multi org in salesforce marketing cloud?

    Multi-Org is an Enterprise 2.0 account configuration. This configuration allows individual Marketing Cloud business units to connect with a single Salesforce org, independent of the parent account or other business units.Multiple business units connected to a single org.

  • Deepak

    Member
    September 17, 2020 at 8:49 am in reply to: What are the different salesforce products?

    Seven Salesforce Products that can transform your business :
    1. Sales Cloud.
    2. Service Cloud.
    3. Marketing Cloud.
    4. Community Cloud.
    5. Analytics Cloud.
    6. Apps Cloud.
    7. IoT Cloud.

  • Deepak

    Member
    September 17, 2020 at 8:46 am in reply to: What are solutions in Salesforce?

    A solution is a detailed description of a customer issue and the resolution of that issue. Solution managers, administrators, and users with the appropriate permissions can create, review, and categorize solutions. They can also publish solutions to the Self-Service portal and make solutions public.

  • Deepak

    Member
    September 17, 2020 at 8:31 am in reply to: Can a custom summary formula reference other summary formulas?

    A summary formula can't reference another summary formula.

  • Deepak

    Member
    September 16, 2020 at 3:08 pm in reply to: What is mock class in Salesforce?

    To deploy or package Apex, 75% of your code must have test coverage. By default, test methods don’t support HTTP callouts, so tests that perform callouts fail. Enable HTTP callout testing by instructing Apex to generate mock responses in tests, using Test.setMock.

  • Deepak

    Member
    September 16, 2020 at 3:03 pm in reply to: How can we generate ApexDoc for Apex Classes in Salesforce?

    ApexDoc is a java app that you can use to document your Salesforce Apex classes. You tell ApexDoc where your class files are, and it will generate a set of static HTML pages that fully document each class, including its properties and methods.

  • A ternary operator takes three arguments. The first one is the condition, the second one is executed if the condition is true, and the third one is executed if the condition is false. In lf else just check for the condition in if part and if satisfies then good otherwise it goes for else part.

  • Sales Cloud give you Web-to-lead functionality, whereas Service Cloud gives you Web-to-case functionality. Salesforce Service Cloud makes connecting one-to-one with every customer, across multiple channels on any device, extremely easy.

  • Deepak

    Member
    September 15, 2020 at 4:34 pm in reply to: Can we Detect Apex Runtime Context in Salesforce ?

    You can now detect Apex context at runtime and correlate multiple logs triggered by the request, using Request ID and Quiddity values.Request class to obtain the Request ID and Quiddity of the current Salesforce request.

  • Deepak

    Member
    September 15, 2020 at 3:28 pm in reply to: What is component level events in Salesforce lightning component?

    A component event is fired from an instance of a component. A component event can be handled by the component that fired the event or by a component in the containment hierarchy that receives the event. The framework supports capture and bubble phases for the propagation of component events.

  • Deepak

    Member
    September 14, 2020 at 5:46 am in reply to: Difference between person account and business account in Salesforce ?

    Business accounts store information about companies.
    Person accounts store information about individual people.

  • Deepak

    Member
    September 14, 2020 at 5:45 am in reply to: How does Count(fieldname) works in SOQL in Salesforce?

    COUNT(fieldName) returns the number of rows that match the filtering conditions and have a non-null value for fieldName. This syntax is newer than COUNT() and is available in API version 18.0 and later.

  • Deepak

    Member
    September 14, 2020 at 5:43 am in reply to: What is the Controller extension in Apex in Salesforce?

    A controller extension is an Apex class that extends the functionality of a standard or custom controller. Use controller extensions when: You want to leverage the built-in functionality of a standard controller but override one or more actions, such as edit, view, save, or delete.

  • Deepak

    Member
    September 11, 2020 at 5:38 am in reply to: What are the different workflow actions available in Salesforce?

    There are two types of actions present in a workflow in Salesforce:
    Immediate actions: Actions that get executed immediately when a record is created or edited.
    Time-dependent actions: Actions that get executed after a certain duration of time, such as 10 days, before a record's close date.

  • Deepak

    Member
    September 11, 2020 at 5:36 am in reply to: Create parallel approval process

    Yes, Parallel approval process allows specifying (upto 25) multiple approvers. The approver setting could be set to unanimous, or first action. In unanimous parallel approval process, all approvers must approve a request, before it is considered as approved.

  • Deepak

    Member
    September 11, 2020 at 5:35 am in reply to: What is Time-Dependent Workflow – Considerations in Salesforce?

    Time-dependent actions are executed at a specific time, such as 10 days before a record's close date. When that specific time passes, the workflow rule re-evaluates the record to make sure that it still meets the rule criteria. If the record does, the workflow rule executes those actions.

  • Deepak

    Member
    September 10, 2020 at 5:31 am in reply to: How many types of portals are available in Salesforce?

    There are 3 types of Portals available in Salesforce:
    a. Customer Portal.
    b. Partner Portal.
    c. Self Service Portal.

  • Deepak

    Member
    September 10, 2020 at 5:29 am in reply to: What are snapshots in Salesforce?

    A reporting snapshot lets you report on historical data. Authorized users can save tabular or summary report results to fields on a custom object, then map those fields to corresponding fields on a target object. They can then schedule when to run the report to load the custom object's fields with the report's data.

  • Deepak

    Member
    September 10, 2020 at 5:29 am in reply to: How to find the current Salesforce release?

    1. Click Status button next to status.salesforce.com.
    2. Type your Salesforce instance from step 1 into the search bar and hit Enter.
    3. On the search results page click the Instance.
    4. Click Maintenances.
    5. Scroll down and you will get information on your next Salesforce release date.

  • Deepak

    Member
    September 9, 2020 at 11:49 am in reply to: What are the limitations of Apex Metadata API?

    There are some limitations like In the current release, we support only two metadata types: page layouts and the records of custom metadata types. Reading, creating, and updating metadata are supported, but deleting metadata is not supported.

  • Deepak

    Member
    September 9, 2020 at 11:47 am in reply to: How to delete the Records by Flow in Salesforce?

    You can find the Record Delete element under the Data section of the Palette.Make sure you type the name instead of scrolling down! Now, all we have to do is tell Salesforce which record we want to delete.

  • Deepak

    Member
    September 9, 2020 at 11:17 am in reply to: What is the use of Crypto Class in Salesforce ?

    Crypto class provides a number of cryptographic functions for creating digests, message authentication codes, and signatures, as well as encrypting and decrypting information. This allows you to encrypt or decrypt information in Force.com or integrate with external services that require these functions.

  • Deepak

    Member
    September 8, 2020 at 6:23 am in reply to: Why use triggers in Salesforce?

    Apex triggers enable you to perform custom actions before or after events to records in Salesforce, such as insertions, updates, or deletions. Just like database systems support triggers, Apex provides trigger support for managing records.

  • Deepak

    Member
    September 8, 2020 at 6:22 am in reply to: What is diff b/w JSON.serialize() and JSON.serializePretty() in Apex?
    • JSON.serialize() serializes Apex objects into JSON content.
    • JSON.serializePretty() serializes Apex objects into JSON content and generates indented content using the pretty-print format.
Page 6 of 24