Shweta
IndividualForum Replies Created
-
Shweta
MemberSeptember 17, 2020 at 4:47 pm in reply to: How to create custom metadata in Salesforce?<div>Follow these steps to create custom metadata :</div>1. Go to Setup ->Enter Custom Metadata in Quick find box -> select Custom Metadata Types
2. Click New
3. Enter Label and Plural label
4. Click Save
5. In the Custom Field Section, Click New -> Select Percent -> Click Next.
6. Enter field Label, Length -> Click Next -> Click Save. -
An import activity uses information from an outside file to update a subscriber list or data extension. If your account is integrated with a Salesforce account, use an import activity to create and populate a data extension with the data from a Salesforce object or report.
-
Shweta
MemberSeptember 16, 2020 at 7:09 pm in reply to: What is Multi org in the salesforce marketing cloud?Multi-org supports connections for one Marketing Cloud business unit to one Sales or Service Cloud org. It also supports many Marketing Cloud business units to one Sales or Service Cloud org. It doesn’t support connections for a single business unit to multiple Sales or Service Cloud orgs, or business units of multiple Enterprise 2.0 accounts to the same org. Multi-org supports various user mappings based on these business unit configurations.
-
Shweta
MemberSeptember 16, 2020 at 7:06 pm in reply to: What is Long code and its usage in Salesforce Marketing Cloud?We can use a long code to send and receive SMS messages. We can use long codes to reach multiple countries, depending on the region.
-
Shweta
MemberSeptember 16, 2020 at 7:04 pm in reply to: What is Short code and its usage in Salesforce Marketing Cloud?We can use a short code to send and receive SMS messages within the United States. Short codes are specific to a country.
-
Shweta
MemberSeptember 15, 2020 at 2:34 pm in reply to: What is meant by outbound change set in Salesforce?An outbound change set is a change set created in the Salesforce org in which you are logged in and that you want to send to another org. You typically use an outbound change set for customizations created and tested in a sandbox and that are then sent to a production org.
-
PushTopic events provide a secure and scalable way to receive notifications for changes to Salesforce data that match a SOQL query you define. We can use the push topic events to receive notifications of Salesforce record changes, including create, update, delete, and undelete operations.
-
Shweta
MemberSeptember 15, 2020 at 2:27 pm in reply to: Can we directly delete Apex Class from in Salesforce ?Apex classes cannot be deleted from a Salesforce production declaratively, unlike in sandbox org. This is because security for Apex in Salesforce production org is greatly increased. An Apex Class must be removed from a production instance if it's blocking a deployment or is no longer needed. Since Apex code can't be modified directly within a Production organization, it requires steps using Developer tools, like ANT Migration Tool.
-
Assuming you've already setup the page for SLDS styling:
<svg class="slds-icon slds-icon-text-default" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#announcement"></use>
</svg>
Description of icon when needed
-
Shweta
MemberSeptember 11, 2020 at 2:57 pm in reply to: How do I change the color of my lightning icon?Icons are created with no background color. The base .slds-icon class sets the fill color to white. You can change the color by changing the CSS fill property value. Use the .slds-icon-text-default class to make a utility icon the same color as the default text. .slds-icon-text-warning creates a yellow warning icon and .slds-icon-text-error can be used to make a red icon.
-
Assume you have, List<Account> accList and you want to convert this list into a map.
Create a map and pass this list.
Example: Map<Id, Account> accMap = new Map<Id, Account>(accList); -
Log in to the Marketing cloud:
1. visit this site "https://mc.exacttarget.com/cloud/" in your web browser.
2. Enter the username and password.
3. Click on the login button. -
Salesforce Social Studio is a product under the Salesforce Marketing Cloud that administers your marketing strategy across all social media channels. It helps businesses tap into the power of social media in their marketing, customer service, and sales organizations.
-
Shweta
MemberSeptember 10, 2020 at 3:50 pm in reply to: What is the difference between Salesforce Sales Cloud and Marketing Cloud?Salesforce Sales Cloud: The Sales Cloud puts everything you need at your fingertips—available anywhere. From Social accounts and contacts to Mobile, Chatter, and Analytics, collaboration across your global organization and getting deals done faster is not only possible, it's easy.
Salesforce Marketing Cloud: A unified marketing platform to know consumers, engage them, and personalize their experience. Email marketing automation connects interactions from any channel or device and combines customer data and behaviors to create real-time relevant communications. -
Shweta
MemberSeptember 9, 2020 at 2:03 pm in reply to: How do I change custom settings in Salesforce?Follow these steps to change the custom settings:
Go to SetUp -> Enter Custom Setting in Quick find box -> Select Custom Setting -> Click the name of the custom setting you'd like to change -> click on the Edit button. -
Shweta
MemberSeptember 9, 2020 at 1:56 pm in reply to: What is hierarchy custom setting in Salesforce?Hierarchy settings allow you to personalize your application for different profiles and users. The interface has baked-in logic that drills down into the org, profile, and user-level (based upon the current user) and returns the most specific or lowest value in the hierarchy. I've found hierarchy custom settings to be extremely useful for those "one-off" occasions. Only this setting is available in Workflow Rules and Validation Rules. This setting is easily fetched in Visualforce: {!$Setup.Setting__c.Field__c}.
-
Shweta
MemberSeptember 9, 2020 at 1:53 pm in reply to: What are the types of custom settings in Salesforce?Hierarchy Custom Settings: It uses a built-in hierarchical logic that allows you to customize settings for specific profiles or users and this logic evaluates the organization, profile, and user settings for the current user and returns the exact or lowest value in hierarchical rank. Only this setting is available in Workflow Rules and Validation Rules.
List Custom Settings: It is very similar to the way custom objects work. It provides a set of static data that can be accessed across your organization. If you want to avoid governor limits, put that data in a list custom setting. And in list custom settings, we can access that data without writing SOQL. -
Commit is the final stage for a transaction, where it saves data into the database which were there in temporary transactions. Transaction's picture gets over at this place.
-
The Forecast Category field in Salesforce classifies each sales opportunity in terms of the salesperson’s confidence in winning the deal in a given period. the Forecast Category on each deal is often determined by the opportunity stage. Opportunity owners can adjust the Forecast Category on each opportunity, based on how likely they think the deal is to close successfully. They can do this without changing the opportunity stage.
-
Rollback will help us to maintain transactions for DML statements. Suppose we have written multiple lines of DML statements in a try block, If any error occurs during DML Operations, the operation will be rolled back to the most recent save point and the entire transaction will not be aborted.
-
Shweta
MemberSeptember 7, 2020 at 3:59 pm in reply to: What is the use of newSObject(recordTypeId, loadDefaults) method in Salesforce ?newSobject(recordTypeId, loaddefaults): It is used to constructs a new sObject of this type, and optionally, of the specified record type ID and with default custom field values.
-
When you send an email to a data extension, the contacts will always be added to All Subscribers at the parent level. These subscribers are shared across the enterprise, however, you can hide/filter subscribers so only specific subscribers appear at the child business unit level. This is done using 'Business Unit Subscriber Filters'.
-
Multi-Org is an Enterprise 2.0 account configuration. This configuration allows individual Marketing Cloud business units to connect with a single Salesforce org, independent of the parent account or other business units.
Using Marketing Cloud Connect, this configuration includes two setup scenarios:
Multiple business units connected to multiple orgs. Multiple business units connected to a single org. -
Shweta
MemberSeptember 4, 2020 at 2:43 pm in reply to: How can we monitor Queueable Apex jobs in Salesforce?When we submit the job by invoking the System.enqueueJob method, the method returns the ID of the AsyncApexJob record. We can use this ID to identify your job and monitor its progress, either through the Salesforce user interface in the Apex Jobs page or programmatically by querying your record from AsyncApexJob.
-
Shweta
MemberSeptember 4, 2020 at 2:38 pm in reply to: What does Test.isRunningTest() identifies in the Apex class in Salesforce?Test.isRunningTest(): This method is used to identify if the piece of code being executed is invoked from a Test class execution or from other artefacts such as a Trigger, Batch Job etc. Returns true if the code being executed is invoked from a test class otherwise returns a false.
This method usually comes in handy, when you intend to conditionally restrict execution of certain Apex code blocks, based on whether they are being invoked from a test class or not.