Prachi Agarwal
IndividualForum Replies Created
-
Prachi
MemberNovember 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.
-
Prachi
MemberNovember 7, 2019 at 2:13 pm in reply to: There is only 2 MDR allowed per object in Salesforce? How many custom levels it can have?Hi Laveena,
There is only 2 Master Detail Relationship allowed per object and it can have upto three custom detail levels.
Thanks.
-
Prachi
MemberNovember 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.
-
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.
-
Prachi
MemberNovember 7, 2019 at 5:41 am in reply to: What are the functionality that are available when customizing tasks in salesforce?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.
-
Prachi
MemberNovember 7, 2019 at 5:32 am in reply to: what are the record type that can be updated when converting a lead in salesforce?Hi Piyush,
The record type that can be updated when converting a lead include the existing opportunity record and the existing account record.
Thanks.
-
Prachi
MemberNovember 7, 2019 at 5:26 am in reply to: which setting can a system administrator control in the Salesforce user interface?Hi Piyush,
Settings can a system administrator control in the salesforce user interface are-
Enable enhanced list views
Enable hover details
Enable spell checkerThanks.
-
Prachi
MemberNovember 5, 2019 at 12:15 pm in reply to: Show Listview on Lightning Web Component same as Aura lightning:listView in Salesforce.Hi Payal,
Here is the solution to show the List view with Pagination and search with Lightning Web Components.Please check below link.
-
Prachi
MemberNovember 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-
Thanks.
-
Prachi
MemberNovember 5, 2019 at 5:25 am in reply to: What is the relationship between opportunity line item and pricebook entry in Salesforce?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.
-
Prachi
MemberNovember 4, 2019 at 6:43 am in reply to: What is the difference between Products and Opportunity Product in Salesforce?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.
-
Prachi
MemberNovember 4, 2019 at 4:53 am in reply to: Which objects are available when creating a custom report type for Chatter reports in Salesforce?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.
-
Prachi
MemberNovember 4, 2019 at 4:47 am in reply to: Is the Report Builder is different from the Report Wizard in Salesforce. How?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
MemberOctober 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
MemberOctober 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.
-
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.
-
Prachi
MemberOctober 7, 2019 at 12:28 pm in reply to: Why Can't I Assign an Approval Step to a Queue for a Custom Object Approval Process in salesforce?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.
-
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.
-
Prachi
MemberSeptember 27, 2019 at 11:04 am in reply to: What is the difference between lightning web component and lightning component in Salesforce?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
MemberSeptember 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
MemberSeptember 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.
-
Prachi
MemberSeptember 26, 2019 at 10:28 am in reply to: What are the use cases of inbound change and outbound change features in a Salesforce org?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
MemberSeptember 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.
-
Prachi
MemberSeptember 24, 2019 at 11:00 am in reply to: I am able to deactivate a user in salesforce. how to permanently delete a user from org?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
MemberSeptember 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.