
Ashutosh
Individual-
Ashutosh replied to the discussion What is the use of force:recordData in Salesforce lightning component? in the forum Salesforce® Discussions 5 years ago
Reply to What is the use of force:recordData in Salesforce lightning component?
A force:recordData component defines the parameters for accessing, modifying, or creating a record using Lightning Data Service. You have granular control on how you want to display or render the data in your custom component.
We recommend that you use the simpler lightning:recordForm component for accessing, modifying, or creating a record… Read more
-
Ashutosh replied to the discussion what is the use of lightning:formattedText in Salesforce lightning component? in the forum Salesforce® Discussions 5 years ago
Reply to what is the use of lightning:formattedText in Salesforce lightning component?
A lightning:formattedText component displays a read-only representation of text, wrapping URLs and email addresses in anchor tags (also known as "linkify"). It also converts the r or n characters into <br /> tags.
To display URLs and email addresses in a block of text in anchor tags, set linkify="true". If not set, URLs and email… Read more
-
Ashutosh replied to the discussion What is the Limit of no of callouts in Apex class and Apex Batch? in the forum Salesforce® Discussions 5 years ago
Reply to What is the Limit of no of callouts in Apex class and Apex Batch?
These are the governor Limits you need to keep in mind when dealing with Batch Apex
1.Up to five queued or active batch jobs are allowed for Apex.
2.Using Database.QueryLocator batch apex returns 50 million records if more than 50 million records are returned.
3.The batch apex Database.execute method can have batches of a maximum number of… Read more -
Ashutosh replied to the discussion Is it possible to remove the legend on a chart in Salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to Is it possible to remove the legend on a chart in Salesforce?
This is not possible in standard salesforce chart and dashboard . But if you creating custom chart using some external library (for ex chart js) then it is possible
-
Ashutosh replied to the discussion How can we store Multiple values selection of Multi-select Picklist in formula Field in salesforce? in the forum Salesforce® Discussions 5 years ago
you could try something like this:
IF(INCLUDES( Multi_Picklist_1__c , "A"), "A", NULL) + BR() +
IF(INCLUDES( Multi_Picklist_1__c , "B"), "B", NULL) + BR() +
IF(INCLUDES( Multi_Picklist_1__c , "C"), "C", NULL) -
Ashutosh replied to the discussion Explain Salesforce Apex Email Service? in the forum Salesforce® Discussions 5 years ago
Reply to Explain Salesforce Apex Email Service?
You can use email services to process the contents, headers, and attachments of inbound email. For example, you can create an email service that automatically creates contact records based on contact information in messages.
Note
Visualforce email templates cannot be used for mass email.
You can associate each email service with one or… Read more -
Ashutosh replied to the discussion How to schedule the Schedule Apex ?Wer it will store??? in the forum Salesforce® Discussions 5 years ago
Reply to How to schedule the Schedule Apex ?Wer it will store???
you can schedule the schedule apex by
RemindOpptyOwners reminder = new RemindOpptyOwners();
// Seconds Minutes Hours Day_of_month Month Day_of_week optional_year
String sch = '20 30 8 10 2 ?';
String jobID = System.schedule('Remind Opp Owners', sch, reminder);Or You can schedule it directly by clicking on schedule apex
-
Ashutosh replied to the discussion How to call batch from Trigger?is that possible in the forum Salesforce® Discussions 5 years ago
Reply to How to call batch from Trigger?is that possible
Yes you can call batch form trigger
testbatchclass b = New testbatchclass();
Database.executeBatch(b);
-
Ashutosh replied to the discussion What is the difference between empty and null in Salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to What is the difference between empty and null in Salesforce?
ISBLANK() should be used instead of the legacy ISNULL(). The biggest difference having to do with text fields.
Use ISBLANK instead of ISNULL in new formulas. ISBLANK has the same functionality as ISNULL, but also supports text fields. Salesforce will continue to support ISNULL, so you do not need to change any existing formulas.
This is… Read more -
Ashutosh replied to the discussion What is the use of Escalation Rules in Salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to What is the use of Escalation Rules in Salesforce?
Escalation rules are used to escalate cases automatically when they meet the criteria which are defined in rule . We can create rule entries where criteria is defined to escalate a case.
Whenever an escalation rule is applied for a case,If the case matches with the criteria
then the further escalation action is carried out.You can… Read more
-
Ashutosh replied to the discussion What is Email services heap size in salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to What is Email services heap size in salesforce?
Hi,
Email services heap size is 36 MB
-
Ashutosh replied to the discussion What is Blob in Apex in salesforce ? in the forum Salesforce® Discussions 5 years ago
Reply to What is Blob in Apex in salesforce ?
Hi,
The Blob is a collection of Binary data which is stored as object. This will be used when we want to store the attachment in salesforce into a variable. This data type converts the attachments into a single object. If the blob is to be converted into a string, then we can make use of the toString and the valueOf methods for the… Read more
-
Ashutosh changed their photo 5 years ago
-
Ashutosh became a registered member 5 years ago