Anjali
IndividualForum Replies Created
-
Anjali
MemberAugust 21, 2020 at 7:40 am in reply to: How do I connect to an external database in Salesforce?Currently there's no inbuilt option to connect directly to your database with Salesforce. However, using an integration service (or web-service, REST API, etc.), you can connect or sync to an external database.
-
A data extension is a table that contains your data. Push any tracking data for emails sent to SFDE audiences using Marketing Cloud Salesforce Sends to the Salesforce Contact or Lead record in the connected org.
-
Anjali
MemberAugust 21, 2020 at 7:25 am in reply to: How do I create a data extension in Salesforce?Please refer the following link-
https://help.salesforce.com/articleView?id=mc_es_create_data_extension_classic.htm&type=5 -
External ID are used when we interacting with a external systems. It will act as unique identifier. We can define 3 external ID fields per object. These are the data types of fields.
- Number.
- Text.
- Email.
-
By Profiles we can hide a tab from a user.
Use “Tab Hidden” setting for Tab Hide. -
We have a attribute called action in the <apex:commnadbutton> tag in the VF page.
<apex:commandButton action=”{!save}” value=”Save” id=”theButton”/>. -
Anjali
MemberAugust 19, 2020 at 8:13 am in reply to: What are the data components in the Dashboards in Salesforce?The following are the Data Components in the Dashboards.
- Horizontal Bar Chart.
- Vertical bar Chart.
- Line Chart.
- Pie Chart.
- Donut Chart.
- Funnel Chart.
- Gauge Chart.
- Metric.
- Table.
-
Anjali
MemberAugust 19, 2020 at 8:01 am in reply to: How many records we can display in the particular report in Salesforce?Any number of records.
-
Anjali
MemberAugust 19, 2020 at 7:58 am in reply to: What is the MVC design pattern in Salesforce.com in Salesforce?Model View Controller (MVC) design pattern is the one of the most popular design pattern which contains three modules.
- Model.
- View.
- Controller.
- Model: What Schema and Data does salesforce uses to represent the system completely. In Salesforce, we can say that sObject are the model.
- Example: Sobjects, Apex Classes.
- View: How the Schema and data is represented. Visualforce is used to present the data to users.
- Example: Pages, Components.
- Controller: How the interface actions. Controllers are used to perform the actions whenever users interact with Visualforce.
- Example: Standard, Custom(Apex).
-
Anjali
MemberAugust 19, 2020 at 7:55 am in reply to: What is the best practice you are using while coding in Salesforce?- Bulkify your code: Bulkifying Apex code refers to the concept of making sure the code properly handles more than one record at a time. When we try to load the link of the records using the Data Loaders, then we make sure that code will satisfy.
- Avoid SOQL Queries inside For loops: When queries are placed inside a for loop, a query is executed on each interaction and the governor limit is easily reached. Instead move the SOQL query outside of the for loop and retrieve all the necessary data in a single query.
- Avoid Multiple Triggers on the Same Object: Write the Single Trigger on the each object and write the logic in the classes and call that classes in the triggers.
- use of the Limits Apex Methods to avoid Hitting Governor Limits.
- Avoid hardcoding IDs.
-
Anjali
MemberAugust 19, 2020 at 7:53 am in reply to: How many ways we can do deployment in Salesforce?There are three ways to do deployment.
- By using change Sets.
- By using Force.com IDE tool(Eclipse).
- By using Force.com Migration toolkit.
-
Anjali
MemberAugust 19, 2020 at 7:51 am in reply to: How to merge duplicates without going for third Party tools in Salesforce?Click on the Tab and go to Tools section, we can find the Merge option.
-
Anjali
MemberAugust 18, 2020 at 2:04 pm in reply to: When do we use SECURITY_ENFORCED in SOQl query and what is the need of using it?Use the WITH SECURITY_ENFORCED clause to enable field- and object-level security permissions checking for SOQL SELECT queries in Apex code, including subqueries and cross-object relationships.
-
Anjali
MemberAugust 11, 2020 at 1:41 pm in reply to: At profile level what are the permissions we must give for OWD’s does not workView All and Modify All permissions.
-
Anjali
MemberAugust 11, 2020 at 1:40 pm in reply to: What is the difference between Force.com and Salesforce.com in Salesforce?Force.com is the platform used to develop the applications in the salesforce. Salesforce.com is keyword used to search anything.
-
Anjali
MemberAugust 11, 2020 at 1:39 pm in reply to: create master-Detail relationships if records already exist on objectFirst we have to create the lookup relationship. Next update the existing records with some value in the lookup field. Now change the data type from lookup to master-detail.
-
Anjali
MemberAugust 11, 2020 at 1:37 pm in reply to: Can we change the data type from lookup relationship to master-detail.Yes, we can change the Lookup relationship to master-detail relationships.
-
The Order of execution gives the what are the events that Salesforce performs in order.
- Executes all before triggers.
- System validations are performed.
- Custom validations are performed.
- Saves the record but doesn’t commit.
- Executes the assignment rules.
- Executes the Workflow rules.
- Commit to th database.
-
Anjali
MemberAugust 11, 2020 at 1:32 pm in reply to: maximum size of the PDF generated on VisualforceThe maximum response size when creating a PDF must be below 15 MB, before being rendered as a PDF.
-
Anjali
MemberAugust 11, 2020 at 1:30 pm in reply to: What are the Operators we can do using Data Loader in Salesforce?- Insert.
- Update.
- Upsert.
- Delete.
- Export.
-
Anjali
MemberAugust 11, 2020 at 1:28 pm in reply to: What is the difference between the ISBLANK() and ISNULL () in Salesforce?Both determines if an expression has a value and returns TRUE if it does not. If it contains a value. this function returns FALSE.
- ISBLANK(expression) : The expression allows both number and text fields
- ISNULL(expression): Here the expression allows only number fields.
-
- <apex:actionFunction>: A component that provides support for invoking controller action methods from Javascript code using an Ajax request.
- An <apex:actionFunction> component must be child of an component.
- <apex:actionStatus>: This Component i s used for displaying different values depending on whether it’s in progress or completed.
- <apex:actionsupport>: A component that adds AJAX support to another component, allowing the component to be refreshed asynchronously by the server when a particular event occurs, such as a button click or mouseover.
- <apex:actionPoller>: This component specifies a timer that sends an Ajax update request to Force.com according to a time interval that we specify.
- <apex:actionFunction>: A component that provides support for invoking controller action methods from Javascript code using an Ajax request.
-
If you need a greater limit and you don't want to purchase extra user licenses or upgrade your Salesforce Edition, you can purchase extra API calls at Checkout or by contacting your account representative.
-
Anjali
MemberAugust 10, 2020 at 8:40 am in reply to: What happens when you build report after segmenting fields in Salesforce?The report shows the same dataset as before, but without the misleading fields.
-
Anjali
MemberAugust 10, 2020 at 8:38 am in reply to: When training the data for first model, we consider what in Salesforce Einstein?Starting with almost all the fields selected