Anuj
IndividualForum Replies Created
-
Anuj
MemberMay 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
MemberMay 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
MemberMay 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
MemberMay 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
-
Please follow the below link:
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_json_jsongenerator.htm -
Anuj
MemberMay 11, 2020 at 2:03 pm in reply to: What is the difference between isNotEmpty() and isNotBlank() 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
-
Anuj
MemberMay 8, 2020 at 2:52 pm in reply to: what is the use of getRecordTypeInfosByDeveloperName() function in SalesforceIt 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.
-
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
MemberMay 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).
-
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
-
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.
-
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
-
Anuj
MemberMay 6, 2020 at 2:19 pm in reply to: How can FLS be ensured while working on the Lightning Component in Salesforce?Hi ,Marziya please follow the below link
https://www.forcetalks.com/salesforce-topic/how-to-ensure-fls-while-working-with-lightning-component/ -
Anuj
MemberMay 6, 2020 at 2:16 pm in reply to: Is it possible to make a Lightning Component that shows up in mobile and desktopYes 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.
-
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
MemberMay 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.
-
AMPscript can include numeric and string constants. ... Boolean constant values must use true or false and are case-insensitive.
-
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
MemberMay 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 -
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.
-
Anuj
MemberMay 4, 2020 at 1:58 pm in reply to: What are the components of Field Service Lightning in Salesforce ?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. -
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
-
Anuj
MemberMay 1, 2020 at 1:20 pm in reply to: How we can create instance for custom setting in Apex Text Class in Salesforce?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
MemberMay 1, 2020 at 1:12 pm in reply to: How long is data stored in the recycle bin in Salesforce?15 days
-
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.