Shweta
IndividualForum Replies Created
-
Shweta
MemberNovember 27, 2020 at 3:17 pm in reply to: What are the three layers of Einstein analytics?Einstein Analytics comes with 3 layers i.e. Data Layer, Design Layer, and Intelligent Layer.
-
Shweta
MemberNovember 26, 2020 at 12:12 pm in reply to: Can we assign permission set to Public group?You can not assign a permission set to a public group directly.
-
Shweta
MemberNovember 26, 2020 at 12:10 pm in reply to: How many deployment tools are there in Salesforce?We can use these deployment tools in Salesforce:
1. Change Sets
2. Eclipse IDE
3. Ant migration toolkit -
Shweta
MemberNovember 26, 2020 at 11:57 am in reply to: What is permission set group in Salesforce?Permission Set Groups is a new feature that allows Admins to combine multiple permission sets into a single permission set group for user assignment. With the grouping mechanism, admins can truly apply role-based access control for managing user entitlements in Salesforce orgs.
-
Shweta
MemberNovember 23, 2020 at 5:49 pm in reply to: How do I add an account team member in Salesforce using data loader?Follow the below steps to add AccountTeamMembers using Data Loader:
1. Prepare a file with the following columns: AccountId, userId, TeamMemberRole, AccountAccessLevel, ContactAccessLevel, OpportunityAccessLevel, CaseAccessLevel.
2. Perform an Insert operation to the Account Team Member (AccountTeamMember) object, which should be available by selecting the "Show all Salesforce objects" option in the Data Loader, click Browse and select your file | Open | Next > | Ok
3. Click the Create or Edit a Map button and choose to Auto-Match Fields to Columns. Verify that the fields are properly mapped and click OK | Next>
4. Click Browse... to select the location on your local machine where you want to save the output files.
5. Click Finish and Yes at the prompt to proceed. -
Shweta
MemberNovember 23, 2020 at 5:44 pm in reply to: What is the relation between account and opportunity in Salesforce?Opportunities have a relationship with an Account record, and the Account has a relationship with Contacts – yet, no direct relationship. To get around this, Salesforce developed an object called 'Contact Roles', which creates a link between Contacts and the role they play in an Opportunity.
-
Shweta
MemberNovember 23, 2020 at 5:42 pm in reply to: What is the difference between a lead and an opportunity?Lead is a person who is a sales prospect.
Opportunity is the specific sales deal being pursued including the estimated dollar amount. The Opportunity record will be related to the Lead or Contact record of the person with whom you are hoping to do business. -
Shweta
MemberNovember 20, 2020 at 3:09 pm in reply to: Which actions we can perform inRecall Actions in Approval Process in Salesforce?You can associate actions to approval steps, initial submission, final approval, final rejection, or recall. Recall action will be executed if one of the approval process steps have been recalled.
-
Account Team is a predefined team that the Account Owner can set up, which can then be assigned to an Owner's accounts, when applicable. Notes: A User can only have one default account team.
-
Shweta
MemberNovember 20, 2020 at 2:51 pm in reply to: Can we update AccountTeamMember in Salesforce?Yes, You can do it with Dataloader.
-
Follow the below steps to create an Approval Process:
1. Go to SetUp → Enter Approval Process in Quick Find box → Select Approval Process.
2. For Manage Approval Process For, Select Opportunity.
3. Click Create New Approval Process → Select Use Jump Start Wizard.
4. Configure the approval process.
5. Save the approval process.
6. Click View Approval Process Detail Page.
7. Under Final Approval Actions, click Add New | Field Update, and configure it with your values.
8. Click Save
9. Under Final Rejection Actions, click Add New | Field Update, and configure it with your values.
10. Click Save -
Shweta
MemberNovember 19, 2020 at 1:48 pm in reply to: How to Enable SOSL on custom settings in Salesforce?Follow the below steps to enable the SOSL on custom settings:
Go to SetUp → Enter Schema Setting in Quick Find box → Select Schema Setting → Enable SOSL on Custom Setting. -
Shweta
MemberNovember 19, 2020 at 1:43 pm in reply to: How to enable list type in custom setting of Salesforce?Follow the below steps to enable the list custom settings.
Go to SetUp → Enter Schema Setting in Quick Find box → Enable Manage List Custom Setting Type. -
Shweta
MemberNovember 18, 2020 at 2:38 pm in reply to: What is meant by bindings in Salesforce Einstein analytics ?When viewing a dashboard all steps are executed and any 'result' bindings will also automatically trigger to insert the desired values. In contrast 'selection' binding will need the user to click on the source step of the binding for the binding to execute and update the values.
-
Shweta
MemberNovember 18, 2020 at 2:37 pm in reply to: What is template dashboard in Einstein analytics in Salesforce?Dashboard templates speed your Analytics development by automatically creating dashboards. Some provide blank layouts that you populate with data, while other “smart” templates create dashboards that require little to no additional configuration.
-
Shweta
MemberNovember 18, 2020 at 2:35 pm in reply to: Can we have more than one Approver in approval process in Salesforce?Yes, we have more than one Approver in the approval process.
-
Shweta
MemberNovember 17, 2020 at 12:46 pm in reply to: Which big object fields can you query for using standard SOQL?You can query the fields in a big object's index using a subset of standard SOQL commands. Build an index query starting from the first field defined in the index, without gaps between the first and last field in the query. You can use = , < , > , <= , or >= , or IN on the last field in your query.
-
Shweta
MemberNovember 17, 2020 at 12:42 pm in reply to: Which interface we are supposed to implement so that a lightning component can bWe need to implement the “force:appHostable” so that we can use the component as a Tab.
-
Tools included in Lightning:
Lightning Component Framework – Components and extensions that allow you to build reusable components, customize the Salesforce1 Mobile App, and build standalone apps.
Lightning App Builder – A new UI tool that lets you build apps lightning fast, using components provided by Salesforce and platform developers.
Lightning Connect – An integration tool that makes it easier for your Force.com app to consume data from any external source that conforms to the OData spec.
Lightning Process Builder – A UI tool for visualizing and creating automated business processes.
Lightning Schema Builder – A UI tool for viewing and creating objects, fields, and relationships. -
Shweta
MemberNovember 13, 2020 at 1:17 pm in reply to: Limitations of @InvocableMethod annotation in Salesforce ?An invocable method will not accept more than one argument as a method parameter. Only static methods can be invocable methods and also More than one invocable method is not allowed per class.
-
Shweta
MemberNovember 13, 2020 at 12:21 pm in reply to: What is the use of Apex Flex Queue in Salesforce?Apex Flex Queue page lists all batch jobs that are in Holding status. You can view information about the job, such as the job ID, submission date, and Apex class. By default, jobs are numbered in the order submitted, starting with position 1, which corresponds to the job that was submitted first.
-
Shweta
MemberNovember 13, 2020 at 12:11 pm in reply to: How to Use Async SOQL to Query Big Objects in Salesforce ?There are two main ways to use Async SOQL to get a manageable dataset out of a big object. The first is to use filtering. You can use filtering to extract a small subset of your big object data into a custom object. You can then use it in your reports, dashboards, or other nifty analytic tool.
-
Shweta
MemberNovember 12, 2020 at 2:57 pm in reply to: How JSON is converted into Apex class in Salesforce?You can create a wrapper with a list of objects like below and deserialize JSON to the wrapper.
Example:
Public class JSONtoApexClasses{
Public List<JSONtoApexClass> tickets {get; set;}
public class JSONtoApexClass{
public String SUMMARY;
public String CUSTOMERUSEREMAIL;
}
public static JSONtoApexClasses parse(String json) {
return (JSONtoApexClasses) System.JSON.deserialize(json, JSONtoApexClasses.class);
}
} -
Shweta
MemberNovember 12, 2020 at 2:51 pm in reply to: What is system mode and user Mode in Salesforce?System mode means running apex code by ignoring user's permissions. User mode means running apex code by respecting user's permissions and sharing of records.
-
Shweta
MemberNovember 12, 2020 at 2:50 pm in reply to: What is Sharing and without Sharing in Apex class of Salesforce?With sharing Keyword enforces sharing rules that apply to the current user. If absent, code is run under the default system context. Use the with sharing keywords when declaring a class to enforce the sharing rules that apply to the current user.
Without sharing keyword ensures that the sharing rules of the current user are not enforced. Use the without sharing keywords when declaring a class to ensure that the sharing rules for the current user are not enforced. For example, you may want to explicitly turn off sharing rule enforcement when a class acquires sharing rules when it is called from another class that is declared using with sharing.