Anjali
IndividualForum Replies Created
-
Anjali
MemberSeptember 18, 2020 at 11:14 am in reply to: How Business unit name field in Salesforce MC package gets populated?Please refer the below link-
https://help.salesforce.com/articleView?id=mc_dm_configure_account_authentication.htm&type=5 -
Anjali
MemberSeptember 18, 2020 at 11:11 am in reply to: What does the Salesforce Marketing Cloud package consists of?A bundling of one or more components, including a Marketing Cloud app, Journey Builder entry sources and activities, and API Integrations. A package is installed from AppExchange or created in Marketing Cloud. Unique identifier for the package. The package ID was called App ID in App Center.
-
Enable developers to use this common interface to build loosely coupled integrations between Apex classes or triggers.
-
Anjali
MemberSeptember 17, 2020 at 1:52 pm in reply to: How to get all the required fields of sObject dynamically in Apex?public class ControllerClassName{public List<String> strList { get;set; }public void autoRun(){Map<String, Schema.SObjectField> objectFields = Schema.getGlobalDescribe().get('Account').getDescribe().fields.getMap();strList = new List<String>(objectFields.keySet());}}
-
- Determine the metadata type of the components you want to delete and the fullName of each component to delete. You can delete only components of the same type in a single call.
- Invoke the deleteMetadata() call. For the first argument, pass in the name of the metadata type.
-
Custom Controller: A custom controller is a class written in Apex that implements all of a page logic.
- If we use custom controller, we can define new navigation elements or behaviors, but we must also reimplement any functionality that was already provided in a standard controller.
-
Record types are used to display different picklist values and page layouts to different users based on their profiles.
-
Anjali
MemberSeptember 16, 2020 at 6:53 am in reply to: How to make the Record type as default in Salesforce?By using profiles.
Go to the particular profile and by using Record Type Settings we can make the Record types as default. -
Anjali
MemberSeptember 15, 2020 at 1:59 pm in reply to: How does Application event different from browser event in Salesforce?Please refer the below link-
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/events_application.htm -
Anjali
MemberSeptember 15, 2020 at 1:47 pm in reply to: How do I create a streaming channel in Salesforce?Please refer the following link-
https://developer.salesforce.com/docs/atlas.en-us.api_streaming.meta/api_streaming/create_a_streaming_channel.htm -
Anjali
MemberSeptember 15, 2020 at 1:39 pm in reply to: Can we directly delete Apex Class from production in Salesforce ?No you cannot delete an Apex class from production directly.
-
Anjali
MemberSeptember 14, 2020 at 2:33 pm in reply to: What is Lightning Design system in Salesforce?Style guides and modern enterprise UX best practices to build pixel perfect apps that match the look and feel of the Lightning Experience and Salesforce1 Mobile app.
-
Anjali
MemberSeptember 14, 2020 at 2:31 pm in reply to: What are the types of events in Salesforce lightning component?- Application Event – Scope of this event is throughout the lightning App and any component which has registered for this event would get a notification.
- Component Event– Scope of this event is within itself or the parent component of this event, all the components declared within the parent component would get notified of this event.
- System Event- these are the events fired by Salesforce’s system during the lifecycle of the lightning app.
-
Anjali
MemberSeptember 14, 2020 at 2:31 pm in reply to: Which interface implement lightning component as a tab in Salesforce?We need to implement the following “force:appHostable” so that we can use the component as a Tab.
-
By using Clone() method on that sObject
-
Anjali
MemberSeptember 11, 2020 at 2:38 pm in reply to: How do I change the color of my lightning icon?By changing the CSS fill property value
-
Please refer the below link-
https://www.biswajeetsamal.com/blog/lightning-icons-in-visualforce-page/ -
Anjali
MemberSeptember 10, 2020 at 6:20 am in reply to: When do we use this test.isrunningtest() in Apex class methods?It is used when we need to run different code depending upon whether it was called from a test class.
-
Anjali
MemberSeptember 10, 2020 at 6:13 am in reply to: How do you get the recordTypeId in Salesforce apex?Please refer the below link-
https://developer.salesforce.com/forums/?id=906F0000000937iIAA -
Anjali
MemberSeptember 10, 2020 at 6:02 am in reply to: What is difference between journey and Automation in salesforce marketing cloud?Journey builder offers built-in goal reporting, while automation Studio does not.
-
Anjali
MemberSeptember 7, 2020 at 12:27 pm in reply to: How to Create fake response in Test Class in Salelsforce? -
Anjali
MemberSeptember 7, 2020 at 12:23 pm in reply to: How to parse Map of string and object in Salesforce?Please refer the below link-
https://salesforce.stackexchange.com/questions/27165/how-do-i-parse-a-json-map-into-an-apex-map -
The Apex Flex Queue page lists all batch jobs that are in Holding status. You can view information about the job, such as the job ID, submission date, and Apex class.
-
Anjali
MemberSeptember 4, 2020 at 10:14 am in reply to: Can we write trigger on Custom Setting in Salesforce?Please refer the below link-
https://developer.salesforce.com/forums/?id=906F00000008ybCIAQ -
Anjali
MemberSeptember 4, 2020 at 10:11 am in reply to: How to query Custom setting in Apex in Salesforce?You can query them like custom objects.Suppose you have a custom setting named as 'Custom_Setting__c' .So if you want it in your class then query it like [SELECT id, Name FROM Custom_Setting__c].