Forum Replies Created

Page 12 of 17
  • Ratnesh

    Member
    April 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

    Member
    April 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.

  • Ratnesh

    Member
    April 3, 2020 at 11:52 am in reply to: What is Changed Set in Salesforce ?

    Use change sets to send customizations from one Salesforce org to another.

  • Ratnesh

    Member
    April 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

    Member
    April 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.

  • Ratnesh

    Member
    March 26, 2020 at 1:28 pm in reply to: What does the math.ceil do in Salesforce?

    The Math.ceil() function always rounds a number up to the next largest.

  • Ratnesh

    Member
    March 26, 2020 at 1:26 pm in reply to: What does rows.splice do in Salesforce?

    splice() is a Javascript method which adds/removes items to/from an array, and returns the removed item

  • Ratnesh

    Member
    March 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

  • Ratnesh

    Member
    March 23, 2020 at 4:58 pm in reply to: How to create manage package in Salesforce?

    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

    Member
    March 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.

  • Ratnesh

    Member
    March 23, 2020 at 4:51 pm in reply to: When to use flow builder in Salesforce?

    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.

  • Ratnesh

    Member
    March 19, 2020 at 4:01 pm in reply to: What are Smart Search Items in Salesforce?

    Smart Search Items: Includes a set of the user's recently accessed objects

  • Ratnesh

    Member
    March 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.

  • Ratnesh

    Member
    March 19, 2020 at 3:57 pm in reply to: What is SSO in Salesforce?

    It stands from Single sign-on (SSO) and lets users access authorized network resources with one login.

  • 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.

  • Ratnesh

    Member
    March 18, 2020 at 2:55 pm in reply to: What is object specific action in Salesforce?

    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.

  • Ratnesh

    Member
    March 18, 2020 at 2:54 pm in reply to: Are the Salesforce IDs sequenstial?

    Yes, IDs are very similar incrementing either a letter or number when the mass insertion is there.

  • Ratnesh

    Member
    March 16, 2020 at 2:26 pm in reply to: When to use the Apex Trigger in Salesforce?

    The events you can specify are:
    before insert.
    before update.
    before delete.
    after insert.
    after update.
    after delete.
    after undelete.

  • Ratnesh

    Member
    March 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

  • Ratnesh

    Member
    March 16, 2020 at 2:13 pm in reply to: What is lightning flow in Salesforce?

    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

    Member
    March 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

    Member
    March 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.

  • 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.

  • Ratnesh

    Member
    March 3, 2020 at 2:26 pm in reply to: When to use JSONParser in Salesforce ?

    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.

  • Ratnesh

    Member
    March 3, 2020 at 2:25 pm in reply to: What are the uses of Flow in Salesforce ?

    Flow allows you to automate business processes by building applications, known as Flows, that collect, update, edit, and create Salesforce information

Page 12 of 17