Kirandeep
IndividualForum Replies Created
-
Kirandeep
MemberFebruary 13, 2020 at 4:44 pm in reply to: What happens when the user is deactivated in Salesforce?Hi,
Deactivating a user in Salesforce means that user will not be deleted from the system but will no longer be able to log in to Salesforce and will lose access to any records that were manually shared with them or records that were shared with them as team members.
-
Hi Arun,
Record type is used to display different page layouts to different users.
-
Kirandeep
MemberFebruary 13, 2020 at 2:48 pm in reply to: What is the difference between before trigger and after trigger in Salesforce?- Before triggers are used to update or validate record values before they're saved to the database.
- After triggers are used to access field values that are set by the system (such as a record's Id or LastModifiedDate field), and to affect changes in other records.
-
Kirandeep
MemberFebruary 12, 2020 at 4:37 pm in reply to: How to avoid recursive trigger in Salesforce?Hi Shubham,
To avoid recursive triggers you can create a class with a static Boolean variable with default value true. In the trigger, before executing your code keep a check that the variable is true or not. Once you check make the variable false
-
Kirandeep
MemberFebruary 12, 2020 at 4:35 pm in reply to: What is the functionality of <aura:iteration> in Salesforce Lightning ?Hi arun,
aura:iteration iterates over a collection of items and renders the body of the tag for each item.
<aura:component> <aura:iteration items="1,2,3,4,5" var="item"> <meter value="{!item / 5}"/><br/> </aura:iteration> </aura:component>
-
Hi,
Static resources allow you to upload content that you can reference in a Visualforce page, including archives (such as . zip and . jar files), images, style sheets, JavaScript, and other files.
-
Kirandeep
MemberFebruary 11, 2020 at 3:32 pm in reply to: How can we connect two orgs(source & destination) in Salesforce?Hi Deepak,
Yes this can be done by Salesforce to Salesforce integration. Salesforce to Salesforce integration gives us the functionality to share records among two different orgs.
-
Kirandeep
MemberFebruary 11, 2020 at 3:21 pm in reply to: Can we edit a scheduled job in Salesforce Apex?Hi Sanjana,
No,existing Apex scheduled jobs are not editable.You need to delete old one and then create new one.
-
Hi Shubham,
Managed package in Salesforce can be described as collection of components in which code is hidden and can't be edited. It can only be upgraded to newer version.
Managed package are mainly used for Salesforce partners to distribute and sell applications to customers. -
Kirandeep
MemberFebruary 10, 2020 at 3:43 pm in reply to: What can a cross object formula reference in Salesforce?Hi Anjali,
Cross object formula in Salesforce is used to input formula value in between different objects which are related to each other. It can also references merge fields of two related objects.
-
Hi Aditya,
assertEquals() methods checks that the two values are equals or not.
-
Kirandeep
MemberFebruary 10, 2020 at 3:29 pm in reply to: What is the limit of lookup relationship per object in Salesforce?Hi Anjali ,
Maximum 40 lookup fields are allowed per Object.
-
Kirandeep
MemberFebruary 7, 2020 at 3:23 pm in reply to: What are the three main categories in the setup menu in salesforce ?In Salesforce Classic we have :
1. Administer
2. Build
3. Deploy
4. MonitorIn Lightning we have:
1. Administration
2. Platform Tools
3. Settings -
Kirandeep
MemberFebruary 7, 2020 at 2:55 pm in reply to: What are the types of triggers in Salesforce?There are two types of triggers.
Before Trigger: – This trigger is called before the execution of the DML statement.
After Trigger: –This trigger is called after once DML statement is executed. -
Kirandeep
MemberFebruary 7, 2020 at 2:51 pm in reply to: What is the difference between List, Map and Set in Salesforce?The list is a type of ordered collection that maintains the elements in insertion order, Set is a type of unordered collection and Map is a collection of key-value pairs.
- This reply was modified 4 years, 9 months ago by Forcetalks.
-
Kirandeep
MemberFebruary 6, 2020 at 3:28 pm in reply to: How recursion of record creation can be stopped via Process builder in Salesforce?Hello Udit,
While defining criteria in process builder, selecting "Do you want to execute the actions only when specified changes are made to the record?" in Advance section might work.
Let me know if this works.
-
Kirandeep
MemberFebruary 6, 2020 at 3:25 pm in reply to: In schedulable apex in Salesforce, what are the frequencies that are available for apex class to be scheduled?Hi Udit,
We can set weekly or monthly frequency for an apex class to be scheduled.
-
Kirandeep
MemberFebruary 4, 2020 at 2:53 pm in reply to: Can we use inner query in Map collection in Salesforce? If yes then how it works?Yes can we use inner query in Map collection in Salesforce.
-
Kirandeep
MemberFebruary 4, 2020 at 2:50 pm in reply to: What if I delete a child record in Salesforce & restore it later, would that restored child record still be related to the same parent?No, In this case , child won't get related to the parent after getting restored from recycle bin.
-
Kirandeep
MemberFebruary 4, 2020 at 12:46 pm in reply to: I want to use specific picklist values in Salesforce again and again on different objects. What can be the best way to do this?Hi Udit,
We can use global picklist values for this and use it wherever we want.
-
Kirandeep
MemberFebruary 3, 2020 at 2:56 pm in reply to: A Salesforce system admin has set up a new user. How long does the user have to activate the account before email link get expires?Hi Udit,
By default we have 7 days till email link get expires in Salesforce
-
Kirandeep
MemberFebruary 3, 2020 at 2:54 pm in reply to: How do I import a CSV file into Salesforce?Hi Ratnesh,
We can import a CSV file into Salesforce through Data Import Wizard and Data Loader.
-
Kirandeep
MemberFebruary 3, 2020 at 1:29 pm in reply to: When we erase a field from page layout, does it get erased from the object in Salesforce?Hi Anjali ,
No it does not get erased from the object in Salesforce .We can only make a field required or read -only through page layout.
-
Kirandeep
MemberJanuary 31, 2020 at 2:18 pm in reply to: Why do we use permission sets in Salesforce?Hi Ratnesh,
Permission set is used to give extra permission to a particular user . We can give Extra grants to user but can not revoke permissions by Permission set.
Permission set is work on Object level security.
-
Kirandeep
MemberJanuary 31, 2020 at 2:15 pm in reply to: What are the assignment rules in Salesforce?Hi Pooja,
Assignment Rules are used to assign Leads and Cases automatically to the assigned users based on criteria. There are two types of Assignment Rules in Salesforce they are
- Lead Assignment Rules.
- Case Assignment Rules.