Forum Replies Created

Page 7 of 8
  • Sumit

    Member
    April 9, 2020 at 12:56 pm in reply to: What is meant by bucketing in Salesforce?

    Bucketing lets you quickly categorize report records without creating a formula or a custom field. When you create a bucket field, you define multiple categories (buckets) used to group report value

  • Sumit

    Member
    April 9, 2020 at 12:54 pm in reply to: How many lookup relationship on an object is possible in Salesforce?

    Each object is allowed to have one or two masters, or up to 8 details. You can have a Total of 40 Relationship fields with a Maximum of 2 Master Detail Relationships. So you can have all 40 as Lookup Relationship fields, 38 Lookup and 2 MD 39 Lookup and 1 MD relationship fields on an objec

  • Sumit

    Member
    April 8, 2020 at 12:35 pm in reply to: What is Template Library in Adobe Sign of Salesforce?

    You can create your own Adobe Sign template library by storing Adobe Sign forms and templates in your Salesforce Documents tab. Adobe Sign text tags provide the following benefits: Set specific locations for customers to sign and initial documents.

  • Sumit

    Member
    April 8, 2020 at 12:33 pm in reply to: What is data mapping in Salesforce?

    I hope you are talking about Data Mapping. Mapping is done between columns of two different systems. When data is migrated from one system to another, tables (objects in Salesforce) are matched first and then column level mapping is done

  • Sumit

    Member
    April 8, 2020 at 12:31 pm in reply to: What is merge mapping in Salesforce?

    Adobe Sign Merge Mappings give you the ability to merge field data from Salesforce into your documents fields before sending them out for signature. For example, you can populate a Lead's address and phone number from a Salesforce record automatically into the agreement before it is sent to the Lead for signature

  • Sumit

    Member
    April 7, 2020 at 1:57 pm in reply to: isDone() in Salesforce.

    isDone() == true) and then deletes the zip file from the server. ... This call returns the status of the retrieval operation, but doesn't retrieve the zip file.

  • Sumit

    Member
    April 7, 2020 at 1:49 pm in reply to: How many types of tabs are there in Salesforce?

    There are four types of Tabs (exclusive native tabs): Custom tabs display custom object data or other web content embedded in the application. Custom Object Tabs—For your custom object data. Custom Object Tabs display the data of your custom object in a user interface tab.

  • Sumit

    Member
    April 7, 2020 at 1:27 pm in reply to: what is difference between Rest Api and SOAP Api in Salesforce?

    REST APIs utilizes multiple levels of standards such as HTTP, JSON, XML, URL, and so on, while SOAP AP mostly depends on the HTTP or XML based web services

  • Sumit

    Member
    April 6, 2020 at 12:56 pm in reply to: What is the registerEvent in Salesforce Lightning?

    aura:registerevent is the notifier component and it declares that it may fire a particular event, it includes 'name' attribute which is relevant only to component event and is not used for application event. Other attribute is the 'type' which lets the component know which event would be fired.

  • Sumit

    Member
    April 6, 2020 at 12:53 pm in reply to: How to create custom events in lightning components of Salesforce?

    Create a custom component event using the <aura:event> tag in a . evt resource. Events can contain attributes that can be set before the event is fired and read when the event is handled. Use type="COMPONENT" in the <aura:event> tag for a component event

  • Sumit

    Member
    April 6, 2020 at 12:51 pm in reply to: What is trigger factory in salesforce ?

    Search Results
    Featured snippet from the web
    Similar to utility classes, trigger factory classes allow code to be potentially reused across multiple triggers/objects, and reduces maintenance, since classes can now be deployed independently of triggers. ... Also, you get to implement common trigger features across all your triggers using a common framework

  • Sumit

    Member
    April 3, 2020 at 1:37 pm in reply to: how to convert date/time to date in Salesforce?

    Try taking the Year, Month, and Day values out of the DateTime variable and pass them into the Date.newInstance() method.
    Here is some psuedo-code:
    DateTime dT = System.now();
    Date myDate = date.newinstance(dT.year(), dT.month(), dT.day());

  • Sumit

    Member
    April 3, 2020 at 1:34 pm in reply to: Null And Undefined?

    If you declare a variable and don't initialize it with a value, it will be null. In essence, null means the absence of a value while if you use variable and not declare it data types then it is undefined.

  • Sumit

    Member
    April 3, 2020 at 1:32 pm in reply to: How to generate the WSDL file in Salesforce ?

    To generate the metadata and enterprise WSDL files for your organization:
    Log in to your Salesforce account. You must log in as an administrator or as a user who has the “Modify All Data” permission.
    From Setup, enter API in the Quick Find box, then select API.
    Click Generate Metadata WSDL and save the XML WSDL file to your file system.
    Click Generate Enterprise WSDL and save the XML WSDL file to your file system.

  • Sumit

    Member
    April 2, 2020 at 12:32 pm in reply to: Why @future is used in API callout in Salesforce?

    Future Annotation. Use the future annotation to identify methods that are executed asynchronously. ... Without the annotation, the Web service callout is made from the same thread that is executing the Apex code, and no additional processing can occur until the callout is complete (synchronous processing).

  • Sumit

    Member
    April 2, 2020 at 12:28 pm in reply to: What is mock callout in Salesforce?

    To mock a callout if the code that performs the callout is in a managed package, call Test. setMock from a test method in the same package with the same namespace. ... It then verifies that the response returned is what the implemented respond method sent.

  • Sumit

    Member
    April 2, 2020 at 12:27 pm in reply to: What is difference between URL and URI in Salesforce?

    URI: Uniform Resource Identifier (URI) is a string of characters used to identify a name or a resource on the Internet. Such identification enables interaction with representations of the resource over a network (typically the World Wide Web) using specific protocols
    URL: In computing, a Uniform Resource Locator (URL) is a subset of the Uniform Resource Identifier (URI) that specifies where an identified resource is available and the mechanism for retrieving it.
    Example
    To identify a specific resource and how to access it - in all completeness
    URI: mysql://localhost@databasename:password
    The URL shows you where you can find the database on the internet and which protocol you should use.
    URL: mysql://localhost

  • Sumit

    Member
    February 19, 2020 at 2:20 pm in reply to: What is @TestVisible in Salesforce?

    TestVisible Annotation. Use the TestVisible annotation to allow test methods to access private or protected members of another class outside the test class. These members include methods, member variables, and inner classes. … It contains the test method that accesses the annotated member variable and method.

  • Sumit

    Member
    February 19, 2020 at 2:19 pm in reply to: What is Inline Edit in Salesforce?

    inline editing is a feature by which one can edit a record without pressing the edit button.

  • Sumit

    Member
    February 19, 2020 at 2:17 pm in reply to: Why would a developer use test startTest and test stopTest in Salesforce?

    Hii Ratnesh,

    Test. startTest() and Test. stopTest() exist primarily to allow you to reset the governor limits within the context of your test execution and to be able to testasynchronous methods. These two statements cannot be called more than once within a testMethod.

  • setClientCertificate(clientCert, password)
    This method is deprecated. Use setClientCertificateName instead.
    Signature
    public Void setClientCertificate(String clientCert, String password)
    Parameters
    clientCert
    Type: String
    password
    Type: String
    Return Value
    Type: Void
    Usage
    If the server requires a client certificate for authentication, set the client certificate PKCS12 key store and password.

  • Sumit

    Member
    February 13, 2020 at 1:10 pm in reply to: What is getBodyDocument() method in Salesforce Apex?

    getBodyDocument()
    Retrieves the body of this request as a DOM document.
    Signature
    public Dom.Document getBodyDocument()
    Return Value
    Type: Dom.Document
    Example
    Use this method as a shortcut for:

    String xml = httpRequest.getBody();
    Dom.Document domDoc = new Dom.Document(xml);

     

  • Sumit

    Member
    February 13, 2020 at 1:08 pm in reply to: What is .getBodyAsBlob() method in Salesforce?

    getBodyAsBlob()
    Retrieves the body of this request as a Blob.
    Signature
    public Blob getBodyAsBlob()
    Return Value
    Type: Blob

  • Sumit

    Member
    February 7, 2020 at 2:07 pm in reply to: What is lazy loading entity framework in Salesforce?

    Lazy loading means delaying the loading of related data, until you specifically request for it.

  • A lightning:breadcrumb component displays the path of a page relative to a parent page. Breadcrumbs are nested in a lightning:breadcrumbs component. Each breadcrumb is actionable and separated by a greater-than sign. The order the breadcrumbs appear depends on the order they are listed in markup

Page 7 of 8