Anjali
IndividualForum Replies Created
-
Anjali
MemberNovember 25, 2020 at 12:28 pm in reply to: How do I send an email from a batch class in Salesforce?Please refer the below link-
https://developer.salesforce.com/forums/?id=9060G000000ID1BQAW -
To get a brief please refer the below link-
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_methods_system_blob.htm -
Please refer the below link-
https://trailhead.salesforce.com/content/learn/projects/protect-your-data-in-salesforce/set-up-account-teams -
Anjali
MemberNovember 24, 2020 at 2:37 pm in reply to: What are the 4 types of team you can create?Teams can be divided into four main groups: project teams, self-managed teams, virtual teams, and operational teams. What type of team you have depends on its purpose, location, and organizational structure.
-
Anjali
MemberNovember 23, 2020 at 1:32 pm in reply to: What are OpportunityAccessLevel in AccountTeamMember in Salesforce?<dt>Level of access that the User has to opportunities associated with the account. The possible values are:
- None
- Read
- Edit
This field must be set to an access level that is at least equal to the organization’s default opportunity access level. In addition, the users’s AccountAccessLevel, ContactAccessLevel, OpportunityAccessLevel, or CaseAccessLevel field must be set higher than the organization’s default access level. This field is available in API version 37.0 and later.</dt>
-
Anjali
MemberNovember 23, 2020 at 1:27 pm in reply to: What are team roles we can provide in AccountTeamMember in Salesforce?Team roles that you can add in Account TeamMember can be according to your requirement, and generally the roles such as managers or team member who works on managing accounts in your org.
-
Custom settings are similar to custom objects in that they let you customize org data. Unlike custom objects, which have records based on them, custom settings let you utilize custom data sets across your org. Custom settings also let you distinguish particular users or profiles based on custom criteria.
-
Anjali
MemberNovember 19, 2020 at 1:57 pm in reply to: How can you support opportunity management in Salesforce?There are several ways to do so-
https://www.salesforce.com/in/products/sales-cloud/features/opportunity-pipeline-management/ -
-
Anjali
MemberNovember 18, 2020 at 2:20 pm in reply to: How do I bypass approval process in Salesforce?please refer the below link-
https://trailblazer.salesforce.com/ideaView?id=0873A0000003UFlQAM -
Anjali
MemberNovember 18, 2020 at 2:18 pm in reply to: What are all the actions that are available in approval processes?You can associate actions to approval steps, initial submission, final approval, final rejection, or recall.
-
Approval steps define the chain of approval for a particular approval process. Each step determines which records can advance to that step, who to assign approval requests to, and whether to let each approver's delegate respond to the requests.
-
Anjali
MemberNovember 17, 2020 at 1:22 pm in reply to: How can we deploy components to production org?Lightning components are available in the Lightning Component Bundle in the drop-down list of the changeset.
-
Anjali
MemberNovember 17, 2020 at 1:21 pm in reply to: Can we integrate Lightning components with another framework, such as Angular?Yes, it can be integrated.
-
Anjali
MemberNovember 17, 2020 at 1:20 pm in reply to: Can we include external JavaScript/CSS libraries in components?Yes, you can include external libraries.
-
With Notes, Salesforce's enhanced note-taking tool, you can use rich text, lists, and images in your notes; relate notes to multiple records; and create notes in Lightning Experience.
-
Anjali
MemberNovember 13, 2020 at 12:23 pm in reply to: Test Class getting error System.StringException: Invalid id: 20 how to resolveMaybe the required fields of the object that you are inserting is missing.
-
Anjali
MemberNovember 13, 2020 at 12:19 pm in reply to: Limitations of @InvocableMethod annotation in Salesforce ?The Invocable method must be static and public or global , and its class must be an outer class. Only one method in a class can have the InvocableMethod annotation. Triggers can't reference Invocable methods. Other annotations can't be used with the InvocableMethod annotation.
-
Anjali
MemberNovember 12, 2020 at 12:44 pm in reply to: How do I create an automatic number field in Salesforce?Please create auto Number field on account.
Display Format : AC-{000000}Starting Number : 0 -
Anjali
MemberNovember 12, 2020 at 12:43 pm in reply to: How do I populate a field based on another field in Salesforce?Please refer the below link-
https://trailblazers.salesforce.com/answers?id=9063A000000pRjPQAU -
Anjali
MemberNovember 12, 2020 at 12:42 pm in reply to: Can we update Autonumber field in Salesforce?Click Edit next to the name of the field. Enter a Display Format to control such formatting details as the minimum number of leading zeros as well as any prefix or suffix for the number. See Custom Field Attributes. Format changes do not affect existing records; they are applied only to new records.
-
Anjali
MemberNovember 9, 2020 at 3:13 pm in reply to: Can we use lightning component in Visualforce page?We can not display lightning components directly to visualforce page, We have need to create a Lightning Application first with 'ltng:outApp' Interface and make it GLOBAL* accessible . The app uses the <aura:dependency> tag to indicate that it uses the Custom Lightning component.
-
Anjali
MemberNovember 9, 2020 at 3:12 pm in reply to: How do I give access to the Visualforce page in Salesforce?- Go to Setup | Administration Setup | Manage Users | Profiles.
- Click on the Profile Name you want to edit.
- Scroll down to 'Enabled Visualforce Page Access' related list and click Edit.
- Add the desired Visualforce pages under 'Enabled Visualforce Pages'.
- Click Save.
-
To style your Visualforce page to match the Lightning Experience UI when viewed in Lightning Experience or the Salesforce app, set lightningStylesheets=“true” in the <apex:page> tag.
-
Anjali
MemberNovember 6, 2020 at 7:03 am in reply to: How Salesforce uses connected apps to provide authorization for external APIThis authorization is based on scopes associated with the corresponding connected app in Salesforce. With a successful authorization code grant flow, Salesforce sends an access token to the client app. The client app sends its access token to the API gateway, requesting access to the protected order status data.