Ratnesh
IndividualForum Replies Created
-
Ratnesh
MemberApril 28, 2020 at 6:37 AM in reply to: What is code snippet in Salesforce marketing cloud?Use code snippets in Marketing Cloud Content Builder to save reusable bits of HTML, AMPscript, and Guide Template Language. Insert snippets when editing HTML via the Code Snippets toolbar selector, or by typing the Customer Key value for the snippet followed by the Tab key.
-
Apex provides a testing framework that allows you to write unit tests, run your tests, check test results, and have code coverage results. Let's talk about unit tests, data visibility for tests, and the tools that are available on the Lightning platform for testing Apex.
-
Ratnesh
MemberApril 28, 2020 at 6:34 AM in reply to: What is Data flow in merge mapping in salesforce?Utilize the Data Mapping tool to capture data from signed forms and push it back to your Salesforce records. Users commonly map contact information such as name, email address, phone number, and mailing address.
-
Ratnesh
MemberApril 27, 2020 at 6:58 AM in reply to: What is the use of lightning layoutItem tag in Salesforce?The lightning:layout is a container type of component that contains lighting:layoutItem components. Together, the two components make up the grid system used to arrange and display the various elements within them. The grid system divides the lightning:layout into 12 equal columns
-
Ratnesh
MemberApril 27, 2020 at 6:57 AM in reply to: How to modify prices in Price Books in Salesforce?Select a product.
On the product detail page, click Edit from the Price Books related list next to the custom price book that will contain the list price. ...
Enter the list price. ...
Select Active to make this price available to products on opportunities or quotes.
Save your changes. -
Ratnesh
MemberApril 27, 2020 at 6:56 AM in reply to: How to make a price book unavailable to sales reps in Salesforce?Navigate to Sharing Settings: In Classic: Setup | Administration Setup | Security Controls | Sharing Settings. ...
Edit the Organization Wide Defaults.
Change the default for Price Books to 'No Access' or 'View Only'.
Click 'Save'. -
A Binary Large OBject (BLOB) is a collection of binary data stored as a single entity in a database management system. Blobs are typically images, audio or other multimedia objects, though sometimes binary executable code is stored as a blob.
-
1. Immediate Workflow rule
2. Time-Dependent Workflow rule -
An external lookup relationship is another new field type introduced with Salesforce Connect. This type links an object to an external object. You link Order Details to Orders based on the Order ID field in both objects, resulting in a new related list on the Orders page.
-
Streaming API is your radar. It lets you define events and push notifications to your client app when the events occur. Also, Streaming API lets you process business logic in an external system in response to data changes in Salesforce.
-
An auth provider lets users log in to your Salesforce org from an external service provider, such as Facebook, Google, or GitHub.
-
Create the Connected App
-From Setup, enter App Manager in the Quick Find box, then select App Manager.
-Click New Connected App.
-Enter the connected app name and your email address: ...
-Select Enable OAuth Settings.
-Select Use digital signatures.
-To upload your server. ...
-For OAuth scopes, add: ...
-Click Save. -
Tableau Software
Pardot
Heroku
MuleSoft
Datorama Inc. -
You define the criteria as a SOQL query in the PushTopic and specify the record operations to notify on (create, update, delete, and undelete).
-
The Salesforce IoT Cloud is a platform for storing and processing IoT data. The IoT cloud adds to Salesforce by expanding its reach, and the depth of its analytics.
-
Ratnesh
MemberApril 22, 2020 at 3:32 AM in reply to: In Native and Non- native Salesforce app which one is better?Native Salesforce apps are those apps that are developed on the Force.com development platform without any external server or code. In other words, it means that the data occurs in the Salesforce app from a customer’s Salesforce instance and not from any third-party app integration.
Non-native Salesforce apps are those apps that live outside of the Salesforce platform. They come with a few challenges, one of them being that the data is not entirely secure. The reason is that the data in the non-native apps are transferred to a third-party app server, which is not secure like Salesforce. -
Salesforce Connect is a framework that enables you to view, search, and modify data that's stored outside your Salesforce org. For example, perhaps you have data that's stored on-premises in an enterprise resource planning (ERP) system.
-
Ratnesh
MemberApril 22, 2020 at 3:30 AM in reply to: What is the difference between record types and page layout in Salesforce?Page Layouts control the layout and organization of buttons, fields, s-controls, Visualforce, custom links, and related lists on object record pages. Record Types let you offer different business processes, picklist values, and page layouts to different users.
-
Ratnesh
MemberApril 20, 2020 at 1:17 PM in reply to: What is LayoutColumn in metadata in Salesforce?LayoutColumn objects which contain Metadata.LayoutItem objects. The Layout Items. The items are the individual fields and other objects.
-
Ratnesh
MemberApril 20, 2020 at 1:15 PM in reply to: What is difference between lightning app and connected app in Salesforce?Lightning App - Are the collection of Tabs(Objects, Lightning Components) that works together to achieve our functionality. For Example - Service, Sales, Service Console, and etc. And one more thing these apps will not be available into Salesforce Classic.
Connected Apps: - Connected Apps are used to Authenticate our salesforce while consuming Salesforce API (no matter SOAP or REST) then we go for Connected Apps which provides Client Secret and Client Key that we use in the request. These two keys are responsible to know which salesforce org we are going to take access. -
Ratnesh
MemberApril 20, 2020 at 1:11 PM in reply to: What does error System.ListException: List index out of bounds: 0 in Salesforce?ListException: List index out of bounds: 0' error occurs and how to resolve it. If we attempt to access an element at row 0, The code will throw an error if no data exist at row 0. It is a good practice to check whether there are records in the list before accessing any element from that list.
-
Ratnesh
MemberApril 17, 2020 at 7:07 AM in reply to: What is a bucket field in Reports in Salesforce?Bucket field in Salesforce Reports is an incredible powerful functionality used to quickly categorize values for a field in a report without the need to have a custom formula field at the object level.
-
“Data skew” is a condition which you will encounter when working for a big client where there are over 10,000 records. When one single user owns that many records we call that condition 'ownership data skew'.
-
A skinny table is a custom table in the Force.com platform that contains a subset of fields from a standard or custom base Salesforce object. Force.com can have multiple skinny tables if needed and maintains them and keeps them completely transparent to you.
-
The lightning framework is based on an event-driven architecture which allows communicating between different events.