Forum Replies Created

Page 14 of 19
  • Anuj

    Member
    May 12, 2020 at 11:35 am in reply to: How to remove default filters of reports in Salesforce?

    You haven't added default filters, they're included in every report by default and can't be removed.

  • Anuj

    Member
    May 12, 2020 at 11:33 am in reply to: How to get rid of time dependent workflow in Salesforce?

    You can manually delete any scheduled actions by going to monitor -> time-based workflow. Find the action and hit delete. You can also delete scheduled actions by editing the record, so that it will no longer meet the execution criteria.

  • Anuj

    Member
    May 12, 2020 at 11:31 am in reply to: What are the limitations of time dependent workflow in Salesforce?

    DATE or DATETIME fields containing automatically derived functions, such as TODAY or NOW.
    Formula fields that include related-object merge fields.
    You can’t add or remove time triggers if:
    The workflow rule is active.
    The workflow rule is deactivated but has pending actions in the queue.
    The workflow rule evaluation criteria is set to Evaluate the rule when a record is: created, and every time it’s edited.
    The workflow rule is included in a package.

  • Anuj

    Member
    May 11, 2020 at 2:08 pm in reply to: How do you use System runAs in Test class in salesforce?

    The system method, System. runAs(),lets us write test methods that change user contexts to either an existing user or a new user. All of that user's record sharing is then enforced. You can only use runAs in a test method

  • Anuj

    Member
    May 11, 2020 at 2:05 pm in reply to: What is createGenerator in Salesforce?
  • isNotEmpty() is used to find if the String is not empty and not null. isNotBlank() takes it a step forward. It not only checks if the String is not empty and not null, but also checks if it is not only a whitespace string

  • It is Predefined function of DescribeSObjectResult Class whichReturns a map that matches developer names to their associated record type. The current user is not required to have access to a record type to see it in this map.

  • Anuj

    Member
    May 8, 2020 at 2:50 pm in reply to: What is CronTrigger in Salesforce?

    CronTrigger. Contains schedule information for a scheduled job. CronTrigger is similar to a cron job on UNIX systems. This object is available in API version 17.0 and later.

  • Anuj

    Member
    May 8, 2020 at 2:48 pm in reply to: What is the use of getKeyPrefix() function in Salesforce ?

    It is a predefined function of DescribeSObjectResult Class which Returns the three-character prefix code for the object. Record IDs are prefixed with three-character codes that specify the type of the object (for example, accounts have a prefix of 001 and opportunities have a prefix of 006).

  • Anuj

    Member
    May 7, 2020 at 2:07 pm in reply to: How Formula field work in Salesforce?

    Formulas can be used to perform calculations on many different types of values, including numeric values, text values, dates, and durations. For each data type, only specific operations make sense. For example, multiplication makes sense on numeric values, but not on text values

  • Anuj

    Member
    May 7, 2020 at 2:04 pm in reply to: What is functional testing in Salesforce?

    It involves the tester making sure that whatever has been developed works alongside the existing org. This means reviewing each new feature thoroughly, checking for bugs, and ensuring the new functionality works from start to finish.

  • Anuj

    Member
    May 7, 2020 at 2:03 pm in reply to: why unit testing is important in Salesforce?

    It ensures that 75% of the apex code is tested and executed. It verifies that all the classes and triggers work as expected and produce the desired output. ... Unit tests help in meeting code coverage requirements for deploying the code to production

  • Yes you can make a Salesforce Lightning Component that shows up in both the mobile and the desktop user interfaces with the help of Salesforce1 Mobile app, template-based communities, and custom standalone apps.

  • Anuj

    Member
    May 6, 2020 at 2:14 pm in reply to: how we make a dashboard dynamic in Salesforce?

    From the Dashboards tab, create a new dashboard or edit an existing one. button next to the View dashboard as field. Note If you don't have “Manage Dynamic Dashboards” permission, just enter a running user and skip to the final step. Enter “*” to see all available users.

  • Anuj

    Member
    May 5, 2020 at 1:33 pm in reply to: How can we use AMPscript in Salesforce Marketing Cloud?

    The Marketing Cloud application handles all AMPscript calls at the end of the email send. AMPscript can also interact with your data extensions. Use AMPscript to include information from your data extensions in your messages and to update data extensions with information from your landing pages.

  • Anuj

    Member
    May 5, 2020 at 1:32 pm in reply to: Is AMPscript case sensitive in Salesforce?

    AMPscript can include numeric and string constants. ... Boolean constant values must use true or false and are case-insensitive.

  • Anuj

    Member
    May 5, 2020 at 1:30 pm in reply to: When to use custom settings in Salesforce?

    Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and associate custom data for an organization, profile, or specific user. The custom setting data can then be used by formula fields, validation rules, flows, Apex, and the SOAP API

  • Anuj

    Member
    May 4, 2020 at 2:04 pm in reply to: How does Field Service Lighting work in Salesforce ?

    Here are some of the things you can do with Field Service Lighting.
    Create records that represent your field service technicians, dispatchers, and agents, and add details about their skills, location, and availability
    Set up multilevel service territories that represent the regions where your technicians can work
    Track the location and status of your inventory, warehouses, service vehicles, and customer sites
    Schedule one-time or recurring work orders for customers, and add details about technician preference and required skills and parts
    Create maintenance plans and templates to standardize your field service tasks
    Generate service reports to keep customers informed about service progress

  • Anuj

    Member
    May 4, 2020 at 2:00 pm in reply to: What is Field Service Lightning in Salesforce ?

    Field Service Lightning (FSL) is part of the Salesforce Service Cloud suite, a management tool that enhance field service management by automation and integration of tasks for agents, dispatchers and mobile employees. Therefore provides a streamlined service experience with an intelligent and productive workforce.

  • Field Service Lightning has three main parts that work together to give you a complete field service management solution.
    Core Field Service Lightning features.
    Scheduling and optimization from a managed package.
    A mobile app for your mobile workforce.

  • Anuj

    Member
    May 1, 2020 at 1:23 pm in reply to: What is report type in Salesforce?

    A report type is like a template which makes reporting easier. The report type determines which fields and records are available for use when creating a report. ... For example, with the 'Contacts and Companies' report type, 'Companies' is the primary object and 'Contacts' is the related object

  • Custom settings are similar to custom objects. Application developers can create custom sets of data and associate custom data for an organization, profile, or specific user. All custom settings data is exposed in the application cache, which enables efficient access without the cost of repeated queries to the database. Formula fields, validation rules, flows, Apex, and SOAP API can then use this data.

  • Anuj

    Member
    May 1, 2020 at 1:12 pm in reply to: How long is data stored in the recycle bin in Salesforce?

    15 days

  • Anuj

    Member
    April 30, 2020 at 1:11 pm in reply to: What is Duplicate Record Item in Salesforce?

    A duplicate record set is a list of items identified as duplicates. It's created when a duplicate rule or job runs. Let your Lightning Experience users merge duplicates by granting them access to duplicate record sets.

Page 14 of 19