Pooja
IndividualForum Replies Created
-
Pooja
MemberFebruary 12, 2020 at 2:27 pm in reply to: I am able to deactivate a user in salesforce. how to permanently delete a user from org?You cannot delete the user in Salesforce but you can deactivate the user or freeze the user.
-
Label Reports features allow you add a ‘label’ to a case, either manually or through macros and rules, and then sort and filter the reports using the labels.
There are two options available for a Salesforce integration depending on your needs.
-
Pooja
MemberFebruary 12, 2020 at 2:22 pm in reply to: What is the Difference between isBlank and isNull in Salesforce?The ISBLANK formula field returns a TRUE while the ISNULL does not. This is because, when a Text field is left EMPTY, it is internally assigned with an EMPTY STRING and hence it is not NULL. The technical meaning of NULL is that it is not assigned with a memory for storage. Since we need some memory for storing an EMPTY STRING, it is obviously not NULL.
The ISBLANK returns a TRUE since the field does not carry anything(a value).
-
Pooja
MemberFebruary 11, 2020 at 2:50 pm in reply to: Can we edit a scheduled job in Salesforce Apex?No, We can not edit a scheduled job in Salesforce apex.
-
Pooja
MemberFebruary 11, 2020 at 2:49 pm in reply to: How many times trigger will fire in Salesforce?Triggers execute on batches of 200 records at a time in Salesforce.
-
Pooja
MemberFebruary 11, 2020 at 2:47 pm in reply to: Can a trigger have a static keyword in its code in Salesforce?A trigger can not have a static keyword in its code in Salesforce.
-
Pooja
MemberFebruary 10, 2020 at 2:55 pm in reply to: Difference between the profiles and permission sets in Salesforce?Profiles- A profile in Salesforce is a group or collection of settings and permissions that define what a user can do in Salesforce.
Permissions-The permission set is also very similar to profile. Whatever you can manage at profiles (Like Object permissions, Field Permissions, User permissions, Tab settings, App settings etc Apex class permission, visualforce permission) the same you can manage here also. But the main difference between these two is that user can have only one profile and can have multiple permission sets at a time.
-
Heap Size in Salesforce Apex is-
Synchronous transaction = 6MB
Asynchronous transaction = 12 MB- This reply was modified 4 years, 10 months ago by Forcetalks.
-
Pooja
MemberFebruary 10, 2020 at 2:45 pm in reply to: What is the limit of lookup relationship per object in Salesforce?The limit of look up relationship per object is 38 in Salesforce.
-
Pooja
MemberFebruary 7, 2020 at 2:27 pm in reply to: What is the maximum number of Components available on a Dashboard in Salesforce?The maximum number of components available on a dashboard is 20 in Salesforce.
-
Pooja
MemberFebruary 7, 2020 at 2:25 pm in reply to: Which action methods do standard controllers contains in Salesforce visualforce page?There are various action methods which do standard controllers contains in salesforce visual force page that are as follows-
- Save
- QuickSave
- Edit
- Delete
- Cancel
- List
-
Pooja
MemberFebruary 7, 2020 at 2:21 pm in reply to: What is Mandatory while creating User, Role or Profile in Salesforce?Profile is mandatory while creating user.
-
Pooja
MemberFebruary 5, 2020 at 1:51 pm in reply to: What are full copy and partial copy in salesforce?Partial Copy-
The Partial Copy Sandbox add-on is bundled with 10 Developer Sandboxes.
Full Copy-
The Full copy add-on is bundled with 15 Developer Sandboxes.
-
Static resources gives you permission to upload content(zip files or jar files etc) that you can reference in a Visualforce page.
-
Pooja
MemberFebruary 5, 2020 at 1:35 pm in reply to: What is the use of writing sharing rules in Salesforce?Sharing rules can be based on record ownership or other criteria. You can’t use Apex to create criteria-based sharing rules. Also, criteria-based sharing cannot be tested using Apex.They just allow greater access for particular users. You can share records owned by certain users or meeting certain criteria.You can use sharing rules to extend sharing access to users in public groups or roles.
-
Pooja
MemberFebruary 4, 2020 at 2:13 pm in reply to: Can I remove an expired Self-Signed certificate?Yes, you can remove an expired self-signed certificate.
-
Pooja
MemberFebruary 4, 2020 at 2:11 pm in reply to: Which tag is used with both radio buttons and picklists to create the selectable values?This tag is used with both radio buttons and picklist values-
<apex:selectOption>
-
In Track Field History, you can select certain fields to track and display the field history in the History related list of an object. The field history data is retained for up to 18 months.
-
Pooja
MemberFebruary 3, 2020 at 2:30 pm in reply to: Difference Between Salesforce Role And Profile?The basic difference between Salesforce role and profile is-
Profile - Profiles are used to control the objects, fields, tabs, apps page layout,record types available to the user in Salesforce.
Role - Depending on your sharing settings, roles are used to control the level of visibility that users have into your organization.
-
Pooja
MemberFebruary 3, 2020 at 2:20 pm in reply to: How many records can be imported via Import Wizard in Salesforce?50,000 Records can be imported via import wizard in Salesforce.
- This reply was modified 4 years, 10 months ago by Forcetalks.
-
Pooja
MemberFebruary 3, 2020 at 2:14 pm in reply to: How many days will the Recycle Bin hold deleted data in Salesforce?The Recycle bin will hold the deleted data for 15 days in Salesforce.
-
Pooja
MemberJanuary 31, 2020 at 1:52 pm in reply to: Is it possible to change Grant Access using role hierarchy for standard objects in Salesforce?No, It is not possible to change grant access using role hierarchy for standard objects in Salesforce.
-
Pooja
MemberJanuary 31, 2020 at 1:50 pm in reply to: Is Lightning Components build on the MVC pattern in Salesforce?No, Lightning components do not build on the MVC pattern in Salesforce.
-
Pooja
MemberJanuary 31, 2020 at 1:48 pm in reply to: Can we override Salesforce standard Actions with Lightning Components?Yes, You can override Salesforce standard actions with lighning component.
-
Pooja
MemberJanuary 30, 2020 at 2:59 pm in reply to: What is the use of component.find() in Salesforce Lightning?Hii Shweta,
get() method to access the data from the respective components (UI). The find() function has one parameter, which is the local ID of a component within the markup. find()returns different types depending on the result. If the local ID is unique, find() returns the component.
- This reply was modified 4 years, 10 months ago by Forcetalks.