Forum Replies Created

Page 10 of 21
  • Einstein Discovery is AI-powered analytics that enables business users to automatically discover relevant patterns based on their data – without having to build sophisticated data models.

  • Marziya

    Member
    July 13, 2020 at 2:53 pm in reply to: What is Canvas in Flow Builder in Salesforce?

    The canvas is the working area, where you build a flow by adding elements. As you add elements to the canvas and connect them together, you see a visual diagram of your flow.

  • Marziya

    Member
    July 13, 2020 at 2:52 pm in reply to: How do you deploy approval process in Salesforce using ant?

    Click on your setup. ...
    Select 'Approval Process' from the component type drop down list. ...
    Click on 'view/add dependencies' button. ...
    Select all the dependent components required and click 'Add To Change Set'

  • Navigate to Setup.
    1.In the 'Quick Find' search box type, API.
    2.Click API under Integrations in the setup options.
    3.Click Generate Enterprise WSDL.
    4.Click the Generate button.

  • Marziya

    Member
    July 10, 2020 at 3:25 pm in reply to: What are the limitations of Duplicate Management in Salesforce?

    Records can only be merged one by one and cannot be done in mass or automatically. Only two or three records can be merged at one time. If there are more than three matches, the process to clean those records requires rerunning the entire merge process multiple times.

  • Marziya

    Member
    July 10, 2020 at 3:12 pm in reply to: What do you mean by the bulkifying trigger in Salesforce?

    To bulkify your code means to combine repetitive tasks in Apex! It's the only way to get around Governor Limits – especially our #1 most important limit! Before I give you an example, it's important to know exactly why you need to bulkify: Up to 200 records can enter your trigger at once!

  • Marziya

    Member
    July 10, 2020 at 3:11 pm in reply to: What is Salesforce Duplicate Management?

    The Salesforce Duplicate Management feature consists of Matching Rules and Duplicate Rules. Matching rule: Consists of criteria to identify duplicate records. Salesforce comes with three standard rules: one for business accounts, one for contacts and leads and one for person accounts.

  • Marziya

    Member
    July 10, 2020 at 3:08 pm in reply to: What is the nested wrapper class in Salesforce?

    We know that a location in apex can store only data of one type and when you have data from multiple types then you wont be club them together without a self defined container called as wrapper class. A nested wrapper class that is a wrapper consisting of another class variables.

  • Marziya

    Member
    July 9, 2020 at 1:20 pm in reply to: What is JSON Stringify in Salesforce?

    JavaScript Object Notation (JSON) support in Apex enables the serialization of Apex objects into JSON format and the deserialization of serialized JSON content. ... Contains methods used to serialize objects into JSON content using the standard JSON encoding.

  • Marziya

    Member
    July 9, 2020 at 1:19 pm in reply to: How to export a list view in Salesforce?

    1..Search data you need or simply open your saved list view.
    2..From the search results page select Export to Excel* from the top right.

  • Marziya

    Member
    July 9, 2020 at 1:17 pm in reply to: What does format() function does in Salesforce?

    private String formatDate(Date dateIn){
    DateTime dateTimeScheduled = DateTime.newInstance(dateIn,Time.newInstance(0,0,0,0));
    return dateTimeScheduled.format('MMMM d, yyyy');
    }

  • Marziya

    Member
    July 8, 2020 at 3:31 pm in reply to: How to create an External Id field in Salesforce?

    In a browser, log in to Salesforce.com.
    Near the top of the screen, click your user name, and then click Setup.
    Under Build, click Customize, and then select the object you want to update—for example, Account.
    Click the Add a custom field to accounts link.

  • Performance – :Uses a stateful client and stateless server architecture that relies on JavaScript on the client side to manage UI, It intelligently utilizes your server, browser, devices, and network so you can focus on the logic and interactions of your apps.
    Event-driven architecture -: event-driven architecture for better decoupling between components
    Faster development – : Empowers teams to work faster with out-of-the-box components that function seamlessly with desktop and mobile devices.

  • Marziya

    Member
    July 8, 2020 at 3:29 pm in reply to: How to get currentUsrId in Salesforce?

    Apex. System.debug( 'Current User Id - '+UserInfo.getUserId());
    Visualforce. < apex:page > < h1 >Visualforce Page</ h1 > < p >UserId: {!$User.Id}</ p > < p >User Email: {!$User.Email}</ p > ...
    Aura Component. let currentUser = $A.get( "$SObjectType.CurrentUser.Id" ); Console.log(currentUser);
    Formula Fields. $User.Id.

  • Conditional Highlighting in Reports in Salesforce is used to highlight field values on summary or matrix reports based on ranges and colors you specify. To enable conditional highlighting, your report must contain at least one summary field or custom summary formula.

  • Marziya

    Member
    July 7, 2020 at 3:27 pm in reply to: What does Database.com provides to Salesforce?

    Database.com benefits from the security of salesforce.com's global service delivery infrastructure, offering SSL, single-sign on, identity confirmation and anti-phishing tools. It also provides secure access, including user and role-based security and sharing rules and row-level data security.

  • Marziya

    Member
    July 7, 2020 at 3:25 pm in reply to: Which fields are read only data type in Salesforce?

    Roll-up Summary : Roll-up Summary is also a read-only field type. By using this Roll-up Summary data types we are able to make some mathematical calculations like Sum, Minimum, Maximum values of a afield in a related list or the record count of all records listed in a related list.

  • Marziya

    Member
    July 6, 2020 at 1:36 pm in reply to: How many times trigger will fire in Salesforce?

    Triggers execute on batches of 200 records at a time. So if 400 records cause a trigger to fire, the trigger fires twice, once for each 200 records. For this reason, you don't get the benefit of SOQL for loop record batching in triggers, because triggers batch up records as well.

  • Marziya

    Member
    July 6, 2020 at 1:35 pm in reply to: How do you Bulkify a trigger in Salesforce?

    Never ever write a SOQL query inside any “for” loop for whatsoever reason. ...
    If you need to fetch large amount of data from an object (More than 50,000 records), then go for batch apex to pull that data, else you will again bump into another governor limit that wouldn't allow you to fetch more than 50,000 records.

  • Marziya

    Member
    July 6, 2020 at 1:32 pm in reply to: How can we prevent from the recursive trigger in Salesforce?

    To avoid recursive triggers you can create a class with a static Boolean variable with default value true. In the trigger, before executing your code keep a check that the variable is true or not. Once you check make the variable false.

  • Marziya

    Member
    July 2, 2020 at 1:27 pm in reply to: What is meant by WSDL file in Salesforce?

    The WSDL is used by developers to aid in the creation of Salesforce integration pieces.

  • Marziya

    Member
    July 2, 2020 at 1:26 pm in reply to: How to track outbound messages in Salesforce?

    Track the Delivery Status of an Outbound Message.

  • Marziya

    Member
    July 2, 2020 at 1:24 pm in reply to: What is meant by platform cache in Salesforce?

    Platform Cache is a memory layer that stores Salesforce session and org data for later access.

  • Marziya

    Member
    July 1, 2020 at 3:10 pm in reply to: Can two profiles be assigned to the same user in Salesforce?

    Profiles determine the level of access a user can have in a Salesforce org. ... In this way, many users can be assigned the same profile. In case the team lead or manager need access to additional records/ objects then it can be done by assigning permission sets only for those users.

  • Marziya

    Member
    June 30, 2020 at 2:20 pm in reply to: How to Set grant access login in Salesforce?

    Click on the logged in user's avatar in the top right-hand side of the screen and choose Settings. Click on Grant Account Login Access.

Page 10 of 21