Aditya
IndividualForum Replies Created
-
Aditya
MemberMay 22, 2020 at 7:02 pm in reply to: Is there any limit on how many component to have in one Application?only 10000
-
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 -
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 -
Aditya
MemberMay 20, 2020 at 3:40 pm in reply to: When should we use Component event and application events in Salesforce?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 -
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
MemberMay 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. -
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
MemberMay 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
MemberMay 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 -
Aditya
MemberMay 18, 2020 at 5:46 pm in reply to: What is Maximum rows returned in SOSL query results in Salesforce?Hi,
The maximum number of rows that are returned in the text query, up to 2,000 results. -
Aditya
MemberMay 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
MemberMay 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
MemberMay 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;
}
} -
Aditya
MemberMay 15, 2020 at 3:37 pm in reply to: What is the meaning of TEXT(NOW() in formula field in Salesforce?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. -
Lightning includes the Lightning Component Framework and some exciting tools for developers. Lightning makes it easier to build responsive applications for any device.
-
Aditya
MemberMay 13, 2020 at 5:47 pm in reply to: Does It make any difference to declaring a test method as public or privateYES, It makes difference.
-
The Hammer means taking every single Apex test that you or anyone else has created and running it twice.
-
Salesforce Standard fields are fields which are predefined by 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. -
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. -
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
MemberMay 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. -
Aditya
MemberMay 11, 2020 at 4:31 pm in reply to: What's the most extreme bunch size in a solitary trigger execution ?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
MemberMay 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. -
Aditya
MemberMay 11, 2020 at 4:28 pm in reply to: Provide a case of when a Custom Setting would be utilised during advancement .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