Forum Replies Created

Page 6 of 21
  • Marziya

    Member
    September 9, 2020 at 1:15 pm in reply to: What is commit in Salesforce?

    The record id is created first and it gets associated with the record after the record gets commited to the database. ... OR the record is commited to the database first and then the record id is then generated for that record.

  • Marziya

    Member
    September 9, 2020 at 1:12 pm in reply to: What is the use of Crypto Class in Salesforce ?

    This allows you to encrypt or decrypt information in Force.com or integrate with external services that require these functions.

  • Marziya

    Member
    September 9, 2020 at 12:44 pm in reply to: How to test a metadata container in Salesforce?
    1. Open the Developer Console by clicking the Setup gear, then Developer Console.
    2. In the Developer Console, click File | New | Apex Class.
    3. Name the class DeploymentTest and click OK.
    4. Get rid of any existing code, and copy and paste the following example code in its place.
  • Marziya

    Member
    September 8, 2020 at 6:02 am in reply to: What is type casting in Salesforce?

    This means that Apex enables casting , that is, a data type of one class can be assigned to a data type of another class, but only if one class is a subclass of the other class. Use casting when you want to convert an object from one data type to another.

  • Marziya

    Member
    September 8, 2020 at 5:46 am 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.

  • Marziya

    Member
    September 8, 2020 at 5:43 am in reply to: What is Business unit Filter in SFMC?

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

  • Marziya

    Member
    September 7, 2020 at 1:28 pm in reply to: Can we put Map in List in Apex?

    yes,We can.

  • Marziya

    Member
    September 7, 2020 at 9:05 am in reply to: What is the community in salesforce?

    Communities are branded spaces for your employees, customers, and partners to connect. You can customize and create communities to meet your business needs, then transition seamlessly between them.

  • Marziya

    Member
    September 7, 2020 at 8:21 am in reply to: What is batch in salesforce?

    Batch Apex is used to run large jobs (think thousands or millions of records!) that would exceed normal processing limits. Using Batch Apex, you can process records asynchronously in batches (hence the name, “Batch Apex”) to stay within platform limits. ... Here's how Batch Apex works under the hood.

  • Marziya

    Member
    September 3, 2020 at 1:43 pm in reply to: What are the steps to integrate Salesforce using REST API?
    1. Enter the Name of the Application.
    2. Enter Contact Email and any additional information suitable for your application.
    3. Enable OAuth settings in API section.
    4. Add Selected OAuth Scopes. Here I'm giving “Full access(full)”.
  • Marziya

    Member
    September 3, 2020 at 1:40 pm in reply to: What is the use of Salesforce Marketing Cloud Connect?

    Marketing Cloud Connect combines the digital marketing capabilities of Marketing Cloud with the data management, segmentation, and campaign management tools in Salesforce. Create unitary customer relationships with more data-driven, personalized conversations and the ability to automate the customer journey.

  • Marziya

    Member
    September 3, 2020 at 1:37 pm in reply to: What is a container in Google Tag Manager?

    A Tag Manager container can replace all other manually-coded tags on a site or app, including tags from Google Ads, Google Analytics, Floodlight, and 3rd party tags.

  • Marziya

    Member
    September 2, 2020 at 11:11 am in reply to: What is flow Builder in Salesforce?

    Flows can look up, create, update, and delete Salesforce records. They can also create Chatter posts, submit records for approval, and send emails. Connectors (2) Connectors define the path that the flow takes as it runs. They tell the flow which element to execute next.

  • Marziya

    Member
    September 2, 2020 at 11:07 am in reply to: How many Automation tools are provided by Salesforce?

    Automation tools in Salesforce can eliminate monotonous tasks, freeing up an admin's time to do more profound things. These tools include Workflow Rules, Process Builder, and Flow and Apex.

  • Marziya

    Member
    September 2, 2020 at 11:04 am in reply to: What is the use of junction Object in Salesforce?

    Junction objects are used for creating many-to-many relationships in Salesforce. Salesforce by default supports one-to-many relationships. These are the Master-Detail, the Lookup and the External Lookup relationships. They are defined from the many-to one side, meaning from a child to a parent.

  • Marziya

    Member
    August 26, 2020 at 5:14 pm in reply to: Why to use batch class instead of normal class in Salesforce?
    • A Normal Apex has a heap size of 6 MB; whereas, a Batch Apex has a heap size of 12 MB.
    • When executing bulk records, Normal Apex classes are more vulnerable to encountering errors as compared to Batch Apex. The latter is normally error-less.
  • Marziya

    Member
    August 26, 2020 at 5:12 pm in reply to: Explain me about Export and Export all in Data Loader in Salesforce?

    Export All: When we can use this button, all records (including records present in the recycle bin) for that particular object are exported to a .csv file.

  • Marziya

    Member
    August 26, 2020 at 5:10 pm in reply to: What is the use of external objects in Salesforce?

    External objects are best used when you have a large amount of data that you can't or don't want to store in your Salesforce organization, and you need to use only a small amount of data at any one time. See “Define External Objects” in the Salesforce Help for how to create and modify external objects.

  • Marziya

    Member
    August 25, 2020 at 5:00 pm in reply to: what is lightning flow in salesforce?

    Lightning Flow is a new Lightning Platform service that empowers any business to create and extend the power of process automation to any customer or employee experience.

  • Marziya

    Member
    August 25, 2020 at 4:58 pm in reply to: What are the use cases for Salesforce Connect?

    You need small amounts of data at any one time. You need real-time access to the latest data. You store your data in the cloud or in a back-office system, but want to display or process that data in your Salesforce org.

  • Marziya

    Member
    August 25, 2020 at 4:55 pm in reply to: How to use map attributes in the Salesforce Lightning component?
    1. <aura:component controller="mapIterateApexClass" >
    2. <aura:attribute type="list" name="list1"/>
    3. <aura:attribute type="map" name="map1"/>
    4. <ui:button label="Iterate Map in lightning component" press="{! ...
    5. <aura:iteration items="{! ...
    6. <c:mapIterationChild map="{!
  • Marziya

    Member
    August 24, 2020 at 3:47 pm in reply to: What is Sandbox template in Salesforce?

    Sandbox templates allow you to pick specific objects and data to copy to your Full or Partial Copy sandbox to control the size and content of each sandbox. ... When you create a sandbox template, you select the object data (standard and custom) to copy during the creation or refresh of a sandbox.

  • Marziya

    Member
    August 24, 2020 at 3:46 pm in reply to: How can we generate QR Code in Salesforce?
    1. Click on Setup (on Top right of Salesforce Org )
    2. Then go to Quick Find box . ...
    3. Click on New Button to create a new Custom Field.
    4. Select Formula field type .
    5. Give the Field name as “QR Code” and then select formula return type as Text.
    6. Now you click on Next ,Next and the Click on Save .
  • Marziya

    Member
    August 24, 2020 at 3:46 pm in reply to: What is the impact of unconscious bias in Salesforce?

    Unconscious bias acts as a barrier to Equality. It prevents us from cultivating diverse talent, developing an engaged workforce, leveraging unique experiences and perspectives, and sparking innovation through collaboration.

  • Marziya

    Member
    August 21, 2020 at 5:44 am in reply to: What is the use of smartfactory in Test Class in Salesforce ?

    SmartFactory aims to provide test data objects with all required fields and object lookups pre-populated

Page 6 of 21