Forum Replies Created

Page 10 of 19
  • Anuj

    Member
    June 29, 2020 at 1:53 pm in reply to: How do you access static resources in lightning Web component?
  • Anuj

    Member
    June 29, 2020 at 1:46 pm in reply to: What is lightning Web component in Salesforce?

    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

    Member
    June 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.

  • A: 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.

  • Anuj

    Member
    June 26, 2020 at 12:28 pm in reply to: What is Portal user in Salesforce?

    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.

  • Anuj

    Member
    June 26, 2020 at 12:27 pm in reply to: What is partner account in Salesforce?

    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

    Member
    June 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/

  • Anuj

    Member
    June 25, 2020 at 1:40 pm in reply to: Can we implement foreach on map in Salesforce?

    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);
    }

  • Anuj

    Member
    June 25, 2020 at 1:33 pm in reply to: Can we use list of Map in Salesforce?

    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

    Member
    June 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.

  • 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.

  • Anuj

    Member
    June 24, 2020 at 2:03 pm in reply to: What is API limit in Salesforce?

    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.

  • Anuj

    Member
    June 23, 2020 at 1:44 pm in reply to: What is record choice set in Salesforce flow?

    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.

  • Anuj

    Member
    June 23, 2020 at 1:43 pm in reply to: How does campaign influence work salesforce?

    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

  • Anuj

    Member
    June 23, 2020 at 1:42 pm in reply to: What is primary campaign source in Salesforce?

    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.

  • 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

    Member
    June 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

    Member
    June 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

    Member
    June 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.

  • Anuj

    Member
    June 19, 2020 at 2:51 pm in reply to: In which case a User freezes in Saleasforce?

    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.

  • Anuj

    Member
    June 19, 2020 at 2:50 pm in reply to: What is meant by adoption report in Salesforce?

    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.

  • A system administrator should use Profiles to disable an application for a group of users in salesforce.

  • Anuj

    Member
    June 18, 2020 at 2:24 pm in reply to: What is Salesforce Einstein voice assistant ?

    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

    Member
    June 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

    Member
    June 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.

Page 10 of 19