Ratnesh
IndividualForum Replies Created
-
Ratnesh
MemberJuly 20, 2020 at 8:19 am in reply to: What is the use of force:hasRecordId interface in Salesforce?<b style="font-family: inherit; font-size: inherit;">force:<b style="font-family: inherit; font-size: inherit;">hasRecordId interface :- This interface is used to indicate that a component takes a record (SObject) as an attribute.
-
Ratnesh
MemberJuly 15, 2020 at 6:14 am in reply to: What are the type of events into Salesforce Lightning component in Salesforce?There are two types of events in the framework: Component events are handled by the component itself or a component that instantiates or contains the component. Application events are handled by all components that are listening to the event. These events are essentially a traditional publish-subscribe model.
-
Ratnesh
MemberJuly 15, 2020 at 6:14 am in reply to: What is Field filter validation exception in Salesforce ?This error appears when there is a lookup filter defined on an object and you modify it so that the update does not reflect the filter criteria. To fix this issue, check if any lookup filters are defined in the object and make sure any modifications are adhering to the filter criteria.
-
Ratnesh
MemberJuly 15, 2020 at 6:13 am in reply to: What is the basic difference between Application Event and Component Event?An application event is fired from an instance of a component. All. components that provide a handler for the event are notified.But its good practice to use the component events whenever possible instead of application events.
Component events are used to do communication between child and parent.
-
Ratnesh
MemberJuly 14, 2020 at 8:47 am in reply to: What's the difference between lightning flow and flow builder?Apex, but there's another automation tool Admins should have in their tool belts as well, called Flows. Flows, while purely a declarative tool, sit between Process Builder and Apex. In fact, Process Builder and Flows are both built on the same Salesforce feature called Lightning Flow.
-
Ratnesh
MemberJuly 14, 2020 at 8:47 am in reply to: What is the difference between Engagement Split & Decision Split in Salesforce?Engagement Splits send customers down one of two branches depending on their interactions with an email.
Decision Splits use data about customers to put them on the correct path through the journey. A decision split allows you to configure up to 20 paths using a contact's attributes as evaluation criteria. -
Ratnesh
MemberJuly 14, 2020 at 7:58 am in reply to: Can customers re-enter a Journey in Salesforce?Sometimes, customers can go through a journey multiple times but not at the same time. Re-entry anytime allows a contact to enter the journey multiple times and be in the journey at the same time.
-
No, it's a component-based framework.
-
Ratnesh
MemberJuly 13, 2020 at 9:04 am in reply to: What is the need of automate our business process by Salesforce?Automate Your Business Processes. Instead of relying on your users to perform each part of a business process, automate it! The benefits are two-fold: your users can spend their time on other tasks, and you can trust that the process is always done just so.
-
Ratnesh
MemberJuly 13, 2020 at 9:04 am in reply to: What are guided visual work experiences in Salesforce?Visual Workflow in Salesforce is a drag and drop interface that allows Salesforce user's to automate business processes by creating applications using Process builder without code.
-
Ratnesh
MemberJuly 10, 2020 at 6:44 am in reply to: Why are insights in the Unrelated category important in Salesforce?You quickly realize the power of the Unrelated section. It gives you deeper information about why something happened. In other words, it gives you more power to credit (or give constructive feedback to) the right people.
-
Ratnesh
MemberJuly 10, 2020 at 6:44 am in reply to: How many groupings can you have in a Compare Table in Salesforce?Each column has its own filters and measure, and some of the columns can be used to do calculations. You can also add up to four groupings that are applied to every column, as you'll see later. Let's create a compare table with the following columns. Contains all won opportunities.
-
Ratnesh
MemberJuly 10, 2020 at 6:44 am in reply to: Can a trigger call a batch class in Salesforce?you can only have five batch job running so calling batch from a trigger is almost certainly not a good idea. At a time only 5 apex batch jobs can be processed
-
Ratnesh
MemberJuly 9, 2020 at 6:35 am in reply to: What is the relation in contentversion and contentdistribution 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. This object record you don’t have to create. It gets created when you create ContentVersion which is the child of ContentDocument.
Content Version: Represents a specific version of a document in Salesforce CRM Content or Salesforce Files. In other words, this object stores document information similar like Attachment.
Now have a look on the relationship between these two objects below- enter image description here
Now ContentDocumentLink: This object will share the files with Users, Records, Groups etc. You can create multiple records to attach the same files under multiple records. -
Ratnesh
MemberJuly 9, 2020 at 6:33 am in reply to: How can we cover JSON deserialize in Test class in Salesforce?debug logs, then store it in string variable and then pass that variable in GetAPIKeyMoc, Then it will cover the uncovered lines of code. In simple words, It will cover json. deserialized object as required.
-
When you initiate an Apex method on an external object, a job is scheduled and placed in the background jobs queue. The BackgroundOperation object lets you view the job status for write operations via the API or SOQL.
-
The quote-to-cash (QTC) process encompasses many sales, account management, order fulfillment, billing, and accounts receivables functions. It considers the steps taken as your sales team configures a quote and drafts a proposal for a client, through to when payment is received for services rendered.
-
Ratnesh
MemberJuly 8, 2020 at 6:04 am in reply to: How can we deployed the classes from the sandbox to production in Salesforce?You don't need any software. Just write your unit test in the sandbox, create a Change Set, add the elements you wish to deploy, upload the Change Set, then log back in to production and make your deployment.
-
CPQ Salesforce, or Configure, Price, Quote Software by Salesforce is a sales tool for companies to provide accurate pricing with any given product configuration scenario.
-
Ratnesh
MemberJuly 7, 2020 at 5:59 am in reply to: What is meant by Aura definition bundle in Salesforce?Lightning Component Bundle. In Salesforce Lightning components, we can build applications by assembling components created by us and other developers. A component can contain other components, as well as HTML, CSS, JavaScript, or any other Web-enabled code. This enables to build apps with sophisticated UIs.
-
Represents a standard or custom field, providing row-based access to field metadata. Contrast FieldDefinition with EntityParticle, which represents each element of a field that can be presented in a user interface. FieldDefinition has parity with metadata type Field.
-
Ratnesh
MemberJuly 7, 2020 at 5:56 am in reply to: In What Order Do Methods Fire Within A Controller in Salesforce?The only rule is that setters fire before action methods.
-
A WSDL is an XML-document which contains a standardized description on how to communicate using a web service (the Salesforce API is exposed as a web service).
-
Object Relationships Overview. Create relationships to link objects with each other, so that when your users view records, they can also see related data. For example, link a custom object called “Bugs” to cases to track product defects that are associated with customer cases.
-
Hi Avnish, As SaaS is a subscription based, customers can always choose not to renew if they are dissatisfied. Customers can avoid a large initial investment in an IT infrastructure and day to day hustle of maintaining infrastructure. SaaS customer provides same provider infrastructure and also easy integration.