Forum Replies Created

Page 12 of 20
  • only 10000

  • Aditya

    Member
    May 22, 2020 at 6:44 pm in reply to: What is Manual Sharing in Salesforce?

    Hi,
    Manual sharing in Salesforce. Manual sharing allows users to grant one-off access to their individual records for users, roles, and public groups. Manual sharing is available: To the record owners, their managers in the role hierarchy, and administrators

  • Aditya

    Member
    May 22, 2020 at 6:30 pm in reply to: What is a Record Owner in Salesforce?

    Hi,
    Record ownership is at the core of Salesforce's record access capabilities, which allow you to specify which users or types of users should be able to access specific records or types of records

  • Hi,
    Component event usage is more localized as these can be used by same component or component in containment hierarchy. If you use application events then it may fire system events. Use Application events only if components are present in 2 different app or are not in containment hierarchy

  • Aditya

    Member
    May 20, 2020 at 3:39 pm in reply to: Which interface we are supposed to implement.

    Hi,
    Add the force:lightningQuickAction or force:lightningQuickActionWithoutHeader interface to a Lightning component to enable it to be used as a custom action in Lightning Experience or the Salesforce mobile app.

  • Aditya

    Member
    May 19, 2020 at 3:50 pm in reply to: What is Maximum RecentlyViewed records allowed in Salesforce?

    Hi,
    If this parameter is not specified, the default maximum number of records returned is the maximum number of entries in RecentlyViewed, which is 200 records per object. For an example of retrieving a list of recently viewed items, see View Recently Viewed Records.

  • Aditya

    Member
    May 19, 2020 at 3:49 pm in reply to: What is Relationship query limits in Salesforce?

    Hi,
    No more than 55 child-to-parent relationships can be specified in a query. A custom object allows up to 25 relationships, so you can reference all the child-to-parent relationships for a custom object in one query. No more than 20 parent-to-child relationships can be specified in a query.

  • Aditya

    Member
    May 19, 2020 at 3:47 pm in reply to: What is Maximum number of rows skipped by OFFSET in Salesforce?

    Hi,
    Maximum number of rows skipped by OFFSET in Salesforce is 2000.

  • Aditya

    Member
    May 18, 2020 at 5:50 pm in reply to: What is Maximum length of SOSL SearchQuery string in Salesforce?

    Hi,
    SearchQuery is longer than 4,000 characters, any logical operators are removed

  • Hi,
    The maximum number of rows that are returned in the text query, up to 2,000 results.

  • Aditya

    Member
    May 18, 2020 at 5:41 pm in reply to: Can we use inner query inside inner query in Salesforce?

    Hi,
    Yes, we can use inner query inside inner query.

  • Aditya

    Member
    May 15, 2020 at 3:47 pm in reply to: What is a benefit of using a trigger framework Salesforce?

    Hi,
    Here are some of the advantages of using a trigger framework: Removing trigger logic from the trigger makes unit testing and maintenance much easier. Standardising triggers means all of your triggers work in a consistent way. A single trigger per object gives full control over order of execution.

  • Aditya

    Member
    May 15, 2020 at 3:44 pm in reply to: How do we create a trigger handler in Salesforce?

    Hi,
    trigger CaseLegalUpdate on Legal_Description__c (after insert, after update) {
    List<Id> legalId = new List<Id>();
    for(Legal_Description__c lg : Trigger.new)
    {
    if(lg.Case__c!=NULL)
    {
    legalId.add(lg.Case__c);
    }
    }
    List<Case> caseRecord = new List<Case>();
    if(legalId!=NULL && legalId.size()>0)
    {
    for(Case c:[SELECT id,Check_Legal_Description__c,RecordType.Name FROM Case WHERE id IN:legalId])
    {
    c.Check_Legal_Description__c=true;
    caseRecord.add(c);
    }
    update caseRecord;
    }
    }

  • Hi,
    The NOW() function returns the Date/Time value of the current moment. It's useful when you are concerned with specific times of day as well as the date. The TIMENOW() function returns a value in GMT representing the current time without the date.

  • Aditya

    Member
    May 13, 2020 at 5:49 pm in reply to: What is ‘Salesforce Lightning’?

    Lightning includes the Lightning Component Framework and some exciting tools for developers. Lightning makes it easier to build responsive applications for any device.

  • YES, It makes difference.

  • Aditya

    Member
    May 13, 2020 at 5:47 pm in reply to: what is Apex Hammer in Salesforce?

    The Hammer means taking every single Apex test that you or anyone else has created and running it twice.

  • Aditya

    Member
    May 12, 2020 at 5:47 pm in reply to: What is Salesforce Standard Fields?

    Salesforce Standard fields are fields which are predefined by Salesforce.

  • Aditya

    Member
    May 12, 2020 at 5:46 pm in reply to: How do I change the field type in Salesforce?

    Hi,
    From the management settings for the field's object, go to Fields.
    Click Edit next to the custom field you want to change.
    Click Change Field Type.
    Select a new data type and click Next.
    Enter a field label, name, and any other attributes, and then save your changes.

  • Aditya

    Member
    May 12, 2020 at 5:45 pm in reply to: How do we mass update a field in Salesforce?

    Hi,
    There are several methods available for mass updating records in Salesforce records and mass edit field values via inline editing from within the list view.

  • Aditya

    Member
    May 11, 2020 at 4:35 pm in reply to: What is Time-Dependent Workflow in Salesforce?

    Hi,
    In Salesforce workflow actions are of two types. Immediate Action: Immediate actions execute, the moment when the criteria is met. Time-Dependent Action: Time-Dependent actions execute at a specific time defined by you, such as sending an Email alert after 24 hours of lead creation if the lead is not contacted

  • Aditya

    Member
    May 11, 2020 at 4:33 pm in reply to: When we can’t add Time-dependent action in Workflow rule?

    Hi,
    In the Time-Dependent Workflow Actions section, click Add Time Trigger. Note You can't add a time trigger if: The evaluation criteria is set to Evaluate the rule when a record is: created, and any time it's edited to subsequently meet criteria . The rule is activated.

  • Hi,
    Search Result and Web results
    Write Apex triggers to perform custom database actions.
    To execute a trigger before or after insert, update, delete, and undelete operations, specify size.
    The total number of records in a trigger invocation, both old and new. With your new trigger in place, you get an email every time you add one or more contacts!

  • Aditya

    Member
    May 11, 2020 at 4:29 pm in reply to: What are the differences between 15 and 18 digit record IDs?

    Hi,
    The two versions are used in different situations. 15 character ID is a case-sensitive version which is referenced in the Salesforce user interface. You can use this ID while performing data operations through the user interface. 18 character ID is the case-insensitive version which is referenced through the APIs.

  • Protection only applies to custom settings that are marked protected and While custom settings data is included in sandbox copies, it is treated as data for the of custom setting that provides a reusable set of static data that can be accessed . This method can be used with both list and hierarchy custom settings

Page 12 of 20