Forum Replies Created

Page 5 of 17
  • Ratnesh

    Member
    July 2, 2020 at 5:25 am in reply to: How to use lightning formatted URL in Salesforce?
  • Ratnesh

    Member
    July 2, 2020 at 5:24 am in reply to: How to use aura link in Lightning Component in Salesforce?

    To create a link with a custom onclick event handler, use the HTML anchor tag instead. To create a URL that navigates to another page in Salesforce, use lightning:navigation .

  • Now we can add this lightning component on account detail page.
    1. Go to Account tab.
    2. Open any record.
    3. Click Setup (Gear Icon) and select Edit Page.
    4. Under Custom Components, find your CurrentrecordIdExample component and drag it on record page.
    5. Click Save and activate.

  • Matrix reports are similar to summary reports but allow you to group and summarize data by both rows and columns. They can be used as the source report for dashboard components.

  • APEX Code. In this code, we have used the schema class to get the list of sObjects and fields in APEX. This list is later displayed with the help of Map and SelectOptions in the next set of code snippet. The schema class has the getGlobalDescribe() method which help us to get the schema of our entire salesforce org

  • Ratnesh

    Member
    July 1, 2020 at 5:09 am in reply to: What is sObject token in Salesforce?

    Token —a lightweight, serializable reference to an sObject or a field that is validated at compile time. This is used for token describes. The describeSObjects method—a method in the Schema class that performs describes on one or more sObject types.

  • Ratnesh

    Member
    June 30, 2020 at 6:22 pm in reply to: When to use IsNew() in formula in process builder in Salesforce?

    ISNEW. Description: Checks if the formula is running during the creation of a new record and returns TRUE if it is. If an existing record is being updated, this function returns FALSE.

  • Ratnesh

    Member
    June 30, 2020 at 6:22 pm in reply to: How the component event propagates in Salesforce?

    Here's the sequence of component event propagation. Event fired—A component event is fired. Capture phase—The framework executes the capture phase from the application root to the source component until all components are traversed. Any handling event can stop propagation by calling stopPropagation() on the event.

  • Ratnesh

    Member
    June 30, 2020 at 6:21 pm in reply to: What are capture and bubble phase in Lightning in Salesforce?

    Capture phase—The framework executes the capture phase from the application root to the source component until all components are traversed. ... Bubble phase—The framework executes the bubble phase from the source component to the application root until all components are traversed or stopPropagation() is called.

  • Load your external javascript library in the static resource.

  • Ratnesh

    Member
    June 29, 2020 at 5:47 am in reply to: What is aura in Salesforce?

    Components are the functional units of Aura, which encapsulate modular and reusable sections of UI. They can contain other components or HTML markup. The public parts of a component are its attributes and events. Aura provides out-of-the-box components in the aura and ui namespaces

  • Ratnesh

    Member
    June 29, 2020 at 5:47 am in reply to: What is a lead queue in Salesforce?

    Queues are groups of users who can own records. All records in Salesforce must have an owner. An owner is a single entity, queues allow for certain objects to have groups of users own the record.

  • Ratnesh

    Member
    June 26, 2020 at 6:29 am in reply to: What does product make different from pricebook in Salesforce?

    As defined by Salesforce.com, Products “are the individual items or services that you sell to customers through your opportunities and quotes.” Within products, Salesforce provides price books. “A price book is a list of products and their associated prices

  • 3 Significant Use Cases for Salesforce Communities
    In my CRM/PRM consulting assignments, a question that I am usually asked by the clients is "What are the typical uses cases for deploying Salesforce Communities apps?" While there are several use cases that can be listed, I have seen three "umbrella" use cases that regularly appear:
    1. As a community forum for interactions among employees, partners and customers:
    The app is set up as a forum for your customers, partners and employees to collaborate / chat / share information, documents, and pictures - help foster greater engagement with your company and its brand. The focus is on seamless exchange of knowledge, ideas, and clarifications (questions/answers). Can be monitored and facilitated by a formal community manager appointed by your organization to drive the right message across the various communication channels available to employees, partners and customers.
    2. As a front end web portal to automate select business processes which are supported on the back-end by solutions on the Force.com platform:
    The app is a web portal to engage your customers / partners for specific business processes that are enabled partially on the app and partially in the backend (on a platform like Force.com). With self-service a primary driver, the user interface can have a custom look and feel that is unique to your brand. Also, it enables you to expose only a subset of the Salesforce objects that are relevant to the respective business process being automated.
    3. As an alternative to applications on the Force.com platform i.e. to automate key business processes directly in Salesforce Communities:
    The app is a comprehensive automation solution for entire business processes. For example, it is possible to enable partner relationship management processes like partner onboarding, lead distribution / management, market development funds and so on. Depending on the complexity and uniqueness of the processes being automated, there are AppExchange products (Salesforce Labs, as well as third party apps) that can be integrated to enhance and enrich the overall solution.

  • Ratnesh

    Member
    June 26, 2020 at 6:28 am in reply to: What is TAB in Salesforce?

    Show Custom Object Data for Your Users. Custom tabs let you display custom object data or other web content in Salesforce. When you add a custom tab to an app in Salesforce Classic, it displays as a tab. When you add a custom tab to an app in Lightning Experience, it displays as an item in the app's navigation bar.

  • Ratnesh

    Member
    June 25, 2020 at 3:09 pm in reply to: How To Create Unique Contact in Salesforce?

    Create a new field in the account object called "AccNameBillingAdd" with the field type "Text". Make the field invisible to all profiles, of course the "System Administrator" would still have access to this field. Do not add the field to any page layout.

  • Typically, static resources is used for files that will need to be transferred between orgs. Often, images are put here that are used within code, Javascript, CSS, or documents that code might reference. Documents is meant as a reference for the typical end Users to use when necessary.

  • Ratnesh

    Member
    June 25, 2020 at 3:07 pm in reply to: Maximum number of records displayed on the VF page in Salesforce?

    You can enable readOnly attribute value true for the page it will increase Number of query rows from 50000 to 1 million rows and Number of records displayed on VF page will be increased from 1000 to 10000. You can go for pagination which has to limit.

  • Ratnesh

    Member
    June 24, 2020 at 6:09 am in reply to: What is use of loop element in Salesforce flow ?

    Flow Element: Loop. Start a loop path for iterating over items in a collection variable. For each iteration, the flow temporarily stores the item in the loop variable. To execute actions on each item's field values, use other elements in the loop.

  • Lookup record will return only first matching record. If you want to get all matching record, you should use Fast Lookup. In the fast lookup it will show all the record with given prefix. Fast lookups are more powerful, primarily due to a few key features that are not available in record lookups.

  • Ratnesh

    Member
    June 24, 2020 at 6:09 am in reply to: What is browser event in Lightning Component in Salesforce?

    Browser events are handled by client-side JavaScript controllers, as shown in the previous example. A browser event is not the same as a framework component event or application event, which you can create and fire in a JavaScript controller to communicate data between components.

  • Ratnesh

    Member
    June 23, 2020 at 6:51 am in reply to: How to create lookup field in Salesforce flow?

    This flow uses the Fast Create, Fast Update, Fast Lookup and Fast Delete flow elements. These are DML actions that occur with a collection of Salesforce records. The Fast Lookup in Cloud Flow Designer looks up the Contact object where the AccountId equals the variable recordId and then saves the Id in the variable.

  • Ratnesh

    Member
    June 23, 2020 at 6:50 am in reply to: What is Salesforce Einstein Analytics?

    Einstein is seamlessly integrated into many Salesforce products. Simply put your data in Salesforce and any features you have that are powered by Einstein will use that data to make you smarter and more predictive about your customers.

  • There are two types of actions present in a workflow in Salesforce:
    Immediate actions: Actions that get executed immediately when a record is created or edited.
    Time-dependent actions: Actions that get executed after a certain duration of time, such as 10 days, before a record's close date.

  • Ratnesh

    Member
    June 22, 2020 at 6:18 am in reply to: What is OwnerId in ContentDistribution in Salesforce?

    It is a reference field type in ContentDistribution

Page 5 of 17