Ratnesh
IndividualForum Replies Created
-
Ratnesh
MemberApril 11, 2020 at 2:13 pm in reply to: What is Signature Index in Adobe Sign of Salesforce?This number tells you where in the signature cycle this Recipient resides. 1 is the first signer, 2 is the second signer etc.
-
Ratnesh
MemberApril 11, 2020 at 2:11 pm in reply to: how to add file to send for signature in Salesforce Adobe sign?-Open a Record on the Object you want to add the button to and click Edit Layout.
-Select 'Mobile & Lightning Actions' from the list.
-Drag the button from 'Mobile & Lightning Actions' and add it to 'Salesforce Mobile and Lightning Experience Actions' and save. -
Use change sets to send customizations from one Salesforce org to another.
-
Ratnesh
MemberApril 3, 2020 at 11:50 am in reply to: What is validSoFar in Salesforce lightning Components?It takes a function as input and applies that on the array and returns the output.
-
Ratnesh
MemberApril 3, 2020 at 11:46 am in reply to: What is the use of renderIf in Lightning Component in Salesforce?This component lets you conditionally render its contents. It renders its body only if isTrue evaluates to true. The else attribute allows you to render an alternative when isTrue evaluates to false.
-
The Math.ceil() function always rounds a number up to the next largest.
-
splice() is a Javascript method which adds/removes items to/from an array, and returns the removed item
-
Ratnesh
MemberMarch 26, 2020 at 1:25 pm in reply to: What is KeyField in Lightning Data Table in Salesforce?The key field attribute is required to hold a unique row id. It associates each row with a unique identifier. You should always define keyField=”Id” which means row id will be same as record id and it will make easier to update, view and edit records
-
A package is a container for components, like a Java JAR file or a Ruby GEM, that you use to distribute your app to customers. It contains a set of metadata with a unique namespace. A package can contain something as small as an individual component or as large as a set of related apps.
-
Ratnesh
MemberMarch 23, 2020 at 4:53 pm in reply to: How to call webservice from Test Class in Salesforce?Test methods don't support Web service callouts and tests that perform Web service callouts are skipped. To prevent tests from being skipped and to increase code coverage, Apex provides the built-in WebServiceMock interface and the Test.
-
Flow is an application inside the Salesforce that automates a business process by collecting data and performing operations in your org or an external system.
-
Smart Search Items: Includes a set of the user's recently accessed objects
-
Ratnesh
MemberMarch 19, 2020 at 3:59 pm in reply to: What is the meaning of messaging class in Salesforce?It Contains messaging methods used when sending a single or mass email.
-
It stands from Single sign-on (SSO) and lets users access authorized network resources with one login.
-
Ratnesh
MemberMarch 18, 2020 at 2:58 pm in reply to: Difference between object-specific action and global action in Salesforce?Object-specific actions let users create or update records in the context of a particular object.
Global actions let users create records, but the new record has no relationship with other records. -
Object-Specific Actions. Object-specific actions let users quickly create or update records, log calls, send emails, and more, in the context of a particular object.
-
Yes, IDs are very similar incrementing either a letter or number when the mass insertion is there.
-
The events you can specify are:
before insert.
before update.
before delete.
after insert.
after update.
after delete.
after undelete. -
Ratnesh
MemberMarch 16, 2020 at 2:18 pm in reply to: How to schedule apex jobs from UI in Salesforce?Scheduling a Job from the UI
You can also schedule a class using the user interface.
1.From Setup, enter Apex in the Quick Find box, then select Apex Classes.
2.Click Schedule Apex.
3.For the job name, enter something like Daily Oppty Reminder.
4.Click the lookup button next to Apex class and enter * for the search term to get a list of all classes that can be scheduled. In the search results, click the name of your scheduled class.
5.Select Weekly or Monthly for the frequency and set the frequency desired.
6.Select the start and end dates, and a preferred start time.
7.Click Save -
Lightning Flow is a new Lightning Platform service that empowers any business to create and extend the power of process automation to any customer or employee experience.
-
Ratnesh
MemberMarch 4, 2020 at 2:23 pm in reply to: Can we change the name of standard object in Salesforce?Yes, we can change.
Follow these:-
->Setup
-> Customize
-> Tab Names and Labels
-> Rename Tabs and Labels.
-
Ratnesh
MemberMarch 4, 2020 at 2:21 pm in reply to: Why we Use Ampscript in Salesforce marketing cloud?AMPscript is a scripting language that you can embed within HTML emails, text emails, landing pages, SMS messages, and push notifications from MobilePush.
-
Ratnesh
MemberMarch 4, 2020 at 2:19 pm in reply to: How the object contentVersion is related to contentDocument in Salesforce?Content Document: It Represents a document that has been uploaded to a library in Salesforce CRM Content or Salesforce Files. The maximum number of documents that can be published is 30,000,000. This object record you don’t have to create. It gets created when you create ContentVersion which is the child of ContentDocument.
Content Version: Represents a specific version of a document in Salesforce CRM Content or Salesforce Files. In other words, this object stores document information similar like Attachment.
-
JSONParser methods to parse a response that's returned from a call to an external service that is in JSON format, such as a JSON-encoded response of a Web service callout.
-
Flow allows you to automate business processes by building applications, known as Flows, that collect, update, edit, and create Salesforce information