Pooja
IndividualForum Replies Created
-
Pooja
MemberFebruary 23, 2020 at 4:16 pm in reply to: How to use picklist field in Visualforce page in Salesforce ?To show a list of values in Visualforce first create the Apex class And then display it on Visualforce page .
-
Pseudocode is sometimes used as a detailed step in the process of developing a program. Pseudocode in any language is detailed or user-friendly readable code description of what a computer program or algorithm do.
-
Pooja
MemberFebruary 21, 2020 at 2:46 pm in reply to: What is the difference between Professional and Enterprise edition in Salesforce?The Professional Edition allows up to 2 of each whereas the Enterprise Edition comes with unlimited options.
-
Pooja
MemberFebruary 21, 2020 at 2:42 pm in reply to: What is code coverage and what is the minimum code coverage for class and trigger in Salesforce?Code coverage tells us that how many executable lines of code in your classes and triggers have been exercised by test methods and the minimum code coverage for class and trigger in Salesforce is 75%
-
Pooja
MemberFebruary 21, 2020 at 2:38 pm in reply to: What is the importance of live chat in Salesforce?Live chat has the highest satisfaction rates among customer service channels.Live Chat is Used for Day to Day interactions with customers
-
Pooja
MemberFebruary 20, 2020 at 2:50 pm in reply to: What is the use of “FOR UPDATE” in Salesforce Object Query Language (SOQL)?For lock the record we can use of “FOR UPDATE” in Salesforce Object Query Language (SOQL)
-
Pooja
MemberFebruary 20, 2020 at 2:48 pm in reply to: How are lead assignment rules executed in Salesforce?Lead assignment rules allow us to automatically assign Leads to the appropriate queue or user. An assignment rule dictates to users or queues is assigned based on criteria that are specified within Salesforce.
-
Pooja
MemberFebruary 20, 2020 at 2:47 pm in reply to: Can We Make A Lightning Component That Shows Up In Both The Mobile And The Desktop User Interfaces ?Yes, we can make a lightning components that shows up in both the mobile and the desktop user interface.
-
Trigger Factory is a pattern that avoids bad practices such as: Repetitive SOQL queries that can exceed governer limit.
-
DispatchEvent is the last step of the create-init-dispatch process and it is used for dispatching events into the implementation's event model.
-
Pooja
MemberFebruary 18, 2020 at 2:40 pm in reply to: What is the difference between managed and unmanaged packages in Salesforce?In Salesforce, Managed packages are typically used by salesforce.com partners to distribute and sell applications to customers and on the other hand Unmanaged packages are typically used to distribute open-source projects or application templates to provide developers with the basic building blocks for an application. It is the main difference between managed and unmanaged packages.
-
DeepClone() is used to clone the list of object but don’t hold any reference.
-
Pooja
MemberFebruary 18, 2020 at 2:35 pm in reply to: What will happen if the Account is deleted in Salesforce?If the account is deleted then its child object(like-opportunity,contact) is also get deleted.
-
Dynamic Query refers to the creation of a SOQL string at run time with Apex code. Dynamic SOQL enables you to create more flexible applications.
-
The Breadcrumb component in Salesforce used to display the path of a page relative to a parent page.
-
Pooja
MemberFebruary 17, 2020 at 2:49 pm in reply to: What is aura definition bundle in Salesforce?A Lightning bundle is a folder that contains definition files. Unlike other metadata components, Unlike other metadata components, an AuraDefinitionBundle component isn’t represented by a single component file but instead by a collection of component definition files.
-
Pooja
MemberFebruary 17, 2020 at 2:48 pm in reply to: Can we create field in custom object containing some records with master detail relationship in Salesforce?No, We can not create a field in custom object containing some records with master detail relationship in Salesforce.
-
Pooja
MemberFebruary 17, 2020 at 2:45 pm in reply to: Move Custom Javascript Buttons to Salesforce1We have many custom javascript buttons in our org but we would not move these buttons to Salesforce so there is no specific way to do that.
-
Pooja
MemberFebruary 14, 2020 at 2:35 pm in reply to: How to display a message when the trigger finishes?No, it is not possible to display any message from a trigger directly.
-
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and associate custom data for an organization, profile, or specific user. The custom setting data can then be used by formula fields, validation rules, flows, Apex, and the SOAP API.
-
Pooja
MemberFebruary 14, 2020 at 2:16 pm in reply to: What is the default timeout period while calling webservice from Apex in Salesforce?10 Seconds is the default timeout period while calling webservice from Apex in Salesforce.
-
Pooja
MemberFebruary 13, 2020 at 12:58 pm in reply to: I want to delete a user in Salesforce. Can i do that.?No, you can not delete a user in Salesforce but you can deactivate the user account or you can freeze the account of that particular user.
-
Pooja
MemberFebruary 13, 2020 at 12:55 pm in reply to: Can we display the page message in the embedding Detail page from the Controller Extension?I create my list view buttons with this technique and as this uses seperate pages per button the page messages created in the Controller Extension seems to land in them and NOT in the displaying detail page.
-
The disconnectedCallback() lifecycle hook fires when a component is removed from the DOM(Data Object Model). It is just opposite of the connectedCallback().
-
Pooja
MemberFebruary 12, 2020 at 2:31 pm in reply to: What is the difference between git pull and git fetch in Salesforce?Git pull - In Salesforce, Git pull can update and merge any remote changes of the present branch you are on.
Git fetch - In Salesforce, Git fetch can update only the branch you are on, however not merge any changes in.