Forum Replies Created

Page 4 of 7
  • Prachi

    Member
    November 7, 2019 at 3:31 pm in reply to: what is roll-up summary fields and how its work in Salesforce?

    Hi,

    A roll-up summary field calculates values from related records, such as those in a related list. You can create a roll-up summary field to display a value in a master record based on the values of fields in a detail record. The detail record must be related to the master through a master-detail relationship.

    You can perform different types of calculations with a roll-up summary field. You can count the number of detail records related to a master record. Or, you can calculate the sum, minimum value, or maximum value of a field in the detail records.

    Thanks.

  • Hi Laveena,

    There is only 2 Master Detail Relationship allowed per object and it can have upto three custom detail levels.

    Thanks.

  • Prachi

    Member
    November 7, 2019 at 1:58 pm in reply to: What can be customized on page layouts in salesforce?

    Hi Laveena,

    Page layouts control the layout and organization of buttons, fields, s-controls, Visualforce, custom links, and related lists on object record pages. They also help determine which fields are visible, read only, and required. Use page layouts to customize the content of record pages for your users.

    Thanks.

  • Prachi

    Member
    November 7, 2019 at 11:42 am in reply to: How can we add chat feature to salesforce?

    Hi Piyush,

    From Setup, enter Apps in the Quick Find box, then select Apps. Click Edit next to the name of the Salesforce console app in which you want to set up Chat. Select Include Chat in this App . Choose the records or pages that you want to open as subtabs of chat sessions in the chat workspace.

    Thanks.

  • Hi Piyush,

    The functionalities that are available when customizing tasks in salesforce are-

    1. Record types ca be created for task

    2. Validation rules ca be created for task

    Thanks.

  • Hi Piyush,

    The record type that can be updated when converting a lead include the existing opportunity record and the existing account record.

    Thanks.

  • Hi Piyush,

    Settings can a system administrator control in the salesforce user interface are-

    Enable enhanced list views
    Enable hover details
    Enable spell checker

    Thanks.

  • Hi Payal,

    Here is the solution to show the List view with Pagination and search with Lightning Web Components.Please check below link.

    https://salesforcelightningwebcomponents.blogspot.com/2019/04/pagination-with-search-step-by-step.html

  • Prachi

    Member
    November 5, 2019 at 5:31 am in reply to: How can I write test class for a Salesforce lightning component?

    Hi Laveena,

    You can see the sample test class of lightning component controller in below link-

    https://salesforce.stackexchange.com/questions/181448/salesforce-lightning-component-controller-apex-test-class/183588

    Thanks.

  • Hi Laveena,

    1. OpportunitylineItem is junction object between opportunity and pricebookentry. As We need PricebookEntry Id and opportunity Id while creating OpportunityLineItems.

    2. PricebookEntry is a junction object between Product2 and PriceBook.As we need Product2 Id and PriceBook2 Id while creating PricebookEntries.

    Thanks.

  • Hi,

    Products are a catalog of products/items that you company can sell.  No pricing information (by default) is included, just description, category, code, etc.

    Opportunity Products are line items on an opportunity.  It will include pricing information for that particular order.  It's like a itemization of products that are included with your opportunity.

    Thanks.

  • Hi Piyush,

    Users, User Feed, Comments and Chatter Groups, Members  combination of objects are available when creating a custom report type for Chatter reports in salesforce.

    Thanks.

  • Hi Piyush,

    A report builder is a modified form of Report Wizard.  Report Builder, a powerful drag-and-drop editor, is the standard tool for creating and editing reports.Here you can customize the report easily, as you would be able to drag and drop the fields, arrange the columns on-the-go, and even see the preview of your report.

    The Report wizard is the old form of reports, where you had to choose the columns, the fields, etc separately before you see the preview or the final reports.

    Thanks.

     

  • Prachi

    Member
    October 9, 2019 at 4:41 pm in reply to: How can I change the salesforce logo used in sales and sales console?

    Hi Laveena,

    Click the down arrow next to Sales Console and click Edit. In the App Details & Branding section, update the following field.

    Thanks.

  • Prachi

    Member
    October 9, 2019 at 6:04 am in reply to: Campaign Members can be associated to which object in salesforce?

    Hi Piyush,

    Campaign members are created from lead, contact, or person account records.

    Thanks.

  • Prachi

    Member
    October 9, 2019 at 5:58 am in reply to: What is system and user mode ?

    Hi Saddam,

    System Mode:

    1. System mode is nothing but running apex code by ignoring user’s permissions. For example, if logged in user does not have create permission but they will able to create a record.
    2.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.
    3.In Salesforce, all apex code run in system mode. It ignores user’s permissions. Only exception is anonymous blocks like developer console and standard controllers. Even runAs() method doesn’t enforce user permissions or field-level permissions, it only enforces record sharing.

    User Mode:

    1.User mode is nothing but running apex code by respecting user’s permissions and sharing of records. For example, if logged in user does not have create permission they are not able to create a record.
    2.In User mode, Profile level permissions, field-level security, and sharing rules are applied for the current user.
    3.In Salesforce, only standard controllers and anonymous blocks like developer console run in user mode.

    Thanks.

  • Hi Deepak,

    You can assign approvals on a detail object to queues, but only if you create a queue that can own the master object. This may not be possible if the master object cannot be owned by a queue.

    Thanks

    • This reply was modified 5 years, 1 month ago by  Prachi.
  • Prachi

    Member
    September 27, 2019 at 11:39 am in reply to: What is @api in LWC?

    Hi,

    To expose a public property, decorate it with @api. Public properties define the API for a component. An owner component that uses the component in its markup can access the component’s public properties. Public properties are reactive. If the value of a reactive property changes, the component’s template rerenders any content that references the property.

    Thanks.

  • Hi,

    Lightning web component component requires a folder to host all component files. The folder sits on the root /lwc folder which hosts all theLightning web component . You start by creating a folder before creating other files. Unlike when you created a Lightning Component and it created all files for you, in this case you will need to start manually creating it.

    Thanks.

  • Prachi

    Member
    September 27, 2019 at 10:47 am in reply to: What is the use of @track in lightning web component?

    Hi,

    To track a private property’s value and rerender a component when it changes, decorate the property with @track. Tracked properties are also called private reactive properties.

    You can use a tracked property directly in a template. You can also use a tracked property indirectly in a getter of a property that’s used in a template.

    You can use @track to decorate a property only; you can’t use it to decorate an object. You can decorate multiple properties with @track, but each property can have only one decorator.

    Thanks.

  • Prachi

    Member
    September 27, 2019 at 5:32 am in reply to: How can we mass delete reports in Salesforce?

    Hi,

    In Setup, under Data Management > Mass Delete Records, select Mass Delete Reports and configure a filter to find reports that need to be deleted. Reports that you delete go into the recycle bin. They aren’t permanently deleted until you clear your recycle bin.

    Thanks.

  • Hi,

    When you want to send customizations from your current org to another org, create an outbound change set. Once you send the change set, the receiving org sees it as an inbound change set.

    Thanks.

  • Prachi

    Member
    September 26, 2019 at 10:20 am in reply to: How to schedule a batch class in the same batch class in Salesforce?

    Hi,

    We can write both batch and schedule in one class as both are interface we can implement more then one interface in one class which is basically known as multiple inheritance .
    You can try like below-

    global class BatchAndSchedule implements Schedulable,Database.Batchable<sObject>{
    global Database.QueryLocator start(Database.BatchableContext BC){
    String query = 'SELECT Id,Name FROM Account';
    return Database.getQueryLocator(query);
    }
    global void execute(Database.BatchableContext BC, List<Account> scope){
    for(Account acc : scope){
    acc.Name = acc.Name +'ManojBatch';
    }
    update scope;
    }
    global void finish(Database.BatchableContext BC){ }
    global void execute(SchedulableContext scon) {
    Database.executeBatch(new BatchAndSchedule(),100);
    }
    }

    Thanks.

  • Hi,

    You cannot delete users from Salesforce. You can remove their license or deactivate them to remove access to the system, but because they may still own records, they cannot be deleted.

    Thanks.

  • Prachi

    Member
    September 24, 2019 at 9:04 am in reply to: How many custom levels are allowed per object in salesforce?

    Hi Laveena,

    Three custom levels are allowed per object in salesforce.

    Thanks.

Page 4 of 7