Forum Replies Created

Page 6 of 17
  • To use the default color for a particular icon, construct the name of the icon's specific utility class by concatenating slds-icon- , the sprite map name, and -icon . Apply that class to the element.

  • Ratnesh

    Member
    June 22, 2020 at 6:14 am in reply to: What is ContentVersion Id in Files in Salesforce?

    Content Document: It Represents a document that has been uploaded to a library in Salesforce CRM Content or Salesforce Files. The maximum number of documents that can be published is 30,000,000.

  • Ratnesh

    Member
    June 19, 2020 at 7:12 am in reply to: How to check debug log for Lightning Component in Salesforce?

    1. use Chrome + built in Dev Tools + Lightning Component Inspector.
    2. be sure debug mode is enabled in your org (Setup: Lightning Components)
    3. be sure caching is disabled in your org (Setup: Session Settings -> uncheck "Enable secure and persistent browser caching to improve performance"

  • Ratnesh

    Member
    June 19, 2020 at 7:11 am in reply to: Can you merge Person Account with Business Account in Salesforce?

    You can't merge person accounts that are enabled as portal or community users.

  • Ratnesh

    Member
    June 19, 2020 at 7:11 am in reply to: How to insert ContentDistribution in Salesforce?

    My code : ContentDistribution test = new ContentDistribution(); test. RelatedRecordId = [SELECT ContentDocumentId FROM ContentVersion WHERE Title='ZipTest'].

  • Ratnesh

    Member
    June 18, 2020 at 6:38 am in reply to: What is ContentDownloadURL in Salesforce Files?

    ContentDocumentLink. Represents the link between a Salesforce CRM Content document or Salesforce file and where it's shared. A file can be shared with other users, groups, records, and Salesforce CRM Content libraries.

  • Ratnesh

    Member
    June 18, 2020 at 6:35 am in reply to: How to create custom navigation of an object field in Salesforce?

    To add a menu item:
    1. Click Add Menu Item.
    2. Enter the name you want to use in the navigation menu for this item.
    3. Complete the fields based on the type you selected. If you selected Salesforce Object, select the default list view to show.

  • Ratnesh

    Member
    June 18, 2020 at 6:34 am in reply to: What is tool API in Salesforce?

    Introducing the Tooling API. Use Tooling API to build custom development tools or apps for Lightning Platform applications. Smaller retrieves improve performance, which makes Tooling API a better fit for developing interactive applications. Tooling API provides SOAP and REST interfaces.

  • To create this sample action, you follow the same steps as before for creating the opportunity quick action. From the Object Manager in Setup, click Account, then Buttons, Links, and Actions. Click New Action. For Action Type, select Create a Record.

  • Ratnesh

    Member
    June 17, 2020 at 6:07 am in reply to: How to create quick action button by using apex in Salesforce?

    1. From the management settings for the object for which you want to create an action, go to
    2. Buttons, Links, and Actions.
    3. Click New Action.
    4.Select the type of action to create.
    5. Customize the action.
    6. Enter a label for the action.
    7. If necessary, change the name of the action.
    8. Type a description for the action.

  • Ratnesh

    Member
    June 17, 2020 at 6:06 am in reply to: What is the use of TOFU and BOFU in Salesforce?

    For marketers, TOFU stands for top-of-funnel. MOFU is shorthand for middle-of-funnel, and BOFU — you guessed it — stands for bottom-of-funnel. The funnel is a simple way of mapping how people interact with your brand, all the way from the first time they hear your company's name to the day they become loyal customers.

  • Ratnesh

    Member
    June 16, 2020 at 8:52 am in reply to: What are Company Settings in Salesforce?

    Company settings are a collection of global attributes to describe the organization using Salesforce. They consist of company, currency, fiscal year, support, and locale settings.

  • Ratnesh

    Member
    June 16, 2020 at 8:51 am in reply to: What Are Locale Settings in Salesforce?

    The Salesforce locale settings determine the display formats for date and time, users' names, addresses, and commas and periods in numbers. As the admin, you set the default locale, but your users can set a personal locale if they're based in a different location.

  • Rollup fields are designed to help users obtain insights into data by monitoring key business metrics. A rollup field contains an aggregate value computed over the records related to a specified record, such as open opportunities of an account.

  • Ratnesh

    Member
    June 15, 2020 at 7:08 am in reply to: What is the use of email relay in Salesforce?

    Description. Available in: Professional, Enterprise, Performance, Unlimited and Developer Editions. An Email Relay uses an email server to send email that originated elsewhere. System administrators can set up Email Relay by entering Email Relays into the Quick Find search box, and selecting Email Relays.

  • Ratnesh

    Member
    June 15, 2020 at 7:08 am in reply to: What are the benefits of using the Salesforce CRM?

    Customer success. The CRM Salesforce is focused on fulfilling a main objective: to be part of the success of its customers and a large number of success stories around the world confirm this.
    Cloud leader.
    Cloud of trust.
    Multi-rental.
    Metadata platform.
    Rapid application development.
    Open ecosystem.
    Complete CRM.

  • Ratnesh

    Member
    June 15, 2020 at 7:07 am in reply to: What are the default filters in the salesforce?

    Different objects have different standard filters, but most objects include the standard filters Show Me and Date Field . Show Me filters the object around common groupings (like “My accounts” or “All accounts”).

  • Ratnesh

    Member
    June 12, 2020 at 6:34 am in reply to: What is the use of test.stop() in Salesforce?

    startTest and Test. stopTest, are used when testing governor limits. Or in other words, executing test scenarios with a larger data set.

  • Ratnesh

    Member
    June 12, 2020 at 6:34 am in reply to: Can we delete a button in Salesforce?

    To remove a custom button, select the button in the Available Buttons list, and click Add or Remove. Sort custom buttons by selecting them and clicking Up or Down. To undo your customizations and restore default settings, click Revert to Defaults.

  • Ratnesh

    Member
    June 12, 2020 at 6:33 am in reply to: What is the use of Test.start() in Salesforce?

    Test.startTest method marks the point in your test code when your test actually begins. Each test method is allowed to call this method only once.

  • Ratnesh

    Member
    June 11, 2020 at 6:41 am in reply to: When to Use Chatter REST API in salesforce?

    Use Chatter REST API to:
    1. Build a mobile app.
    2. Integrate a third-party web application with Salesforce so it can notify groups of users about events.
    3. Display a feed on an external system, such as an intranet site, after users are authenticated.
    4. Make feeds actionable and integrated with third-party sites. For example, an app that posts a 5. Chatter item to Twitter whenever the post includes #tweet hashtag.
    6. Create simple games that interact with the feed for notifications.
    7. Creating a custom, branded skin for Chatter for your organization.

  • Ratnesh

    Member
    June 11, 2020 at 6:39 am in reply to: What is the limit of mail sent through batch apex in Salesforce?

    There is a default value for each organization the limit is not related to license count. Using the API or Apex, you can send single emails to a maximum of 5,000 external email addresses per day based on Greenwich Mean Time (GMT).

  • Ratnesh

    Member
    June 11, 2020 at 6:39 am in reply to: What is Protocol in salesforce?

    Protocol specifies the set of rules that enable systems to exchange information.

  • Ratnesh

    Member
    June 10, 2020 at 5:52 am in reply to: What are the Salesforce subsidiaries?

    I have discovered some more subsidiaries as mentioned below:
    1.Tableau Software - interactive data visualization software company.
    2.Pardot - software as a service (SaaS) marketing automation platform.
    3.MuleSoft - provides integration software for connecting applications, data and devices.
    4.Heroku - cloud platform as a service supporting several programming languages.
    5.Demandware, Inc. - cloud-based unified e-commerce platform with mobile, AI personalization, order management capabilities, and related services for B2C and B2B retailers and brand manufacturers around the world.
    6.Datorama Inc. - an end to end marketing integration platform that allows marketers to unify all their data, KPIs and stakeholders across teams, channels, platforms etc, so as to identify a single unified source of truth.
    7.ClickSoftware Technologies - offers automated mobile workforce management and service optimization solutions for enterprise and small businesses, both for mobile and in-house resources.

  • Ratnesh

    Member
    June 10, 2020 at 5:52 am in reply to: What type of apps we can create in Salesforce?

    Salesforce provides standard apps such as Sales and Service. You can also build your own on-demand apps by grouping items into new custom apps. A custom app consists of a label, a description, and an ordered list of items, which often includes tabs. You can also add custom logos and branding to your custom apps.

Page 6 of 17