Anuj
IndividualForum Replies Created
-
The canvas is the working area, where you build a flow by adding elements. As you add elements to the canvas and connect them together, you see a visual diagram of your flow. From the Elements tab, add new elements, like Screen and Create Records, to your flow.
-
Anuj
MemberJuly 10, 2020 at 2:22 pm in reply to: What can you change in a formula column in Salesforce?Please follow the below link:
https://help.salesforce.com/articleView?id=building_custom_summary_formulas_edit.htm&type=5 -
Anuj
MemberJuly 10, 2020 at 2:19 pm in reply to: How does flow help us to automate our business process in Salesforce?Lightning Flow provides declarative process automation for every Salesforce app, experience, and portal with two point-and-click automation tools: Process Builder and Flow Builder. Workflow lets you automate standard internal procedures and processes to save time across your org.
-
Anuj
MemberJuly 10, 2020 at 2:17 pm in reply to: Can we call batch class from process builder in Salesforce?You can call a batch class from a trigger or the Process Builder, but the trigger will do so more efficiently. Either way, the point of calling the batch class is to query more than 50,000 records and updating them asynchronously.
-
Anuj
MemberJuly 9, 2020 at 2:12 pm in reply to: What are the benefits of the Lightning Component framework in Salesforce?The benefit of a lightning component framework is that there are more pre-built components to replicate the salesforce look and feel. This is a concept in salesforce development which comes under software development. Software development is a practice that is used to develop new software.
-
Set<String> encounteredNames = new Set<String>();
Set<String> duplicateNames = new Set<String>();
for(String cd1 : listName) {
if(encounteredNames.contains(cd1.Name)){
duplicateNames.add(cd1.Name);
}else{
encounteredNames.add(cd1.Name);
}
}
List<String> newlistName = new List<String>(encounteredNames); -
Anuj
MemberJuly 9, 2020 at 1:55 pm in reply to: What is difference between external ID and unique ID?What is the difference between External ID and Unique ID? This is a field that usually references an ID from another (external) system. ... Additionally, if you have an external ID field, the field becomes searchable in the sidebar search. You also can use the upsert API call with the external ID to refer to records.
-
Anuj
MemberJuly 8, 2020 at 12:51 pm in reply to: What are context variables in triggers in Salesforce?Context variables are the variables which can have different values in different environments. You can create a context group which can hold multiple context variables. ... Its means by using context variables, you can move the code in development, test or production environments, it will run in all the environments.
-
Anuj
MemberJuly 8, 2020 at 12:50 pm in reply to: Exception: System.JSONException: Illegal value for primitive in Salesforce?Adding a class for goals will resolve your immediate issue.
Replacing number with number_Z in the JSON string to deserialize Properly, if you need the number property to be available -
Anuj
MemberJuly 8, 2020 at 12:49 pm in reply to: How is Trigger.New Different from Trigger.newMap in Salesforce?trigger. new is simply a list of the records being processed by the trigger, so if all you need to do is loop through them then you can use that. trigger. newMap just allows you to target specific records by Id should you not need to process everything, or if you need to map other records back to these.
-
Anuj
MemberJuly 7, 2020 at 11:14 am in reply to: Why Are Properties Helpful In Controllers in Salesforce? -
Record a Compliance Categorization Related to a Field's Data
Use the compliance categorization metadata field 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. -
Tooling API exposes metadata used in developer tooling that you can access through REST or SOAP. For detailed descriptions of Tooling API objects and the REST resources and SOAP calls that each object supports, see Tooling API Objects. Use Tooling API when you need fine-grained access to an org's metadata.
-
-
Anuj
MemberJuly 6, 2020 at 4:15 pm in reply to: How to fire an event from JS controller in Salesforce?Follow the given link below:
https://www.mstsolutions.com/technical/salesforce-lightning-events/ -
Anuj
MemberJuly 6, 2020 at 4:13 pm in reply to: How to execute Apex from the Custom button or Javascript?Please follow the below link:
https://blog.webnersolutions.com/salesforce-call-apex-class-on-click-of-custom-button/ -
Anuj
MemberJuly 2, 2020 at 2:53 pm in reply to: What is the benefits of Disable cache memory in Salesforce?Disable the secure and persistent browser caching setting during development in a sandbox or Developer Edition org to see the effect of any code changes without needing to empty the cache. The caching setting improves page reload performance by avoiding extra round trips to the server.
-
Please follow the below link:
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_analytics_run_reports.htm -
Anuj
MemberJuly 2, 2020 at 2:11 pm in reply to: What is the use of WebServiceCallout class in Salesforce?WebServiceCallout Class. Enables making callouts to SOAP operations on an external Web service. This class is used in the Apex stub class that is auto-generated from a WSDL.
-
ISBLANK () function is used to check if the field has a value or not. If you use ISBLANK () function with a numeric field, the function only returns TRUE if the field has no value.
-
Email Services in Salesforce (Email to Object) Email services are automated processes that use Apex classes to process the contents, headers, and attachments of inbound emails. For example, you can create an email service that automatically creates contact records based on contact information in messages.
-
The @isTest(SeeAllData=true) annotation is used to open up data access when applied at the class or method level.
-
Anuj
MemberJune 30, 2020 at 2:10 pm in reply to: What is the need of grant login access in Salesforce?Why would Salesforce Support need access to my Organization? Salesforce Support may ask you to Grant Login Access in order to assist you with a question, issue, or request. This is so that Support can log in to the application using your login to troubleshoot and fix issues stemming from your inquiry.
-
Anuj
MemberJune 30, 2020 at 2:08 pm in reply to: What does quip action do in Process builder in Salesforce?Quip Actions in Process Builder. Create Quip documents, chat rooms, and folders when important events occur. ... Add new slides to a deck, copy documents, add members to a Quip document or chat, lock document edits, and more.
-
Click on the logged in user's avatar in the top right-hand side of the screen and choose Settings. Click on Grant Account Login Access. Use the Access Duration picklist to set the number of days to allow Login Access. Click Save.