Ratnesh
IndividualForum Replies Created
-
Ratnesh
MemberMay 13, 2020 at 5:21 AM in reply to: What are the limit of one day mail outSide the Salesforce?Each org can send 5,000 single emails per day to external email addresses. "External emails" refers to any email that's not associated to a contact, lead, or user. There will be no limit for single emails sent to users, contact and leads.
-
Pre-built fields known as standard fields
-
Ratnesh
MemberMay 12, 2020 at 2:53 PM in reply to: What can cause Salesforce data loss in Salesforce?Data loss may cause due to following reasons: Changing data and date-time. Altering to percent,number and currency from other data types. Changing from multi-select picklist, checkbox, auto number to other types.
-
Ratnesh
MemberMay 12, 2020 at 2:53 PM in reply to: What is the use of Semi Join and Anti Join Relationships in Salesforce?Semi Join and Anti Join are used to to enhance the functionality of parent-to-child queries and child-to-parent queries in Salesforce Object Query Language and also they they are useful in create child-to-child relationships.
-
ORO stands for “Object Relationship Overview”
-
Ratnesh
MemberMay 11, 2020 at 7:57 AM in reply to: What does a custom object permit the user to do in Salesforce?Navigate to Setup >> Administration Setup >> Manage Users >> Profiles, click on Clone next to the standard user profile.
-Enter a profile name and click on Save. ...
-Select Object Settings and the required object from the list.
-Then click on Edit, and assign view or modify all data permissions to this custom object. -
System mode is nothing but running apex code by ignoring user's permissions. ... In system mode, Apex code has access to all objects and fields permissions, field-level security, sharing rules aren't applied for the current user. This is to ensure that code won't fail to run because of hidden fields or objects for a user.
-
Returns the nearest number to a number you specify, constraining the new number by a specified number of digits.
Syntax:-
round(number, numberOfDigits) -
Schema Namespace. The Schema namespace provides classes and methods for the schema metadata information. The following are the classes in the Schema namespace. ChildRelationship Class. It contains methods for accessing the child relationship as well as the child sObject for a parent sObject.
-
A sObject Token is simply a reference to an SObject. It is mainly used when we are not sure about the SObject we are using, We can call the getSObjectType() to get the token for a particular SObject using which we can refer that SObject.
-
An escalation rule automatically reroutes a case and can notify a user if the case remains open after a certain period of time has passed. With an escalation rule, you can: Choose to escalate a case to a queue or to another user.
-
Ratnesh
MemberMay 6, 2020 at 6:37 AM in reply to: What makes Salesforce.com SaaS and Force.com PaaS?Salesforce is a SaaS product, which contains in-built Out of Box (OOB) functionalities that enables a CRM system to automate your sales, marketing, services, etc
-
A URL 'hack' is taking the standard URL that Salesforce constructs when it creates a new record and enhance it with additional parameters to populate the required fields. Here are the steps to construct a URL hack and use it by overriding a new button to create a new record and populate a number of fields.
-
isNotEmpty(inputString) Returns true if the specified String is not empty ('') and not null; otherwise, returns false.
-
The role hierarchy automatically grants record access to users above the record owner in the hierarchy. This option is enabled for all objects by default.
-
Ratnesh
MemberMay 5, 2020 at 6:10 AM in reply to: What is hierarchy type custom settings in Salesforce?A type of custom setting that uses a built-in hierarchical logic that lets you “personalize” settings for specific profiles or users. The hierarchy logic checks the organization, profile, and user settings for the current user and returns the most specific, or “lowest,” value.
-
In Salesforce, reports are created by first selecting a report type. A report type is a template which defines the objects and fields that will be available to use in the report you create. ... Report types can be created to include both custom and standard objects and fields.
-
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
-
Ratnesh
MemberMay 4, 2020 at 6:40 AM in reply to: Why @AuraEnable is used in API callout in Salesforce?@AuraEnabled on Apex instance methods and properties to make them serializable when an instance of the class is returned as data from a server-side action.
-
Immediate actions , like their name suggests, are executed as soon as the workflow rule finishes evaluating the record. Add a Time-Dependent Action to Your Workflow Rule. Time-dependent actions are executed at a specific time, such as 10 days before a record's close date.
-
Ratnesh
MemberMay 1, 2020 at 4:47 PM in reply to: What is time dependent action workflow in Salesforce?Time-Dependent Action: Time-Dependent actions execute at a specific time defined by you, such as sending an Email alert after 24 hours of lead creation if the lead is not contacted. When the specified time passes, workflow rule re-evaluates to check that record still meets the rule criteria
-
Salesforce data migration is defined as the process of moving Salesforce data to other platforms where required. The migration is an opportunity to cleanse the data and the data should demonstrate the following characteristics: Complete- All necessary details should be contained for all users
-
Ratnesh
MemberApril 29, 2020 at 5:35 AM in reply to: What is the feature of Lightning Bolt in Salesforce?A Lightning Bolt Solution is a portable package that's packed with power. It can combine custom Lightning apps, business process flows, and Lightning Community templates and pages in an easy-to-build and distributable form.
-
A field set is a grouping of fields for an object. Creating field sets in Salesforce is an easy way to dynamically query fields and dynamically binding the fields to display field sets on your Visualforce pages which can save you a big chunk of time.
-
A free tool from Apache that can be used for scripting build operations and in the case of Salesforce, retrieve and deploy one Salesforce org's metadata to any other org. ANT uses XML instructions to perform the appropriate operation like deploy, retrieve, list metadata and so on