Anuj
IndividualForum Replies Created
-
Workbench is a web-based tool which helps administrators and developers to interact with Salesforce for Data Insert, Update, Upsert, Delete and Export. It also supports the Undelete Program, Deploy, Retrieve, Rest Explorer and Apex Execute actions too.
-
Anuj
MemberMay 22, 2020 at 2:57 pm in reply to: What is the use of lightning:checkboxGroup in Salesforce lightning?A lightning:checkboxGroup component represents a checkbox group that enables selection of single or multiple options. If the required attribute is set to true , at least one checkbox must be selected. When a user interacts with the checkbox group and doesn't make a selection, an error message is displayed.
-
Anuj
MemberMay 22, 2020 at 2:56 pm in reply to: Can we make a Lightning Component that shows up in both the mobileYes you can make a Salesforce Lightning Component that shows up in both the mobile and the desktop user interfaces with the help of Salesforce1 Mobile app, template-based communities, and custom standalone apps
-
Anuj
MemberMay 22, 2020 at 2:55 pm in reply to: Is there any limit on how many component to have in one Application?Per app/cmp there is a 10,000 inner component limit. This number is chosen and enforced by the framework.
-
Anuj
MemberMay 21, 2020 at 3:13 pm in reply to: Which interface we are supposed to implement so that a lightning componentImplements="Lightning Tab" interface is required to display component in a tab.
-
To work with scratch orgs, you must first enable the Developer Hub (Dev Hub) in your production or business org. You then use the Salesforce DX command-line interface (CLI) to create scratch orgs. You have two ways of managing your scratch orgs: using CLI commands or the Salesforce graphical interface.
-
Anuj
MemberMay 21, 2020 at 3:08 pm in reply to: How to create a visualforce page embaded with lightning components in SalesforceAdd the <apex:includeLightning /> component to your Visualforce page.
Reference a Lightning app that declares your component dependencies with $Lightning. use().
Write a function that creates the component on the Visualforce page with $Lightning. createComponent(). -
Anuj
MemberMay 20, 2020 at 4:23 pm in reply to: In how many ways can we share a record in Salesforce?There are 20 ways to share a record in salesforce.
-
Anuj
MemberMay 20, 2020 at 4:21 pm in reply to: What are the Best Practices of Creating Contact Sharing Rules in Salesforce?As a best practice, keep the number of ownership-based sharing rules to 100 per object, and keep the number of criteria-sharing rules to 50 per object. If multiple sharing rules give a user different levels of access to a record, the user gets the most permissive access level.
-
Anuj
MemberMay 20, 2020 at 4:16 pm in reply to: What is $Lightning.createComponent() in Salesforce?It is used to create a single component on click of button using javascript controller
-
A recall action occurs when a submitted approval request is recalled. By default, the record is unlocked. Record locking prevents users from editing a record, regardless of field-level security or sharing settings. By default, Salesforce locks records that are pending approval
-
you can query validation rules using Metadata API .
-
Anuj
MemberMay 19, 2020 at 2:36 pm in reply to: What is the use of lightning: tree component in Salesforce?A lightning:tree component displays the visualization of a structural hierarchy, such as a sitemap for a website or a role hierarchy in an organization. Items are displayed as hyperlinks and items in the hierarchy can be nested. Items with nested items are also known as branches
-
Anuj
MemberMay 18, 2020 at 2:33 pm in reply to: What is the difference between Person Account and Business Account in SalesforceUnlike business accounts, person accounts do not have a Contacts related list. However, you can use the Partners related list to track relationships between different person accounts.
-
Anuj
MemberMay 18, 2020 at 2:31 pm in reply to: What are the advantages of using CRM on mobile devices?5 Benefits of using a mobile CRM in Sales
1. More Sales. First and foremost, a mobile CRM will increase sales. ...
2. Improved Data Collection. The mobile CRM makes it faster to collect valuable information as well. ...
3. Better Productivity. ...
4. BYOD-Friendly. ...
5. Stronger Customer Service. -
custom validation rule are the one which are created manually under object.
-
Static resources allow you to upload content that you can reference in a Visualforce page. Resources can be archives (such as . zip and . jar files), images, stylesheets, JavaScript, and other files.
-
To change the responsible for an approval request you have to update the ActorId field on the ProcessInstanceWorkItem object with the Id of the user you want to be the actual approver.
e.g
ProcessInstanceWorkItem pi = [SELECT Id, ActorId FROM ProcessInstanceWorkItem LIMIT 1];
pi.ActorId = '0051I0000027LCVQA2';
update pi; -
Anuj
MemberMay 15, 2020 at 2:21 pm in reply to: What are the different workflow actions available in Salesforce?The four available actions that can be performed from a workflow rule (either immediately, or time-based) are field update, outbound message, email alert and task creation. A validation rule does fire immediately when a record save is attempted, but it is not associated directly with a workflow rule.
-
Anuj
MemberMay 14, 2020 at 1:19 pm in reply to: What is the use of Schedulable class in Salesforce?if you want your code or class execute at a specific time rather than instant execution , you have to use schedulable class.
-
Anuj
MemberMay 14, 2020 at 1:12 pm in reply to: Can we delete Apex Trigger or Apex class Using Metadata API in Salesforce ?Yes , we can delete Apex Trigger or Apex class from production only by using metadata API.
-
Validation Rules are metadata, so are not query-able using Apex / SOQL. You canuse the Metadata API to query for the ValidationRule element
-
Ask a System Administrator to open a Case with Salesforce Support.
Provide your Organization ID.
Include the business reason for the request. ...
State the exact limit being requested.
Include the period of time for which the limit should be raised. -
To roll out the new domain name to your org, from Setup, enter My Domain in the Quick Find box, select My Domain, and then select Deploy to Users. The domain is activated immediately, and your users are redirected to pages with the new domain.
-
Mocking a class means that you programmatically establish how is going to react, what is going to do and return. As an example, think on a Case record that needs an Account because the code that we want to test does validate against the related Account record