Forum Replies Created

Page 6 of 8
  • Udit

    Member
    April 7, 2020 at 3:49 pm in reply to: What do profiles control in Salesforce?

    Hello Ayush,
    Profile controls all the CRED operations and also it tells us what objects, fields tabs, applications, etc can a user has access to.

  • Udit

    Member
    April 6, 2020 at 3:24 pm in reply to: What is Compact Layout in Salesforce?

    Hello Mohit,
    Compact Layout is the layout that displays the fields or details of records in the highlight panel in Salesforce mobile app. Up to first seven fields appears in the highlight panel of any record.

  • Udit

    Member
    April 6, 2020 at 3:03 pm in reply to: What is a seeAllData=true in test class in Salesforce?

    In Apex test classes every time we need to create a new set of data for your test class. But some objects we can't create a data for testing. for example Profiles. we can't create profiles in test classes. so we will query the profiles and assign to users.

  • Hello Anuj,
    If you have an Apex class or controller, It has a Private or Protected variable or methods or inner classes, so you can't access them in other classes. But using this @testVisible annotation in a Private or Protected variable or methods or inner classes safely expose them only for test classes.

  • Udit

    Member
    April 3, 2020 at 2:53 pm in reply to: What is Exacttarget in salesforce Marketing Cloud?

    ExactTarget was the company that Salesforce acquired in 2013 and it was named Salesforce Marketing Cloud in 2014.

  • Udit

    Member
    April 3, 2020 at 2:48 pm in reply to: What is custom profile center in Salesforce marketing cloud?

    Hello Manish,
    Profile centers are default link available in the emails which we send via marketing cloud. This link redirects the user/subscriber to the webpage which contains information of that specific user.
    In the detailed webpage, subscriber sees all the attributes that are defined in your account and are not marked as hidden.
    We can create a custom profile center by using AMPscript in the marketing cloud.

  • Udit

    Member
    April 3, 2020 at 2:36 pm in reply to: What is activities in Salesforce marketing cloud?

    Activities are present in automation studio in marketing cloud which represents the activities we are going to use in automation studio to perform automation.
    Types of activities we have in marketing cloud:
    1. Send email
    2. Import file
    3. File transfer
    4. Data extract
    5. SQL query
    6. Filter

  • Udit

    Member
    February 6, 2020 at 3:45 pm in reply to: How can I schedule an Apex class in Salesforce?

    Hello Kirandeep,

    We can do this by creating an apex schedule class first as following:

    // Apex Schedule Class
    global class ScheduleBatchApex implements Schedulable {
    global void execute(SchedulableContext sc) {
    className b = new className();
    database.executebatch(className);
    }
    }

    After this follow the below steps to schedule apex class:

    1. Search apex classes in setup
    2. After selecting apex classes, click schedule apex button.
    3. Select label of schedulable class and select schedule class which you have created from lookup.
    4. Define frequency and time on which you want your class to be scheduled.
  • Standard objects and standard fields permission and user permissions are the permissions that can be included in change set in Salesforce.

  • Udit

    Member
    February 6, 2020 at 1:45 pm in reply to: Why trigger is Preferred over Process Builder in Salesforce?

    Hello Anuj,

    Via process builder we can only perform below actions like:

    1. Create a record of any object type
    2. Update any related record—not just the record or its parent
    3. Use a quick action to create a record, update a record, or log a call
    4. Invoke a process from another process
    5. Launch a flow—you can’t schedule this action with workflow
    6. Send an email
    7. Send a custom notification
    8. Post to Chatter

    If we want to perform any other actions apart from above actions, then we use trigger in Salesforce.

  • Udit

    Member
    February 5, 2020 at 6:22 pm in reply to: What is a bucket field in reports in Salesforce?

    Bucket field in reports are used to do categorization of our data. In bucket fields we can specify a range and a value corresponding value to that range.

    By using bucket field there is no need to create formula field to categorize our data.

  • Udit

    Member
    February 5, 2020 at 6:16 pm in reply to: What is campaign ROI analysis report in Salesforce?

    Hello Kirandeep,

    ROI stands for Return on Investment.

    In Salesforce campaign ROI analysis report is present in campaign reports folder and it calculates our campaign's performance by return on investment and average cost.

  • Process builder is advance version to perform automation tasks in Salesforce.

    In workflow we can only perform 4 actions but in process builder we have more actions like creation of record, submit for approval etc.

    Process builder is better to use because in process builder we can have multiple if then statements to perform our task.

    If we have to send outbound message then we can't use process builder. This action is present in workflow.

  • Standard Fiscal year follows the Gregorian calendar and starts on the First day of month we choose.

    Custom Fiscal year defines the structure we define.

  • No, this can't be possible as dashboard will show the data according to the component we are adding to dashboard.

    But we can add up to 20 components having different reports to show different data.

  • Udit

    Member
    February 4, 2020 at 1:52 pm in reply to: How Access To Reports And Dashboard Is Controlled In Salesforce?

    Hello Sumit,

    Access to reports and dashboards in Salesforce is controlled by parent folder access in which they are getting stored.

  • Udit

    Member
    February 3, 2020 at 3:03 pm in reply to: Can we extend any component in Salesforce Lightning ?

    Hello Kirandeep,

    Yes, we can extend any component in Salesforce Lightning. In aura:component tag we need to set value of 'extensible' attribute as true to achieve this.

  • Udit

    Member
    February 3, 2020 at 2:32 pm in reply to: What are cases and solution in Salesforce?

    Hey Pooja,

    Case in Salesforce can be defined as customer's/user's query, feedback or issue related to any particular topic and detailed description of issue or resolution of issue can be described as solution in Salesforce.

  • Udit

    Member
    February 3, 2020 at 2:28 pm in reply to: How to change Opportunity Owner in Salesforce?

    Hello Ratnesh,

    If you have the right permission for opportunity object/records then you can change the opportunity owner from the opportunity detail page by selection change owner option.

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

    Member
    January 31, 2020 at 1:38 pm in reply to: Whats is With Sharing and Without sharing class in Salesforce?

    Hello Manish,

    With sharing enforces the sharing setting of the class to user-level and in without sharing which is by default in a class runs in system mode without any sharing settings.

    • This reply was modified 4 years, 9 months ago by  Forcetalks.
  • No, we can't change this for standard objects in Salesforce. Grant access using hierarchies is by default active for standard objects.

  • Udit

    Member
    January 31, 2020 at 12:55 pm in reply to: Why we use the method of our Salesforce Test class to be Static and Void?

    Hello Anjali,

    By creating our method static and void in Test class, we don't need to create any object of that class. We just directly call the method from the class name.

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

    Member
    January 30, 2020 at 2:56 pm in reply to: What is the lightning:card and how to use it in Salesforce Lightning?

    The lightning card consists of Header, body, and footer. We use lightning:card to form a container around a piece of information related to single or multiple items.

     

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

    Member
    January 30, 2020 at 2:33 pm in reply to: Is it possible to delete Salesforce Reports in mass?

    Hello Anjali,

    Yes, It is possible to delete mass reports in Salesforce. This feature comes after the summer 14 release.

    In the setup, under Data Management > Mass Delete Records, select Mass Delete Reports and by selecting an appropriate filter we can mass delete reports.

    Only those reports can't be deleted which are scheduled or are getting used in dashboards or analytic snapshots.

    • This reply was modified 4 years, 9 months ago by  Forcetalks.
  • Hello Arun,

    Aura:iteration tag lets us iterate over an array or collection of items in Salesforce.

     

    • This reply was modified 4 years, 9 months ago by  Forcetalks.
Page 6 of 8