Kirandeep
IndividualForum Replies Created
-
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. -
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 -
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.
-
$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.
-
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.
-
this keyword represents the current instance of a class.
-
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. -
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. -
Kirandeep
MemberApril 3, 2020 at 3:06 pm in reply to: What is Test.startTest() and Test.stopTest()? When you will use it?Test.startTest() and Test.stopTest() is used to reset the governor Limits .
-
Kirandeep
MemberApril 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
MemberApril 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. -
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
MemberApril 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. -
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 -
Kirandeep
MemberMarch 16, 2020 at 4:48 pm in reply to: What is capitalize() method while working with String in Salesforce?capitalize() is a predefined method to make first letter of a word capital.
For example:-
String name = 'chauhan';
System.debug('Capitalize-' + name.capitalize()); -
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
MemberMarch 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.
-
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 -
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
MemberMarch 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
MemberMarch 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
MemberMarch 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.
-
Kirandeep
MemberMarch 2, 2020 at 2:36 pm in reply to: What are the different methods in JSONParser Class in Salesforce ?- clearCurrentToken()
- getBlobValue()
- getBooleanValue()
- getCurrentName()
- getCurrentToken()
- getDatetimeValue()
- getDateValue()
- getDecimalValue()
- getDoubleValue()
- getIdValue()
-
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.
-
Kirandeep
MemberFebruary 28, 2020 at 2:31 pm in reply to: Can the future method is called from another future method in Salesforce?No, you cannot call.