Forum Replies Created

Page 13 of 24
  • Shweta

    Member
    July 13, 2020 at 3:59 pm in reply to: What is Process instance in Salesforce?

    Process Instance: It represents one instance of an approval process. a new process instance is created each time a record is submitted for approval and it gives the status of approval & date of when approval submitted.

  • Shweta

    Member
    July 13, 2020 at 3:55 pm in reply to: Why do we use flow in Salesforce?

    Flow is used when you have to display or collect information through screens making it more visible to the users.

  • Shweta

    Member
    July 10, 2020 at 3:07 pm in reply to: What is the nested wrapper class in Salesforce?

    A nested wrapper class that is a wrapper consisting of another class variable.

  • Shweta

    Member
    July 10, 2020 at 3:00 pm in reply to: Can a trigger make a call to Apex callout method in Salesforce?

    An Apex trigger can execute a callout method by using the @future keyword.

  • Shweta

    Member
    July 10, 2020 at 2:57 pm in reply to: What do you mean by the bulkifying trigger in Salesforce?

    Bulkifying trigger: It refers to the concept of making sure the code properly handles more than one record at a time. When a batch of records initiates Apex, a single instance of that Apex code is executed, but it needs to handle all of the records in that given batch.

  • Shweta

    Member
    July 9, 2020 at 2:16 pm in reply to: What is JSON parse and JSON Stringify?

    JSON.parse(): it takes a JSON string and transforms it into a JavaScript object.
    JSON.stringify(): It takes a JavaScript object and transforms it into a JSON string.

  • Shweta

    Member
    July 9, 2020 at 2:15 pm in reply to: What is the use Component Event in Salesforce?

    <div>A component event is used to communicate data to another component. It contains attributes that can be set before the event is fired and read when the event is handled. It can be handled by the component that fired the event or by a component in the containment hierarchy that receives the event.</div>

  • Shweta

    Member
    July 9, 2020 at 2:09 pm in reply to: how many external id in salesforce ?

    We can designate up to 25 External Id fields per object.

  • Shweta

    Member
    July 8, 2020 at 3:04 pm in reply to: What is QTC in Salesforce?

    Quote-to-Cash is the complete set of business processes involved in selling, from creating initial offers for prospects to collecting cash. Quote-to-Cash begins with Configure, Price, Quote (CPQ)—configuring the offer, developing the appropriate pricing, and creating the quote. It continues on through negotiations, invoicing, payment, and even renewals and renegotiations.

  • Shweta

    Member
    July 8, 2020 at 2:57 pm in reply to: How to get currentUsrId in Salesforce?

    You can get the current user id by using UserInfo.getUserId() (which returns the user id of the current user) in your apex class.

  • Shweta

    Member
    July 8, 2020 at 2:53 pm in reply to: What is Authorisation Form in Salesforce?

    Authorization Form: It stores the name, version, and effective dates of the authorization form. You can use the revision number to determine if you’re using the current version. You can also link to a default authorization form text record to use if the text isn’t available for a specific language.

  • The root-level tag of every component is <aura:component>. Every component inherits the body attribute from <aura:component>.

  • Shweta

    Member
    July 7, 2020 at 3:35 pm in reply to: What is conditional highlighting?

    <div>Conditional highlighting is used to highlight field values on summary or matrix reports based on ranges and colors you specify. If you want to enable conditional highlighting, your report must contain at least one summary field or custom summary formula.</div>

  • Shweta

    Member
    July 7, 2020 at 2:09 pm in reply to: What is compliance categorization in Salesforce?

    Compliance categorization metadata field is used to record whether a field's data is related to a compliance act, definition, or regulation. Reviewing your fields and applying compliance categorization values can help you uphold data privacy requirements.

  • Shweta

    Member
    July 6, 2020 at 3:37 pm in reply to: Lightning component used as a tab.

    We need to add the force:appHostable interface to a Lightning component to allow it to be used as a custom tab in Lightning Experience.

  • These are the Parameter for attributes:
    Access: Indicates whether the attribute can be used outside of its own namespace. Possible values are public (default), and global, and private.
    Name: It is required and must be provided.
    Type: Type of the attribute. It could be any of the types that we discussed above like String, Boolean, etc.
    Default: The default value that you want to provide to the attribute.
    Required: It contains boolean value true or false. The default value is false.
    Description: A brief summary of the attribute and its usage.

  • Shweta

    Member
    July 6, 2020 at 3:32 pm in reply to: What is meant by Aura definition bundle in Salesforce?

    Aura definition bundle represents an Aura definition bundle. A bundle contains an Aura definition, such as an Aura component, and its related resources, such as a JavaScript controller. The definition can be a component, application, event, interface, or a tokens collection.

  • Shweta

    Member
    July 2, 2020 at 12:25 pm in reply to: What can cause data loss in Salesforce?

    These are the most common causes of data loss:
    1. Accidental or malicious deletion
    2. Bad code can make incorrect changes
    3. Data import gone wrong
    4. Problems with an integration
    5. SOQL mistake

  • Shweta

    Member
    July 2, 2020 at 12:13 pm in reply to: What is the use of Salesforce DX?

    Salesforce DX is a product within the Salesforce Lightning Platform that allows for easy development. This tool includes easier integration with your existing developer workflow, faster development processes, and automated testing.

  • Shweta

    Member
    July 2, 2020 at 12:10 pm in reply to: What are scratch orgs?

    Scratch orgs is one of the top features in Salesforce DX, which enables the critical concept of “version-control-as-the-source-of-truth.” Scratch orgs are identified as the ephemeral orgs which can be created and destroyed trivially with these commands:
    force:org:create
    force:org:delete

  • Shweta

    Member
    July 1, 2020 at 1:44 pm in reply to: What is the difference between event and task in Salesforce?

    An event is a calendar event scheduled for a specific day and time.
    Examples:
    1) Meetings
    2) Scheduled Conference Calls
    A task is an activity not scheduled for an exact day and time. You can specify a due date for a task or there may not be a particular time or date that the tasks or activities need to be completed by.
    Examples:
    - A list of phone calls you need to make.
    - An email that needs to be sent.

  • Shweta

    Member
    July 1, 2020 at 1:41 pm in reply to: How do I find my Salesforce schema?

    To find the Schema follow these steps:
    1. Go to SetUp -> Enter Schema Builder in Quick find box -> Select Schema builder
    2. Check the checked box from the object’s list on left side.

    3. now you can see the object’s schema and relationship among their fields with other objects.

  • Shweta

    Member
    July 1, 2020 at 1:34 pm in reply to: What are joined reports in Salesforce?

    Joined report: It consists of up to five report blocks, which you add to the report to create multiple views of your data. For each block, you can add regular and summary fields, create standard and cross-block custom summary formulas, apply filters, and sort columns.

  • Shweta

    Member
    June 30, 2020 at 2:33 pm in reply to: How to use formula in Process builder in Salesforce?

    you can build a formula and select a formula checkbox in the process builder to create a formula for the entry criteria.

  • Shweta

    Member
    June 30, 2020 at 1:54 pm in reply to: How to get Ip Address of User in Apex in Salesforce?

    we can use this,
    String ipAddress = ApexPages.currentPage().getHeaders().get('X-Salesforce-SIP');

Page 13 of 24