Forum Replies Created

Page 14 of 17
  • Kirandeep

    Member
    April 8, 2020 at 2:35 pm in reply to: What is JSON Perser in SFDC?

    Hi Manish,
    Parsing means interpreting the data with whatever language.
    In salesforce, we use methods of JSONParser class to parse the JSON-encoded string/content that is returned from a call to an external service such that web service(HTTP) callout.

  • Kirandeep

    Member
    April 8, 2020 at 2:29 pm in reply to: What is API?

    Hi Manish,
    API (Application Programming Interface) are a set of functions and procedures that allow for the creation of applications that access data and features of other applications

  • Kirandeep

    Member
    April 7, 2020 at 3:07 pm in reply to: What is External lookup in Salesforce?

    External Lookup Relationships are used when you want to connect a child object to a parent External object. The child object can either be a Standard, Custom, or an External object.

  • Kirandeep

    Member
    April 7, 2020 at 2:45 pm in reply to: What is $enqueueAction in Salesforce?

    $A. enqueueAction(action) adds the server-side controller action to the queue of actions to be executed. All actions that are enqueued will run at the end of the event loop.

  • Kirandeep

    Member
    April 7, 2020 at 2:43 pm in reply to: queryMore() in Salesforce

    A queryMore() call on a parent object invalidates all child cursors in the previous result set. ... When querying external objects, Salesforce Connect accesses the external data in real time via Web service callouts. Each queryMore() call results in a Web service callout.

  • Kirandeep

    Member
    April 6, 2020 at 2:34 pm in reply to: This Keyword In Salesforce?

    this keyword represents the current instance of a class.

  • Kirandeep

    Member
    April 6, 2020 at 2:20 pm in reply to: Static variable in Salesforce?

    Hi Marziya,
    Static is a keyword which is used to initialize the memory once.It is like global variable and
    its value is shared across entire org.

  • Kirandeep

    Member
    April 6, 2020 at 2:15 pm in reply to: what is access token in salesforce?

    Hi Manish,
    In Salesforce,Access tokens are collections of credentials that are used to authenticate communication .
    Using the client ID and secret call the REST Auth service to obtain an OAuth access token for authenticating API calls.

  • Test.startTest() and Test.stopTest() is used to reset the governor Limits .

  • Kirandeep

    Member
    April 3, 2020 at 3:02 pm in reply to: How can we navigate using Lightning:navigation in Salesforce?

    Lightning:navigation is used to navigate to a given pageReference or to generate a URL from a pageReference. To navigate, we need to define a PageReference object.
    Pagereference is a javascript object that references a page, providing a well-defined structure that describes the page type and its corresponding values.
    The following are supported features where we can navigate to:
    Lightning Component
    Knowledge Article
    Named Page
    Navigation Item Page
    Object Page
    Record Page
    Record Relationship Page
    Web Page

  • Kirandeep

    Member
    April 3, 2020 at 12:02 pm in reply to: Event Propagation in lightning in Salesforce?

    Bubble phase: propagates from Bottom to Top.
    Capture phase: propagates from Top to Bottom.

  • Kirandeep

    Member
    April 2, 2020 at 3:24 pm in reply to: What is Meta Data in salesforce?

    Hi Manish,
    Meta data means data about data
    In Salesforce Metadata describes the structure of objects and their fields, as well as the page layouts associated with them.

  • Kirandeep

    Member
    April 2, 2020 at 2:34 pm in reply to: How to reset the governor Limits in Test Class in Salesforce?

    Hi Aditya,
    We can reset governor limits in Test Class with the use of Test.startTest() and Test.stopTest()
    method in salesforce.

  • Kirandeep

    Member
    April 2, 2020 at 2:29 pm in reply to: Migrate code from an organization

    Hi Aditya,
    We can migrate code from one org to another in three ways:-
    -Change Sets
    -Eclipse with Force.com IDE
    -Force.com Migration Tool – ANT/Java based

  • capitalize() is a predefined method to make first letter of a word capital.
    For example:-
    String name = 'chauhan';
    System.debug('Capitalize-' + name.capitalize());

  • Kirandeep

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

    A trigger is an Apex script that executes before or after specific data manipulation language (DML) events occur, such as before object records are inserted into the database, or after records have been deleted

  • Kirandeep

    Member
    March 12, 2020 at 1:50 pm in reply to: What are the uses of connected app in Salesforce?

    A connected app integrates an application with Salesforce using APIs. Connected apps use standard SAML and OAuth protocols to authenticate, provide single sign-on, and provide tokens for use with Salesforce APIs. In addition to standard OAuth capabilities, Salesforce admins set various security policies for connected apps and have explicit control over who can use the corresponding apps.

  • Kirandeep

    Member
    March 6, 2020 at 1:23 pm in reply to: How do you activate flow in Salesforce?

    Hi Ratnesh,

    When you activate a new version of a flow, the previously activated version (if one exists) is automatically deactivated. Any running flow interview continues to run using the version with which it was initiated.
    From Setup, enter Flows in the Quick Find box, then select Flows.
    Click the name of the flow.
    Click Activate or Deactivate next to the relevant version of the flow

  • Kirandeep

    Member
    March 6, 2020 at 1:21 pm in reply to: What are Auto-Response Rules in Salesforce?

    Hi Ratnesh,

     

    Auto response rule in Salesforce. An auto-response rule is a set of conditions for sending automatic email responses to lead or case submissions based on the attributes of the submitted record. Applicable leads include those captured through a Web-to-Lead form.

  • Kirandeep

    Member
    March 6, 2020 at 1:19 pm in reply to: What happens to my existing Visualforce Pages in Salesforce?

    Hi Aditya,

    Nothing Happen to your Visualforce Pages . They are stored in your Org until you delete them.

  • Kirandeep

    Member
    March 4, 2020 at 5:01 pm in reply to: Can we change the name of standard object in Salesforce?

    Setup -> Customize -> Tab Names and Labels -> Rename Tabs and Labels.

  • Kirandeep

    Member
    March 2, 2020 at 2:41 pm in reply to: What is the use of nextToken() method in Salesforce?

    nextToken()  is a  predefined method of JSONParser Class which returns the next token or null if the parser has reached the end of the input stream.

    • clearCurrentToken()
    • getBlobValue()
    • getBooleanValue()
    • getCurrentName()
    • getCurrentToken()
    • getDatetimeValue()
    • getDateValue()
    • getDecimalValue()
    • getDoubleValue()
    • getIdValue()
  • Kirandeep

    Member
    February 28, 2020 at 2:53 pm in reply to: What is Tooling API in Salesforce?

    Tooling API exposes metadata used in developer tooling that you can access through REST or SOAP. For detailed descriptions of Tooling API objects and the REST resources and SOAP calls that each object supports, see Tooling API Objects.

  • No, you cannot call.

Page 14 of 17