Forum Replies Created

Page 8 of 24
  • Shweta

    Member
    September 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.

  • Shweta

    Member
    September 17, 2020 at 4:37 pm in reply to: What is imports in SFMC ?

    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

    Member
    September 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

    Member
    September 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

    Member
    September 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

    Member
    September 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.

  • Shweta

    Member
    September 15, 2020 at 2:29 pm in reply to: What is push topic in Salesforce?

    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

    Member
    September 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.

  • Shweta

    Member
    September 11, 2020 at 2:59 pm in reply to: How do I add icons to Visualforce page?

    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

    Member
    September 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.

  • Shweta

    Member
    September 11, 2020 at 2:35 pm in reply to: How to convert List to a map?

    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);

  • Shweta

    Member
    September 10, 2020 at 3:59 pm in reply to: How do I log into my marketing cloud?

    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.

  • Shweta

    Member
    September 10, 2020 at 3:52 pm in reply to: Is social studio part of marketing cloud?

    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.

  • 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

    Member
    September 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

    Member
    September 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

    Member
    September 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.

  • Shweta

    Member
    September 8, 2020 at 7:45 pm in reply to: What is commit in Salesforce?

    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.

  • Shweta

    Member
    September 8, 2020 at 7:42 pm in reply to: What is forecast category in Salesforce?

    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.

  • Shweta

    Member
    September 8, 2020 at 6:24 pm in reply to: What is rollback in Salesforce ?

    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.

  • 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.

  • Shweta

    Member
    September 7, 2020 at 3:40 pm in reply to: What is Business unit Filter in SFMC?

    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'.

  • Shweta

    Member
    September 7, 2020 at 3:38 pm in reply to: What is Multi org in SFMC?

    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

    Member
    September 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.

  • 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.

Page 8 of 24