Anuj
IndividualForum Replies Created
-
Anuj
MemberJune 29, 2020 at 1:53 pm in reply to: How do you access static resources in lightning Web component?Follow the below link for clear understanding:
https://newstechnologystuff.com/2019/03/16/use-static-resource-in-lightning-web-component/ -
Lightning Web Components is the Salesforce implementation of that new breed of lightweight frameworks built on web standards. It leverages custom elements, templates, shadow DOM, decorators, modules, and other new language constructs available in ECMAScript 7 and beyond.
-
Anuj
MemberJune 29, 2020 at 1:45 pm in reply to: How do I create a static resource URL in Salesforce?To create a static resource:
From Setup, enter Static Resources in the Quick Find box, then select Static Resources.
Click New.
In the Name text box, enter the text that should be used to identify the resource.
fill the Required fields and click Save. -
Anuj
MemberJune 26, 2020 at 12:30 pm in reply to: What is difference between Visualforce Components and Lightning Components in SaA: Visualforce components are page-centric and most of the work is done on the server. Lightning is designed from the component up, rather than having the concept of a page as its fundamental unit. Lightning Components are client-side centric, which makes them more dynamic and mobile friendly.
-
Salesforce high-volume portal users are users with limited access to objects, record or accounts. This feature is the sharing function of the software, and is intended for organizations with millions of users.
-
Partner accounts are Salesforce accounts that a channel manager uses to manage partner organizations, partner users, and activities when using a partner community or partner portal. A channel manager who owns a partner account can access all the data associated with the partner account and the associated partner users.
-
Anuj
MemberJune 25, 2020 at 1:45 pm in reply to: How to create non mandatory dropdown field in Salesforce flow ?Making non mandatory dropdown field is very easy and you don’t need to know any coding, just follow below simple steps:
Download JQuery and save it as a static resource by name “JQuery”.
Copy below Visualforce page
Replace “flow:interview” name by your flow name
If you are expecting any URL parameter then simply add it as “apex:param” as shown in code
Add your field names which does not need to be mandatory in variable “nonMandatory”
In your Flow, add “– None –” as first choice in dropdown.OR
follow the below link for example.
https://www.jitendrazaa.com/blog/salesforce/creating-none-required-dropdown-field-in-flow/ -
Yes, you can iterate over values method.
Example:
Map<ID,Target__c> mapTargets = new Map<ID,Target__c>([ Select Id, Name From Target__c Where Account__c in:TargetAccountIDs]);
for(Target__c target : mapTargets.values()) {
System.debug('*************** Current Target: ' + target.Name);
} -
Yes, We can use here's the Example ---
List <Map<String, Integer>> a = new List <Map<String, Integer>> {
new Map<String, Integer>{'p1'=>10, 'p2'=>10},
new Map<String, Integer>{'p1'=>20, 'p2'=>20}
}; -
Anuj
MemberJune 24, 2020 at 2:10 pm in reply to: What are the types of events in Lightning Component in Salesforce?There are 2 types of events in lightning component....
1. Application Event.
2. Component Event. -
Anuj
MemberJune 24, 2020 at 2:05 pm in reply to: difference between person account and business account in Salesforce?Person accounts are used store information about individual consumers. By default Salesforce accounts are business accounts which stores companies/organization information. Personal account are different compared to Business accounts in salesforce. Person accounts don't have contacts.
-
API call limit. The API call limit operates using a "leaky bucket" algorithm as a controller. This allows for infrequent bursts of calls, and allows your app to continue to make an unlimited amount of calls over time.
-
When a choice is selected, store field values from the associated record in flow variables that you can reference later. Note When a Checkbox Group or Multi-Select Picklist screen component uses a record choice set, only values from the last record that the user selects are stored in the flow variables.
-
Salesforce campaign influence allows you to associate an Opportunity to multiple campaigns. Campaigns are essentially many-to-many mappings between a Campaign object in Salesforce, and the Leads, Opportunities, or Contacts that are members of the campaign
-
The Primary Campaign Source field allows you to designate the most influential Campaign for that opportunity. Setting a Primary Campaign Source will attribute 100% of the revenue from that Opportunity to the designated Campaign.
-
Anuj
MemberJune 22, 2020 at 1:48 pm in reply to: What is the relation in content document and content distribution in Salesforce?Content Version: Represents a specific version of a document in Salesforce CRM Content or Salesforce Files. In other words, this object stores document information similar like Attachment.
Now ContentDocumentLink: This object will share the files with Users, Records, Groups etc -
Anuj
MemberJune 22, 2020 at 1:46 pm in reply to: What are action associated with Workflow in Salesforce?There are 4 actions in workflow which are as--
Field Update
Email Alert
Outbound Message
New Task -
Anuj
MemberJune 22, 2020 at 1:44 pm in reply to: What is the difference between null & isEmpty() in Salesforce?ISNULL determines if an expression is null (blank) then returns TRUE if it is. If the expression contains a value, then this function returns FALSE.
isEmpty() as a condition, that generally means you're making one or even two checks too many
There are a few options to validate empty text fields in Apex: Use String. isBlank() method. This will return true if the text field is empty. -
Anuj
MemberJune 19, 2020 at 2:52 pm in reply to: How flows differ from process builder in Salesforce?Due to if-else criteria of process builder, a process that will need many workflows can be built with a single process. ... In workflows, actions are associated with a particular object and its related objects which is not the case with flows since they can create, update, lookup and delete records for multiple objects.
-
In some cases, you can't immediately deactivate an account, such as when a user is selected in a custom hierarchy field. To prevent users from logging in to your organization while you perform the steps to deactivate them, you can freeze user accounts.
-
The Salesforce Adoption Dashboards provide visibility to relevant user login history & trending, adoption of key features such as accounts & opportunities, and critical sales and marketing productivity enhancers.
-
Anuj
MemberJune 18, 2020 at 2:25 pm in reply to: What should a system administrator use to disable access to a custom applicationA system administrator should use Profiles to disable an application for a group of users in salesforce.
-
Einstein Voice is a voice user interface (VUI) that uses natural language processing (NLP), voice recognition and artificial intelligence (AI) to translate and perform basic administrative tasks for Salesforce customers.
-
Anuj
MemberJune 18, 2020 at 2:22 pm in reply to: How does Salesforce uses Artificial intelligence in the org?Salesforce Einstein is a layer of intelligence within the Lightning Platform that brings powerful AI technologies to everyone, right where they work. And with the Einstein Platform, admins and developers have a rich set of platform services to build smarter apps and customise AI for their businesses.
-
Anuj
MemberJune 17, 2020 at 3:12 pm in reply to: What does Einstein Prediction Builder work best with in Salesforce?Einstein Prediction Builder lets you make predictions about almost any field in Salesforce with just a few clicks. Then, you can use the predictions to power a workflow, focus your efforts, and work smarter. ... Einstein Prediction Builder works best with yes or no questions and predicting numerical data.