Forum Replies Created

Page 10 of 20
  • Aditya

    Member
    June 24, 2020 at 4:24 pm in reply to: How to copy from one map to another map in Salesforce?

    Map<Integer, String> m1 = new Map<Integer, String>();
    m1.put(1, 'First item');
    m1.put(2, 'Second item');
    Map<Integer, String> m2 = new Map<Integer, String>(m1);
    // The map elements of m2 are copied from m1
    System.debug(m2);

  • Aditya

    Member
    June 22, 2020 at 7:46 pm in reply to: How to handle fault in Salesforce flow?

    To do so, draw the fault connector to a Screen element with this Display Text field. When an error occurs, automatically create a case that includes the error message and assign it to your IT department. Assign the created case's number to a Text variable ( {! caseNumber} , for example).

  • Aditya

    Member
    June 22, 2020 at 3:13 pm in reply to: How do I attach a file in Salesforce?

    n Lightning Experience, drag files directly onto the Files related list or click Upload Files. To add Salesforce Files, click Add Files in the related list's menu.
    In Salesforce Classic, click Upload File in the Files related list.

  • There are two types of Custom Settings: List and Hierarchy. List-type Custom Settings are very similar to Custom Objects, but Hierarchy-type Custom Settings are very different. Hierarchy Custom Settings allow you to associate specific rows with specific Users or Profiles.

  • Aditya

    Member
    June 18, 2020 at 3:57 pm in reply to: How to SetUp email alerts for lead follow-up in Salesforce?

    Enable notifications to a distribution list with workflow
    Go to Setup in Classic (or click the gear icon then Setup in Lightning).
    Enter Workflow into the 'Quick Find' search box, then click Workflow Rules.
    Click New Rule.
    Select Lead, then click Next.
    Enter the Rule Name.
    Set the 'evaluation criteria' to created.

  • Aditya

    Member
    June 18, 2020 at 3:55 pm in reply to: How to create a lead using email in Salesforce?

    All you need to do is to create a new webhook integration and connect your Salesforce account to Mailparser. Once your account is connected, you can choose what kind of object you want to have created (Lead, Case, Contact, …) and map the data fields accordingly. That's it!

  • Aditya

    Member
    June 17, 2020 at 4:06 pm in reply to: What is ContentDownloadURL in Salesforce Files?

    Solution: Created a visualforce page through which the user can upload the image in the content file system in Salesforce. ... After CD (ContentDistribution) record insertion, you will get the 'ContentDownloadUrl' for that file.

  • Aditya

    Member
    June 17, 2020 at 4:05 pm in reply to: How to fetch URL from Content Distribution in Salesforce?

    create() , delete() , describeSObjects() , query() , retrieve() , undelete() , update() ... Content deliveries must be enabled to query content deliveries. Type: string; Properties: Nillable, Sort; Description: URL of the link to the shared document a document shared externally via a link or via Salesforce CRM Content delivery.

  • Aditya

    Member
    June 16, 2020 at 7:24 pm in reply to: What is the order of execution in Triggers in Salesforce?

    Here is order of execution in salesforce
    The original record is loaded from the database.
    System Validation Rules.
    Executes all before triggers.
    Custom Validation rules.
    Executes duplicate rules.
    Saves the record to the database, but doesn't commit yet.
    Executes all after triggers.
    Executes assignment rules.

  • Aditya

    Member
    June 16, 2020 at 7:22 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

  • Aditya

    Member
    June 16, 2020 at 7:18 pm in reply to: When to use Database.queryLocator in Batch Apex?

    Use the Database. QueryLocator object when you are using a simple query to generate the scope of objects used in the batch job. In this case, the SOQL data row limit will be bypassed. Use the iterable object when you have complex criteria to process the records.

  • Aditya

    Member
    June 15, 2020 at 3:38 pm in reply to: What is Jitter?

    Connect to any file or database, local or in the cloud.
    Built-in wizards guide you through the setup of your Insert, Update, Upsert, Query, Delete, or Bulk Load operations.
    The Jitterbit AutoMapper graphically maps and transforms your data, automatically matching similar fields to save you time and resources.

  • Aditya

    Member
    June 15, 2020 at 3:36 pm in reply to: What is Ping?

    Search Results
    Web results
    Troubleshoot network performance issues with ping and ...help.salesforce.com › apex › HTViewSolution › urlname
    Salesforce transmits packets of various sizes when communicating with your machine. If you have done successful basic traceroutes and pings to salesforce.com

  • Aditya

    Member
    June 15, 2020 at 3:35 pm in reply to: How to reduce Ping Value?

    You can lower ping without any hassle if you can cover the list of to do things that will be mentioned here.
    Select Nearest Servers.
    Force Close a Program.
    Turn Off Your Updates.
    Reset Your Network Settings.
    Clean Your Computer.
    Getting a Wired Connection.
    Lower Your Ping With Kill Ping.

  • Aditya

    Member
    June 12, 2020 at 2:39 pm in reply to: Which field type does Bucketing field support in salesforce?

    A Bucket field helps you to group related records together by ranges and segments, without the use of complex formulas and custom fields. Bucketing can be used to group, filter, or arrange report data.

  • Files were brought in as a powerful way to manage documents in salesforce. Other options such as attachments and documents were not as flexible and needed to evolve with the times, Files are the future, and the future is here. Files are more versatile and provide better functionality than attachments.

  • Aditya

    Member
    June 12, 2020 at 2:36 pm in reply to: what is Salesforce Chatter file in Salesforce?

    Chatter File allows you to Upload, Share, Follow files in the cloud. Chatter File helps the organization to discuss changes to the file in real time, from whatever device they are using. It also cuts down on email traffic and keeps all comments with the related documents for easy reference.

  • Aditya

    Member
    June 11, 2020 at 2:34 pm in reply to: How to handle error in Salesforce flow?

    If the flow is used only internally, such as at a call center, use the fault path to display the error message to the running user. In the same Screen element, ask the user to report the error to the IT department. To do so, draw the fault connector to a Screen element with this Display Text field.

  • Aditya

    Member
    June 11, 2020 at 2:33 pm in reply to: How can we handle error in Salesforce flow?

    Draw a fault connector to a Screen element, where users can verify the values that they entered, make corrections, and proceed. If the flow is used only internally, such as at a call center, use the fault path to display the error message to the running user.

  • Aditya

    Member
    June 11, 2020 at 2:32 pm in reply to: What is use of loop element in Salesforce flow ?

    Hi,
    Flow Element: Loop. Start a loop path for iterating over items in a collection variable. For each iteration, the flow temporarily stores the item in the loop variable. To execute actions on each item's field values, use other elements in the loop.

  • Aditya

    Member
    June 10, 2020 at 2:53 pm in reply to: What is Protocol in salesforce?

    Hi,
    OAuth 2.0 Protocol OAuth 2.0 is an open protocol used to allow secure data sharing between applications

  • Aditya

    Member
    June 10, 2020 at 2:50 pm in reply to: When to Use Chatter REST API in salesforce?

    Hi,
    When to Use Chatter REST API
    Build a mobile app.
    Integrate a third-party web application with Salesforce so it can notify groups of users about events.
    Display a feed on an external system, such as an intranet site, after users are authenticated.
    Make feeds actionable and integrated with third-party sites.

  • Aditya

    Member
    June 10, 2020 at 2:49 pm in reply to: How to encode base64 type to string in String in Salesforce?

    Hi,
    Blob blobValue = EncodingUtil.convertFromHex('4A4B4C');
    System.assertEquals('JKL', blobValue.toString());

  • Aditya

    Member
    June 9, 2020 at 3:52 pm in reply to: What are list of tools are avaliable in salesforce lightning ?

    Hi,
    Below are the list of tools available in salesforce lightning:
    Browser : Google Chrome.
    Browser Debugger: Chrome DevTools.
    DevTools Extension: Salesforce Lightning Inspector.
    Editor: Force.com IDE.

  • Aditya

    Member
    June 9, 2020 at 3:51 pm in reply to: How to access REST API in Salesforce?

    Hi,
    Enter Apps in the Quick Find box, select Apps (under Build | Create), then click the name of the connected app. Enable OAuth settings and specify your callback URL and OAuth scopes. On clicking SAVE, a consumer key and consumer secret are generated.

Page 10 of 20