Ayush
IndividualForum Replies Created
-
-
Ayush
MemberJuly 31, 2020 at 10:50 am in reply to: Can we implement multilevel approval process in salesforce?yes, we can .
-
Ayush
MemberJuly 29, 2020 at 12:58 pm in reply to: Can we insert using REST Resource in Salesforce?yes, you can update and insert.
-
Ayush
MemberJuly 29, 2020 at 12:53 pm in reply to: Why Content-Type header is used in RestAPI Callouts in Salesforce?The request Content-Type header is set to let the service know that the sent data is in JSON format so that it can process the data appropriately.
-
Ayush
MemberJuly 28, 2020 at 8:47 am in reply to: How we can get the value of input using aura:id in Salesforce?component.find();
-
Ayush
MemberJuly 28, 2020 at 8:31 am in reply to: What Is the use of Platform Event in Salesforce ?Platform Events are used to deliver secure, scalable, and customizable notification within Salesforce or external app.
-
Ayush
MemberJuly 24, 2020 at 8:46 am in reply to: What is the maximum size of the PDF generated though vf page?15 mb.
-
Ayush
MemberJuly 23, 2020 at 11:35 am in reply to: How many levels of child records can be returned in a single SOQL query<div id="answer_501246"><div>It should be 1. We can go 1 level down or 5 level up. From parent to Child 1 level and from child to parent5 levels
<div>
</div></div></div> -
Ayush
MemberJuly 23, 2020 at 11:31 am in reply to: Which two components are available to deploy using the Metadata API?1. Lead conversion setting
2.Case Settings -
Ayush
MemberJuly 23, 2020 at 11:24 am in reply to: What are the Limits of Data Loader in Salesforce ?loads up to 5 million records.
-
The<b id="ext-gen37"> virtual definition modifier declares that this class allows extension and overrides. You cannot override a method with the override keyword unless the class has been defined as virtual.
-
Ayush
MemberJuly 21, 2020 at 10:30 am in reply to: What is difference between virtual class and abstract class?The virtual definition modifier declares that this class allows extension and overrides. You cannot override a method with the override keyword unless the class has been defined as virtual.The abstract definition modifier declares that this class contains abstract methods, that is, methods that only have their signature declared and no body defined.
-
framework which is used to load, save, create and delete a record without server-side apex code.
-
Ayush
MemberJuly 17, 2020 at 12:15 pm in reply to: What is the max length of Alias to create an User in Salesforce?<ul id="topic-80286-replies">
- <div id="post-80312" data-date="July 2020"><div>The maximum length is of 8 character.
</div></div>
- <div id="post-80312" data-date="July 2020"><div>The maximum length is of 8 character.
-
Ayush
MemberJuly 17, 2020 at 12:12 pm in reply to: Is It Always Necessary To Know Apex To Create Visualforce Pages?No,it is not always necessary
-
Ayush
MemberJuly 9, 2020 at 1:27 pm in reply to: What is a external ID in Salesforce and give me example?It can help you :// https://www.biswajeetsamal.com/blog/external-id-in-salesforce/
-
Deserializes the specified JSON string into an Apex object of the specified type.
-
-
It can help you :-https://www.forcetalks.com/salesforce-topic/custom-metadata-types-in-salesforce/
-
Ayush
MemberJuly 6, 2020 at 1:29 pm in reply to: How can we prevent from the recursive trigger in Salesforce?Read this blog to know more:https://www.sfdcpoint.com/salesforce/avoid-recursive-trigger-salesforce/
-
Platform events enable developers to deliver secure, scalable, and customizable event notifications within the Salesforce platform or from external sources.
-
Ayush
MemberJuly 2, 2020 at 12:14 pm in reply to: What is the use of with security_enforced clause in SOQL queries?you can use this to enable checking for field- and object-level security permissions on SOQL SELECT queries and cross-object relationships
-
Ayush
MemberJuly 1, 2020 at 1:20 pm in reply to: What is the purpose of system.runAs() in Salesforce?Normally, all Apex codes run in System mode, and therefore the current user’s various permissions and record sharing rules are not taken into consideration. The system method, System.runAs(),lets us write test methods that change user contexts to either an existing user or a new user. All of that user’s record sharing is then enforced. You can only use runAs in a test method. But runAs() does not validate CRUD or Field Level Security permissions.