MOHIT
IndividualForum Replies Created
-
There are two types of Triggers in Salesforce.
- Bulk Triggers.
- Recursive Triggers.
-
MOHIT
MemberAugust 11, 2020 at 12:29 pm in reply to: Can we have duplicate in the External ID in salesforce?No.
-
MOHIT
MemberAugust 11, 2020 at 12:27 pm in reply to: How can we implement a scheduler in Force.com in Salesforce?In Force.com we have a concept of scheduling the apex. We can write a block of code which can be scheduled at particular point of time in a week.
-
- Yes, we can put list in the Map. Please find the code below.
Map<Id, List<Opportunity>> MapList=New Map<Id, List<Opportunity>>();
-
MOHIT
MemberAugust 11, 2020 at 12:24 pm in reply to: Difference between giving with sharing and without sharing.The class with sharing means we are enabling the access to the profiles. The class without sharing means we are disabling the access to the profiles.
-
An app is a collection of items that work together to serve a particular function. Salesforce apps come in two flavors: Classic and Lightning. Lightning apps are created and managed in Lightning Experience.
-
Organization-Wide Defaults, or OWDs, are the baseline security you for your Salesforce instance. Organizational Wide Defaults are used to restrict access. You grant access through other means we will talk about later (sharing rules, Role Hierarchy, Sales Teams and Account teams, manual sharing, etc).
-
MOHIT
MemberAugust 10, 2020 at 8:20 am in reply to: Which data types for field creation are available in Salesforce custom settings?Custom settings and external objects allow only a subset of the available data types. You can't add a multi-select picklist, rich text area, or dependent picklist custom field to opportunity splits.
-
MOHIT
MemberAugust 7, 2020 at 1:21 pm in reply to: If we reparent in the object will the parent update in Salesforce?Yes, the parent will update the object. Reparenting means when we change reference of parent record from child record.
-
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.
-
MOHIT
MemberAugust 7, 2020 at 1:17 pm in reply to: What issues can one face while working with joined reports in Salesforce?One can face issue of exporting reports while working with joined reports.
-
MOHIT
MemberAugust 5, 2020 at 10:54 am in reply to: How to compare two strings in Apex in Salesforce?String comparisonequals() method should be used for content comparison instead. Unlike Java, the == operator in Apex compares object value equality and not reference equality. The exception is user-defined types. Thus, for sObjects and sObjects arrays comparison the == operator should be used.
-
This means that Apex enables casting , that is, a data type of one class can be assigned to a data type of another class, but only if one class is a subclass of the other class. Use casting when you want to convert an object from one data type to another.
-
MOHIT
MemberAugust 5, 2020 at 10:45 am in reply to: What is the difference between ISBLANK() and ISNULL() in Apex in Salesforce?ISBLANK determines if an expression has a value then returns TRUE if it does not. ISNULL determines if an expression is null (blank) then returns TRUE if it is. If the expression contains a value, then this function returns FALSE.
-
MOHIT
MemberJuly 31, 2020 at 10:44 am in reply to: How to add javascript remoting to a Visualforce page in Salesforce?syntax-
[namespace.] controller.method ( [parameters ...] Call back Function, [configuration] ); -
MOHIT
MemberJuly 31, 2020 at 10:43 am in reply to: What is meant by apex managed sharing in Salesforce?Apex Managed Sharing provides developers with the ability to support an application to share requirements.
This type of sharing is available only with users to modify all data permissions. Only these users can add/change apex managed sharing.
Apex Managed Sharing uses a Sharing reason (Apex Sharing Reason) -
MOHIT
MemberJuly 31, 2020 at 10:42 am in reply to: What are the different ways to call the Apex class in Salesforce?From another class
From developer console
From JavaScript links
From home page components
By using trigger
From VisualForce page -
MOHIT
MemberJuly 30, 2020 at 12:53 pm in reply to: How to manage comma fields while uploading using Data Loader in Salesforce?Data Loader cannot handle commas implicitly because there is no logical path to follow. If we have any comma field in the Data Loader CSV file for import of the field content, we have to close the content with double quotation marks “content “. Then data Loader will be able to handle this operation.
-
MOHIT
MemberJuly 30, 2020 at 12:53 pm in reply to: What are the actions that can be done using Data Loader in Salesforce?Using Data loaders we can perform 6 type of action.They are
- Insert – insertion of new records
- Update – Updating existed records.
- Upsert – Update and Insertion of records
- Delete – Deletion of records.
- Export – Extraction of all records.
- Export All – It extracts all records from salesforce including Recycle Bin records.
-
We need to check the “development mode” check box at the user level to enable visualforce editor.
To enable this, go to user details page check the development mode check box. -
Remote site settings is used to authorize the endpoint and allow us to whom integrate(end user)
-
MOHIT
MemberJuly 29, 2020 at 10:02 am in reply to: What are the limitations of wsdl file in Salesforce?File must be in .WSDL extenstion.Multiple port types and binding will not allowedImport and Inheritance operations are not supported.
-
MOHIT
MemberJuly 29, 2020 at 10:01 am in reply to: How many ways are there of XML parsing in apex in Salesforce?They are two ways of XML parsing1. XML streams2. XML DOM
-
MOHIT
MemberJuly 28, 2020 at 10:29 am in reply to: Which Tag Is Used With Both Radio Buttons And Picklists To Create The Selectable<Apex:selectoption> tag
-
MOHIT
MemberJuly 28, 2020 at 10:27 am in reply to: What Is The Main Difference Between Using Datatable Vs. Pageblocktable TagsPageBlock: For default salesforce standard format.
dataTable:To design customformats