Kirandeep
IndividualForum Replies Created
-
A named credential specifies the URL of a callout endpoint and its required authentication parameters in one definition.
-
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.
-
External objects are similar to custom objects, except that they map to data that's stored outside your Salesforce org. ... External objects enable your users and the Lightning Platform to search and interact with the external data. Note. Each org can have up to 100 external objects.
-
Kirandeep
MemberAugust 20, 2020 at 2:17 pm in reply to: How to reset API callout limits when all limits get used in salesforce?If you need a greater limit and you don't want to purchase extra user licenses or upgrade your Salesforce Edition, you can purchase extra API calls at Checkout or by contacting your account representative.
-
Kirandeep
MemberAugust 20, 2020 at 2:12 pm in reply to: How to convert comma separated value into List of String?Hi Anuj ,
String name = 'Test1, Test2, Test3, Test4';
List<String> ListOfStr= name.split(','); -
Kirandeep
MemberAugust 20, 2020 at 2:09 pm in reply to: How do I query an external object in Salesforce?Hi,
We can query like this :-
SELECT Id, Name__c, AirDate__c FROM Advertisements__x WHERE Name__c LIKE '%Early%' -
Kirandeep
MemberAugust 19, 2020 at 4:51 pm in reply to: What are tools available for migration in Salesforce?Hi Pooja,
You can refer link below :-
https://blog.cloudanalogy.com/10-salesforce-best-data-migration-tools-2015/ -
A guest user is anyone you can use for applications like event management applications, volunteer applications, donation applications and many more. The Salesforce feature that allows accommodation of these “external users” is the SITE GUEST USER.
- This reply was modified 4 years, 3 months ago by Kirandeep.
-
Person accounts store information about individual people by combining certain account and contact fields into one record. Business Contact Sharing for Orgs That Use Person Accounts. Orgs that use person accounts can modify the Organization-Wide Sharing Default for Contacts.
-
Kirandeep
MemberAugust 18, 2020 at 11:06 am in reply to: What is the difference between Queueable and future in Salesforce?1.Future will never use to work on SObjects or object types whereas Queueable Jobs can contain the member variable as SObjects or custom Apex Types.
2.The future method cannot be called inside the future or batch class whereas Queueable Apex can be called from the future and batch class.
3.We cannot monitor the jobs in future method . -
Kirandeep
MemberAugust 18, 2020 at 11:01 am in reply to: what is Dynamic Apex and how is it helpful ?Dynamic apex enables developers to create more flexible applications by providing them with the ability to “Access sObject and field describe information”, “Write Dynamic SOQL Queries”, “Write Dynamic SOSL Queries” and “Dynamic DML”.
-
The word polymorphism means having many forms.Polymorphism ” is the ability of one type, A, to appear as and be used like another type, B.” ... That's right we need a list of classes, so they need to be the same class type, but the same method in each must return different values (let's assume without the use of conditional logic statements).
-
Kirandeep
MemberAugust 17, 2020 at 2:35 pm in reply to: When do we use @Depricated Annotation in Apex?Use the deprecated annotation to identify methods, classes, exceptions, enums, interfaces, or variables that can no longer be referenced in subsequent releases of the managed package in which they reside. This is useful when you are refactoring code in managed packages as the requirements evolve.
-
Kirandeep
MemberAugust 17, 2020 at 2:33 pm in reply to: Where we can display the Salesforce Lightning component?A Lightning component can be embedded in any webpage using a very powerful and flexible feature, Lighting out. When used with Visualforce some complexity becomes simpler.
-
Kirandeep
MemberAugust 13, 2020 at 5:20 pm in reply to: What are bound and unbound expressions in Salesforce?Bound Expression: Bound Expression is represented as {! v. ... Whenever the value of the string is changed, this expression will reflect the change and also affect the components where it is used, we can say the value change dynamically through this expression. Unbound Expression: Unbound Expression is represented as {#v.
-
Kirandeep
MemberAugust 13, 2020 at 4:48 pm in reply to: What are Transaction Finalizers in Salesforce?With transaction finalizers, you can attach a post-action sequence to an asynchronous job and take relevant actions based on the job execution result. ... You can enqueue a single asynchronous Apex job (queueable, future, or batch) in your finalizer. You can also make callouts in the finalizer.
-
Hi Manish ,
You can refer link below :-
https://www.emizentech.com/blog/call-apex-class-from-process-builder.html -
Kirandeep
MemberAugust 12, 2020 at 3:24 pm in reply to: When to Use “__r” Over “__c” in Salesforce?__c” signifies something custom in Salesforce while “__r” signifies a relationship.
-
Kirandeep
MemberAugust 12, 2020 at 3:23 pm in reply to: How to create lookup field in Salesforce flow?Hi ,
You can refer the links below
https://www.jitendrazaa.com/blog/salesforce/creating-lookup-field-in-flow/
https://jenwlee.com/2019/11/13/look-it-up-in-a-flow-screen/ -
Hi Marziya ,
You can refer the link below :-
https://help.salesforce.com/articleView?id=000333713&type=1&mode=1 -
Kirandeep
MemberAugust 11, 2020 at 2:18 pm in reply to: What is the difference between autolaunched and screen flow in Salesforce?Screen Flow-Requires user interaction, because it includes screens, local actions, steps, choices, or dynamic choices. ... Autolaunched Flow-Doesn't require user interaction. This flow type doesn't support screens, local actions, choices, or choice sets
-
Kirandeep
MemberAugust 11, 2020 at 1:52 pm in reply to: What is the difference between the ISBLANK() and ISNULL () in Salesforce?ISBLANK() has the same functionality as ISNULL(), but also supports text fields. Salesforce will continue to support ISNULL, so you do not need to change any existing formulas. ISNULL(): Text fields are never null, so using ISNULL() with a text field always returns false.
-
Kirandeep
MemberAugust 11, 2020 at 1:47 pm in reply to: Can we change the data type from lookup relationship to master-detail.Hi Mohit ,
Yes We can change . -
Hi Marziya ,
We have joins in Salesforce to joins the Tables .
(INNER) <b style="font-family: inherit; font-size: inherit;">JOIN:
FULL (OUTER) <b style="font-family: inherit; font-size: inherit;">JOIN:
LEFT (OUTER) <b style="font-family: inherit; font-size: inherit;">JOIN:- This reply was modified 4 years, 3 months ago by Kirandeep.
-
Bulk API is based on REST principles and is optimized for working with large sets of data. You can use it to insert, update, upsert, or delete many records asynchronously, meaning that you submit a request and come back for the results later. Salesforce processes the request in the background.