Kirandeep
IndividualForum Replies Created
-
Kirandeep
MemberSeptember 4, 2020 at 2:50 pm in reply to: What are the key benefits of the Salesforce Lightning Service Console?It is a tool that comes built-in to Lightning Service Cloud. This tool provides your support team with as much information as they will need to work each case. By default, Lightning Service Cloud displays: A list view of cases to easily navigate among records, fast.
-
Kirandeep
MemberSeptember 3, 2020 at 2:59 pm in reply to: What is the use of database.deleteImmediate() method in Salesforce ?Apex method deleteImmediate() deletes data in a custom big object. Declare an sObject that contains all the fields in the custom big object's index. The sObject acts like a template. All rows that match the sObject's fields and values are deleted.
-
Kirandeep
MemberSeptember 3, 2020 at 2:52 pm in reply to: What is Safe Navigation Operator in Salesforce ?Safe Navigation Operator is introduced in Salesforce Apex Winter Release 21 to Avoid Null Pointer Exceptions.
Example :-
For example :-
String profileUrl = null;
if (user.getProfileUrl() != null) {
profileUrl = user.getProfileUrl().toExternalForm();
}
/ New code using the safe navigation operator
<b role="presentation" style="font-family: inherit; font-size: inherit;">
String profileUrl = user.getProfileUrl()?.toExternalForm(); -
Hi Marziya ,
You can refer the link below :-
https://blog.mkorman.uk/using-postman-to-explore-salesforce-restful-web-services/#:~:text=OAuth%20with%20Postman&text=In%20Postman%2C%20click%20on%20the,and%20select%20%22OAuth%202.0%22.&text=Click%20on%20Request%20Token.,see%20the%20token%20in%20Postman.- This reply was modified 4 years, 2 months ago by Kirandeep.
-
Flow is an application inside Salesforce to automate complex business processes. Simply put, they collect data and then do something with that data. Flow Builder is the declarative interface that we use to build individual flows.
-
With Files Connect, Salesforce users can access, share, and search external data from systems like Quip, Google Drive, SharePoint, or Box. The Files Connect Setup Process. The setup process for Files Connect varies by external data source.
-
Kirandeep
MemberSeptember 1, 2020 at 2:23 pm in reply to: What is Synchronized Data Sources in Salesforce?Synchronized Data Sources use Marketing Cloud Connect to move data from another Salesforce cloud into Marketing Cloud.
-
An external data source specifies how to access an external system. Salesforce Connect uses external data sources to access data that's stored outside your Salesforce organization. Files Connect uses external data sources to access third-party content systems.
-
Kirandeep
MemberSeptember 1, 2020 at 2:03 pm in reply to: How to handle errors in lightning component in Salesforce?You can refer the link below :-
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/js_throw_error.htm- This reply was modified 4 years, 2 months ago by Kirandeep.
-
Kirandeep
MemberSeptember 1, 2020 at 2:01 pm in reply to: How to use wrapper class in Lightning Component in Salesforce?Hi Deepak,
you can refer the link below :-
https://www.sfdcpoint.com/salesforce/wrapper-class-in-lightning-component-salesforce/ -
Kirandeep
MemberAugust 28, 2020 at 3:01 pm in reply to: How to gets the leftmost len characters of a String in Apex?Hi Anuj,
You can use left() function of String Class . -
Kirandeep
MemberAugust 28, 2020 at 2:31 pm in reply to: How to check if a string is empty in Apex in Salesforce? -
Kirandeep
MemberAugust 28, 2020 at 2:26 pm in reply to: When does showHelpMessageIfInvalid() function is used in Apex controller?Hi Anjali ,
You can refer the link below :-
https://sfdctechie.wordpress.com/2019/01/29/understanding-reduce-and-showhelpmessageifinvalid-js-controller-methods/ -
Kirandeep
MemberAugust 27, 2020 at 4:02 pm in reply to: Whats is difference between synchronized data extension and salesforce data exteThis data extension is mostly used to have a separate sendable data extension that is used for sending emails to random subscribers. Synchronized Data Extension: This data extension is mainly used to populate Salesforce Standard/custom object data from Sales cloud/service cloud into Marketing cloud.
-
Kirandeep
MemberAugust 27, 2020 at 4:00 pm in reply to: How to use the Salesforce REST APIs with apps on Heroku?Hi Shweta,
You can refer the link below :-
https://trailhead.salesforce.com/en/content/learn/modules/salesforce_heroku_integration/rest_apis_with_heroku -
Kirandeep
MemberAugust 27, 2020 at 1:53 pm in reply to: How can we deactivate trigger in production if it is in active stage in SalesforHi Pooja,
You can refer the link below :-
https://help.salesforce.com/articleView?id=000327373&language=en_US&type=1&mode=1 -
Kirandeep
MemberAugust 26, 2020 at 1:40 pm in reply to: How can we serialize the object in Salesforce?Hi Deepak,
You can make the use of JSON class which Contains methods for serializing Apex objects.
for more details you can refer the link below :-
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_class_System_Json.htm -
Kirandeep
MemberAugust 26, 2020 at 1:37 pm in reply to: What is AppExchange directory in Salesforce?It is a web directory where hundreds of appexchange apps are available to salesforce customers to review, demo, comment upon, and /or install. Developers can submit their apps for listing on the appexchange directory if they want to share them with the community.
-
Kirandeep
MemberAugust 26, 2020 at 1:36 pm in reply to: Why to use batch class instead of normal class in Salesforce?Batch class in salesforce is used to run large jobs (think thousands or millions of records!) that would exceed normal processing limits. Using Batch Apex, you can process records asynchronously in batches (hence the name, “Batch Apex”) to stay within platform limits.
-
Kirandeep
MemberAugust 25, 2020 at 2:47 pm in reply to: When do we need to use JSON.createGenerator(true) in apex?createGenerator() is a method of JSON class which Returns a new JSON generator.
-
Kirandeep
MemberAugust 25, 2020 at 2:34 pm in reply to: How do I export attachments from Salesforce using data loader?Hi Ratnesh ,
you can refer the link below :
https://www.simplysfdc.com/2014/02/salesforce-how-to-export-attachments.html -
Kirandeep
MemberAugust 25, 2020 at 2:32 pm in reply to: What is the purpose of using DataSource.Connection in apex class?<samp>DataSource.Connection</samp> class is used to enable Salesforce to obtain the external system’s schema and to handle queries and searches of the external data.
-
Kirandeep
MemberAugust 24, 2020 at 11:24 am in reply to: How autolaunched flow is different than Screen Flow in Salesforce?Screen Flow-Requires user interaction, because it includes screens, local actions, steps, choices, or dynamic choices. Screen flows don’t support Pause elements.
Autolaunched Flow-Doesn’t require user interaction. This flow type doesn’t support screens, local actions, choices, or choice sets. -
Kirandeep
MemberAugust 24, 2020 at 11:23 am in reply to: How to display errors in Lightning Datatable ?- If you want to display error to the cell of the table then you must make the Column editable.
- If you don't want to make the column editable then, you must set the showRowNumberColumn attribute of the Lightning Datatable to True.
-
Kirandeep
MemberAugust 21, 2020 at 3:59 pm in reply to: Whats s use of name credentials in salesforce?A named credential specifies the URL of a callout endpoint and its required authentication parameters in one definition. To simplify the setup of authenticated callouts, specify a named credential as the callout endpoint.