chanchal kumar
IndividualForum Replies Created
-
hi madhulika,
YAML (Ain't Markup Language) is a human-readable data serialization language. It is commonly used for configuration files, but could be used in many applications where data is being stored or transmitted.
-
chanchal kumar
MemberJuly 19, 2018 at 3:27 pm in reply to: What is the difference between Formula fields and Roll Up Summary Fields in Salesforce?hii aanurag,
Rollup summary will work only in MASTER DETAIL relationship whereas Formula field will work in cross objects and individual objects
-
chanchal kumar
MemberJuly 18, 2018 at 3:42 pm in reply to: What is the use of setcallback() method in lightning components in Salesforce?hello shradha,
setcallback() method is used to call the method in server-side controller.
-
chanchal kumar
MemberJuly 18, 2018 at 3:36 pm in reply to: Is there a way to undo the changes in the domain name in Salesforce ?hello anurag,
you can't change domain name after setup, you can raise a case to salesforce, but it required a lot of time to process.
-
hello madhulika,
those methods which are used frequently in code, we make a utility class of them and we can reuse this method whenever we required it.
-
chanchal kumar
MemberJuly 17, 2018 at 12:29 pm in reply to: What is the use of 'param' in Salesforce REST API?hello Anurag,
"param" is used to pass values from visualforce page to APEX cotroller.
REST APIs have four types of parameters:
- Header parameters: Parameters included in the request header, usually related to authorization.
- Path parameters: Parameters within the path of the endpoint, before the query string (?). These are usually set off within curly braces.
- Query string parameters: Parameters in the query string of the endpoint, after the ?.
- Request body parameters: Parameters included in the request body. Usually submitted as JSON.
-
chanchal kumar
MemberJuly 17, 2018 at 12:04 pm in reply to: What is the purpose of custom domain in Salesforce?hello madhulika,
Creating a custom domain helps you better manage login and authentication for your org in several key ways. You can:
- Highlight your business identity with your unique domain URL
- Brand your login screen and customize right-frame content
- Block or redirect page requests that don’t use the new domain name
- Set custom login policy to determine how users are authenticated
- Let users log in using a social account, like Google and Facebook, from the login page
-
chanchal kumar
MemberJuly 17, 2018 at 11:52 am in reply to: In which situation we should avoid using Future method in Salesforce?hello shradha,
Salesforce provides different ways to run your code asynchronously like Batch apex, @future method.
there are some limitation of future method,
- You cant call a future method from another future method.
- You can call up to 50 @future methods per transaction.
- You can call up to 250000 future methods per 24 hours. This is in conjunction with all types of asynchronous methods like batch apex.
- @future methods are not executed during salesforce downtime and any already running jobs during the start of downtime are halted and restarted after the downtime.