Forum Replies Created

Page 5 of 8
  • Udit

    Member
    April 22, 2020 at 2:15 pm in reply to: Difference between Process-builder and trigger in Salesforce?

    Anuj, with the help of process builder, we can perform the following actions:

    1. Create and update records.
    2. Send an Email alert.
    3. Submit a record for approval.
    4. Invoke a process from another process.
    5. Launch a flow.
    6. We can call apex methods.
    7. Post to chatter

    Process builder is bounded to perform only these actions, If we want to perform any other action than above, we use a trigger. We can customize anything in Salesforce using a trigger. Deletion of a record is not possible via process builder and workflow but with trigger, we can delete a record.

  • Udit

    Member
    April 21, 2020 at 3:50 pm in reply to: Can We Mass Delete Reports Using Apex (anonymous Apex) in Salesforce?

    Hello there,
    Answer to your question is No as we can not mass delete reports using Apex but we can mass delete reports under the Data management section in Setup.

    • This reply was modified 4 years, 7 months ago by  Udit.
  • Udit

    Member
    April 21, 2020 at 3:44 pm in reply to: How can you expose an Apex class as a REST WebService in Salesforce?

    We can expose an Apex class as a REST web service by writing @RestResource on the top of the class and also giving the URL address in the parameters which will be used with the complete URL to hit on the REST class.
    @RestResource(urlMapping='/getAccount/*')

  • Record types are used to distinguish business processes, fields, page layouts for object and Pag layouts are the layouts which have been assigned to any object and we can view fields as per the assigned layout.

  • Udit

    Member
    April 21, 2020 at 3:32 pm in reply to: What is a use case for Salesforce Connect?

    Hi Pooja,
    Salesforce Connect is used to connect Marketing cloud with the Sales or Service Cloud. It is used to synchronizing Salesforce data into Marketing Cloud and Sales Cloud.

  • Udit

    Member
    April 20, 2020 at 2:34 pm in reply to: What is Lead Nurturing in marketing Cloud?

    Lead nurturing is a process to nurture leads in Salesforce in such a way that we can continue to have a better relationship with our existing customers and new customers as well.
    There are lots of ways we can nurture out leads using automation software and also providing loyalty scores to the customer as they begin further in the marketing/sales journey. We can use journey builder for this as well.

  • Udit

    Member
    April 20, 2020 at 2:21 pm in reply to: What is Self-Relationship?

    Self-relationship acts as a lookup relationship between the same object. For example, Account has a field "Parent Account" which is self-relationship.

  • Udit

    Member
    April 20, 2020 at 2:15 pm in reply to: What can cause data loss in Salesforce?

    1. Changing data types of fields can cause data loss in Salesforce.
    2. Deletion of files unknowingly through code can result in data loss.

  • Udit

    Member
    April 16, 2020 at 4:02 pm in reply to: How do you qualify leads in Salesforce?

    Ratnesh,
    In Salesforce, we can qualify a lead by analyzing our buyer's profile. If our buyer's seems to have an interest in our service and also his/her intentions are to purchase from us, then we can qualify that record as a qualified lead.

  • Udit

    Member
    April 16, 2020 at 3:28 pm in reply to: Standard Price-Book and Custom Price-Book in Salesforce?

    Hello Anuj,
    Both contain the price list of the products. In Salesforce, there can be only 1 standard price book and multiple custom price books. Standard is the default price book for the product and in custom, we can define our own prices as per our requirement.
    For example, a product has a standard price of 100 in the collection of products but I want it different for some other location and for this I can create a custom price book for all the products.

  • Udit

    Member
    April 16, 2020 at 3:14 pm in reply to: How is trigger is different from workflow in Salesforce?

    Workflow only provides us 4 types of automation action to perform but with the help of trigger, we can customize our action like deleting a record, which is not possible with workflow.

  • Udit

    Member
    April 15, 2020 at 2:44 pm in reply to: Parallel approval process in Salesforce?

    Hello Anuj,
    Yes, it is possible.
    Parallel approval process simply means sending multiple approval requests in one approval.
    The approver can be specific users, a queue or related user in the record.

  • Udit

    Member
    April 15, 2020 at 2:36 pm in reply to: Which case submission process leverages Apex email services?

    I am not sure but I think On-demand Email-to-Case process leverages Apex email services.

  • Udit

    Member
    April 15, 2020 at 2:33 pm in reply to: Can we create a field on Person Account directly ?

    No Kirandeep, we can't.
    We need to create a field on the contact which will act as a person account's field.

  • Udit

    Member
    April 14, 2020 at 3:44 pm in reply to: Can we schedule a dynamic dashboard in Salesforce?

    Hello Kirandeep,
    Dynamic dashboards show the data as per the login user. By enabling dynamic dashboards, we are giving user-specified data access to the user.
    Dynamic dashboard depends upon the login user so it is not possible to schedule it.

  • Udit

    Member
    April 14, 2020 at 3:39 pm in reply to: What is managed package in Salesforce?

    Basically packages in Salesforce are divided into two categories, managed and unmanaged packages.
    The managed package is the package which one gets published can't be edited by the user and in the unmanaged package one can do modifications by installing the unmanaged package in their own org.

  • Hello Shweta,
    All of the above tools come under automation in Salesforce but there are many differences among them.
    Workflow is used to perform only 4 actions automatically and is based on a single if-then condition.
    Workflows actions:
    1. Assign task
    2. Email alerts
    3. Field updates
    4. Outbound message

    Process builder is the advanced version of workflow and can work upon multiple if then conditions and also there are many more actions available in Process builder.
    Process Builder actions:
    1. Create and update records
    2. Send an Email alert
    3. Submit a record for approval
    4. Invoke a process from another process
    5. Launch a flow
    6. We can call apex methods
    7. Post to chatter
    <b style="font-family: inherit; font-size: inherit;">
    <b style="font-family: inherit; font-size: inherit;">Visual Workflow can execute business processes, interact with the database, invoke Apex classes (an Apex class implements the Process.Plugin interface), and create a series of screens to take user input in order to collect and update data in Salesforce; Flows can also be built with no user interface to allow them to be run from automated processes.

  • Udit

    Member
    April 13, 2020 at 3:30 pm in reply to: What is default batch size if we enable bulk API?

    Ratnesh, default batch size is 200 in Salesforce but if we enable Bulk API, the default batch size gets increased to 2000.

  • Udit

    Member
    April 13, 2020 at 3:26 pm in reply to: Change Text field to Picklist in Salesforce

    Hi Marziya,
    Yes, we can convert our field type from text to picklist in Salesforce but there might be the possibility of data loss. So in order to prevent any data loss, it is suggested that only convert custom fields for which no data exists or you risk losing your data.

  • Udit

    Member
    April 13, 2020 at 3:22 pm in reply to: What is Approval Process in Salesforce?

    Hello Anuj,
    An approval process is an automated process that is used to get approval or rejection for the records in Salesforce. Is has many steps for the record like initial submission, rejection, approval, etc. One can assign a manager or any other person to be the approver.An approver can approve or reject the request based on the requirement.

    • This reply was modified 4 years, 7 months ago by  Udit.
  • Udit

    Member
    April 9, 2020 at 2:35 pm in reply to: How are bucket fields used in Salesforce?

    Hello Anjali,
    Below are the steps to create bucket field in Salesforce report:
    1. In the report tab click on the “New Report” button
    2. Select a “Lead” or any other object and then create a new report
    3. Here you will find the bucket field in the top of list of fields
    4. Add this “Bucket Field” into your report
    5. Here you will get a popup window called “Edit Bucket Field”. Select the lead status in your source column. Click on the “New Bucket” button, create your criteria field “Open – Working”. Select two criteria “Open And Working” status
    6. Move this field into “Open And Working” Criteria
    7. Same process for close –converted and closed-Not converted field. Create a “New Bucket Closed” and drag these two closed fields into your closed bucket field. Click “OK” and then select the report as a “Summary Report”
    8. Lastly you will get your report which is separated on the basis of “Open-working” and “Closed” status of bucket field

  • Udit

    Member
    April 9, 2020 at 2:10 pm in reply to: What is TAB in Salesforce?

    Hello Sumit,
    Tab basically provides UI for the object. If we have to access an object in Salesforce then we need a tab to do it.

  • Udit

    Member
    April 9, 2020 at 1:22 pm in reply to: What are the three types of object relationships in Salesforce?

    Hello Pooja,
    I hope my blog will help on the question of yours: https://www.forcetalks.com/blog/different-types-of-relationships-in-salesforce/

  • Udit

    Member
    April 7, 2020 at 3:55 pm in reply to: How record sharing done in Salesforce?

    Hello Aditya,
    Record-level Sharing/Security lets you give users access to some object records, but not others. To specify record-level security, set your organization-wide sharing settings, define a hierarchy, and create sharing rules.
    There are the following ways we can share records between users:
    1. OWD(Organization Wide Defaults)
    2. Role Hierarchy
    3. Sharing settings
    4. Manual Sharing

  • Udit

    Member
    April 7, 2020 at 3:52 pm in reply to: What is the use of marketing cloud in Salesforce?

    Hello Pooja,
    ExactTarget is the company which was acquired by Salesforce and named as their own Marketing Cloud. In the marketing cloud, we can create journeys, templates, automation, etc, for our customers. It helps companies to maintain and manage their marketing process.

Page 5 of 8