Deepak
IndividualForum Replies Created
-
Deepak
MemberMay 20, 2020 at 9:48 am in reply to: What are the limitations of time dependent workflow?- Workflow rule is active.
- Workflow rule is deactivated but has pending actions in the queue.
- Workflow rule evaluation criteria is set to Evaluate the rule when a record is: created, and every time it's edited.
- Workflow rule is included in a package.
-
Extract, Transform, Load (ETL) tools integrates data from different applications, such as assimilating data from payroll, purchase and sales applications to a cost accounting system. ETL apps make it possible to export data, make modifications to it, and then bring it back into Salesforce.
-
Talend Open Studio for Data Integration is an open source ETL tool that integrates Salesforce data with your existing data warehouse and synchronizes data between systems.
-
A lookup relationship essentially links two objects together so that you can “look up” one object from the related items on another object.
Lookup relationships can be one-to-one or one-to-many. The Account to Contact relationship is one-to-many because a single account can have many related contacts. -
Deepak
MemberMay 19, 2020 at 6:15 am in reply to: How to resolve System.LimitException: Too many query rows: 50001 in Salesforce?When you load the data make sure that batch size is not more than 80 or 90, since you can have only 100 soql queries(maximum per batch).
-
Deepak
MemberMay 19, 2020 at 6:07 am in reply to: How lightning Experience is set as default for an user in Salesforce?Steps you need to follow:
- From Setup in Salesforce Classic, click Get Started in the Lightning Experience Transition Assistant tile at the top of the menu.
- Select the Roll Out phase.
- Click Launch Lightning Experience to expand the stage.
- Click Switch Users next to Make Lightning Experience the default interface.
-
- Any customization created in the app includes metadata changes.This API lets you make metadata change directly from Apex.
- Suppose you support multiple orgs, & created a custom field.You can use this API to add new fields to the page layouts in all your orgs.
-
Deepak
MemberMay 18, 2020 at 5:13 am in reply to: What is the use of @InvocableMethod Annotation in Salesforce ?@Invocable Method annotation used to identify methods that can be run as invocable actions. Invocable methods are called with the REST API and used to invoke a single Apex method. Invocable methods have dynamic input and output values and support describe calls.
-
Deepak
MemberMay 18, 2020 at 5:12 am in reply to: What is the use of @InvocableVariable Annotation in Salesforce ?The InvocableVariable annotation identifies a class variable used as an input or output parameter for an InvocableMethod method's invocable action. The use of InvocableVariable annotation to identify variables used by invocable methods in custom classes.
-
From Setup, enter Classic Letterheads in the Quick Find box, then select Classic Letterheads.
- Click Next if an introductory page appears.
- Click New Letterhead.
- To view a letterhead, select the name from the list.
- To edit a letterhead, click the name from the list and choose one of the edit options: Edit Properties or Edit Letterhead.
- To delete a letterhead, click Del next to the name. You cannot delete a letterhead that is used in any HTML email templates.
-
Deepak
MemberMay 15, 2020 at 4:46 pm in reply to: how to Post a snapshot of your dashboard component to the dashboard Chatter feedIn Salesforce Classic,
Choose where you want your snapshot to appear.- To show it in a dashboard, click Post Snapshot to Dashboard Feed.
- To show it to a user or group, click Post Snapshot to User or Group Feed.
-
Deepak
MemberMay 15, 2020 at 4:38 pm in reply to: How to delete the whole records of the Acoounts from Salesforce?From Setup,
- Enter Mass Delete Records in the Quick Find box,
- Select Mass Delete Records and click the link for the type of record to delete.
- Review the information that is deleted with the records.
- Specify conditions that the selected items must match, for example, “State equals Ghaziabad.”
-
A mypkg folder that contains the custom objects used in the examples. A removecodepkg folder that contains XML files for removing the examples from your organization. properties file that you must edit, specifying your credentials, in order to run the sample ant tasks in build.
-
It renders an HTML table element in which each component found in the body of the <apex:panelGrid> is placed into a corresponding cell in the first row until the number of columns is reached. At that point, the next component wraps to the next row and is placed in the first cell.
-
Deepak
MemberMay 14, 2020 at 6:02 am in reply to: What is the ProcessWorkitemRequest in Salesforce?We use the ProcessWorkitemRequest class for processing an approval request after it is submitted.
-
- Open Experience Workspaces or Community Management.
- Click Administration | Settings.
- Edit your community settings as needed. Select. next to the community you want to change, and make your changes. You can change your URL from this page.
Be sure to inform your community members before changing the name or URL.
-
- From Setup, enter Domains in the Quick Find box, then select Domains.
- Next to the domain name, click Del.
- Click OK.
-
The size limit for an email is 25 MB, and per file attachment limit of 5 MB.
-
It is Optional. We call it as a email subject line. If you are using an email template, the subject line of the template overrides this value.
-
It is HTML version of the email, specified by the sender. The value is encoded according to the specification associated with the organization. Specify a value for setTemplateId, setHtmlBody, or setPlainTextBody.
-
Deepak
MemberMay 12, 2020 at 5:39 am in reply to: What is URL.getSalesforceBaseUrl() in Salesforce?It basically returns the URL of the Salesforce instance.
-
A Salesforce App is a group of Tabs that makes it easy for users to access a set of related features in the full Salesforce.com browsing app. The concept of App is a way to organize Tabs is not used in the Salesforce Mobile App.
-
Workflows is one of the most powerful native tools available in Salesforce.Workflow is business logic that evaluates records as they are created and updated and determines if an automated action needs to occur. In a way it allows records to speak up or do something – update data, notify people or external systems.
-
Master-Detail relationship is like parent-child relationship where, master represents a parent and detail represents a child in which master object controls some behaviors of the detail object. Like whenever a Master object record is deleted then the detail object related to it also gets deleted.
-
A unit test should:
- Set up all conditions for testing.
- Call the method (or Trigger) being tested.
- Verify that the results are correct.
- Clean up modified records.