kishan giri
IndividualForum Replies Created
-
Order of execution of Processes
System Validation Rules.
Apex Before Triggers.
Custom Validation Rules.
Duplicate Rules.
Apex After Triggers.
Assignment Rules.
Auto-Response Rules.
Workflow Rules. -
How you restrict the range of valid IP addresses on a profile depends on your Salesforce edition.
Click New in the Login IP Ranges related list.
Enter a valid IP address in the IP Start Address field and a higher-numbered IP address in the IP End Address field.
Optionally enter a description for the range.
Click Save. -
Navigate to Setup.
In the QuickFind Search, search for and select Profiles.
Click Edit next to the profile you are removing Salesforce App access.
In the 'Connected App Access' section, uncheck 'Salesforce for Android' and 'Salesforce for iOS'
Click Save. -
kishan
MemberMarch 25, 2021 at 2:42 pm in reply to: What are login hours and login IP ranges in Salesforce?Login hours are set in an organization to restrict the user's who tries to login before or after login hours. To set login hours in an organization go to Setup=>Administration=>Manage users=>Profiles. IP ranges are used to restrict any login attempt is done from unknown IP addresses.
-
kishan
MemberMarch 24, 2021 at 2:39 pm in reply to: How many records a list can hold in Salesforce?A list can hold 1000 records.
-
kishan
MemberMarch 24, 2021 at 2:37 pm in reply to: How much percentage should be there for deploy your code or package in sfdc?At least 75% of your Apex code must be covered by unit tests, and all of those tests must complete successfully. Note the following: When deploying to a production organization, every unit test in your organization namespace is executed.
-
Events are fired from JavaScript controller actions that are typically triggered by a user interacting with the user interface. There are two types of events in the framework: Component events are handled by the component itself or a component that instantiates or contains the component
-
kishan
MemberMarch 23, 2021 at 1:22 pm in reply to: How do I write a test class in Salesforce Apex?The test class are written under @isTest annotation. By using this annotation for test class we maintain code limit as it is not counted in it.
The Test Class In Apex Salesforce does not have access to any of the data which is stored in the related Salesforce org by default.We need to create raw-data for test class in our test class itself. By adding SeeAllData=true to @isTest annotation i.e. @isTest(SeeAllData=true) grants the access to the all the data of the related Salesforce org. -
-
kishan
MemberMarch 23, 2021 at 1:16 pm in reply to: What you consider before writing a test class in salesforce? -
kishan
MemberMarch 19, 2021 at 11:22 am in reply to: How do I find parent ID for child in Salesforce?You can go to the child object and check. Once you know the field name, you can access it directly. For Contact: Id parentId = myContact .
-
kishan
MemberMarch 18, 2021 at 10:04 am in reply to: is it possible to update parent object field with specific child object record ?Yes you can.
-
kishan
MemberMarch 17, 2021 at 11:15 am in reply to: How do I convert a list to a set in Salesforce?The simplest way to convert List to Set in Salesforce is given below: List<String> tempList = new List<String>(); Set<String> tempSet = new Set<String>(); tempList.
-
Advanced Programming Experience
-
kishan
MemberMarch 16, 2021 at 12:17 pm in reply to: Can we query formula field in SOQL in Salesforce?Yes, we can use formula field in SOQL query.
-
kishan
MemberMarch 16, 2021 at 12:12 pm in reply to: What is child relationship name in Salesforce?The Child Relationship Name is what developers see when writing sub queries in Apex. Salesforce uniquely names Child Relationships if you don't. However, those names are generally useless for developers trying to fully understand the relationship if there's more than one Child Relationship from the given object.
-
Opportunity Pipelines are used to define the particular funnel deals can go through. Opportunity Statuses are used to describe each stage a pending deal can go through within a specific Pipeline.
-
kishan
MemberMarch 15, 2021 at 11:22 am in reply to: What comes first lead or opportunity in Salesforce?Well, an Opportunity is something associated with revenue. Salesforce assumes that when you convert a Lead it is because you have uncovered some type of revenue opportunity. An Opportunity is neither a business, nor a person, but rather a potential future sale. It is the lifeblood of every sales funnel.
-
kishan
MemberMarch 12, 2021 at 1:04 pm in reply to: What is the difference between freeze and deactivate in Salesforce?Freezing a user in Salesforce means that only stops the user from being able to login.To prevent users from logging into your organization while you perform the steps to deactivate them, you can freeze user accounts. Freezing user accounts doesn't make their user licenses available for use in your organization.
-
kishan
MemberMarch 12, 2021 at 12:57 pm in reply to: Which two objects can be related to campaign members Salesforce?Both Contact and Lead . These objects are used in Salesforce .
-
kishan
MemberMarch 11, 2021 at 10:53 am in reply to: What are the benefits of using Salesforce CRM? -
kishan
MemberMarch 11, 2021 at 10:51 am in reply to: Difference between database methods and DML statements in Salesforce?The main difference is :-
DML statements - when an exception is thrown during bulk DML processing, processing stops immediately and jumps to your catch block.
DML database methods - allows partial success of bulk DML operations. Records that fail processing can be inspected and possibly resubmitted if necessary.