Forum Replies Created

Page 17 of 20
  • Hi Pooja,

    Bucket field is similar to Formula fields in Salesforce which is used to categorise the report.

  • Aditya

    Member
    March 5, 2020 at 3:36 pm in reply to: What is ExactTarget in Salesforce marketing cloud?

    Salesforce Marketing Cloud is a provider of digital marketing automation and analytics software and services. It was founded in 2000 under the name ExactTarget. The company filed for an IPO in 2007, but withdrew its filing two years later and raised $145 million in funding.

  • Aditya

    Member
    March 5, 2020 at 3:30 pm in reply to: What are the best practices to write a test class?

    Salesforce Apex Test Class Best Practices
    Do not put (seeAllData = true) in test class otherwise, use it for exceptional cases.
    Use @isTest at the Top for all the test classes.
    Test in bulk: Test to see if your code can run on 200 records at once.
    Avoid Using Hard Coding Ids anywhere in test Class or any apex class

  • Aditya

    Member
    March 5, 2020 at 3:29 pm in reply to: What is standard object in Salesforce?

    Standard objects are the objects which are already provided by  Salesforce like: Accounts, Contacts etc.

  • Aditya

    Member
    March 2, 2020 at 3:12 pm in reply to: What is SAAS in Salesforce?

    Hi,

    Software-as-a-Service (SaaS) is a licensing and distribution model used to deliver software applications over the Internet i.e. as a service. Users typically access applications on a subscription basis, making SaaS ideal for business software such as email, instant messaging and customer relationship management (CRM).

  • Aditya

    Member
    March 2, 2020 at 3:10 pm in reply to: In Salesforce, How to implement JSON in Apex Class?

    Hi,

    JSON class has methods for serializing Apex objects into JSON format and deserializing JSON content that was serialized using the serialize method in this class, all the fields of the related objects are visible. Using the JSONGenerator class methods, you can generate standard JSON-encoded content and you can include the fields that you want to display.

     

  • Aditya

    Member
    March 2, 2020 at 3:09 pm in reply to: What is IAAS in Salesforce?

    Hi,

    Infrastructure as a service (IaaS) is a form of cloud computing that provides virtualized computing resources over the internet. IaaS is one of the three main categories of cloud computing services, alongside software as a service (SaaS) and platform as a service (PaaS).

  • Hi,

    Salesforce will not accommodate a master detail relationship to a custom object that already contains data. This is because creating a master detail relationship adds a new required field to the custom object (known as a "foreign key" to database administrators).

  • Aditya

    Member
    February 28, 2020 at 2:46 pm in reply to: When to use SOAP API in Salesforce?

    Hi,

    You can use SOAP API to create, retrieve, update, or delete records. You can also use SOAP API to perform searches and much more. Use SOAP API in any language that supports web services. For example, you can use SOAP API to integrate Salesforce with your org's ERP and finance systems.

  • Hi Pooja,

    Web services do not maintain the record of the client’s previous interactions which simplifies designing the application.
    As RESTful web services constantly deal with HTTP protocols which are also a statelessness protocol that matches the basic criteria.

  • Aditya

    Member
    February 27, 2020 at 3:48 pm in reply to: Can i make HTTP Callout from Triggers?

    Hi Suraj,

    Callouts cannot be made from triggers as that would hold up the database transaction until the callout completed, which can be up to 120 seconds from a limits perspective. ... Then when the callout completes, the @future method can retrieve the record(s) from the database and update the field(s)

  • Aditya

    Member
    February 27, 2020 at 3:47 pm in reply to: where we can find Contact Point Email in Salesforce org?

    Contact point type consent records let you enter details about how a customer ... consented to a specific contact point like email, but not phone calls and mail.

  • Aditya

    Member
    February 27, 2020 at 3:45 pm in reply to: What is the size of static resources in Salesforce?

    A single static resource can be up to 5 MB in size, and an organization can have up to 250 MB of static resources, total. Set the Cache Control : Private specifies that the static resource data cached on the Salesforce server shouldn't be shared with other users.

  • Aditya

    Member
    February 26, 2020 at 3:33 pm in reply to: What is mock and a stub in Salesforce?

    Hi Anjali,

    Mocks and stubs are more advanced topics in the realm of unit testing. However, they're incredibly useful for making tests easier to write, understand, and maintain. They also insulate the code you're testing from changes to other parts of your code base.

  • Aditya

    Member
    February 26, 2020 at 3:32 pm in reply to: How do we integrate API in Salesforce?

    Hi Ratnesh,

    A Rest API integration is a lot simpler and is primarily focused around sending data from your application and fetching data from Salesforce. Currently there is no cost associated with this type of integration however it’s worth noting that REST integrations are only accessible to Salesforce users on their enterprise plans (there is scope to get REST API access on Professional and Group editions but involves getting your app whitelisted.)

  • Aditya

    Member
    February 26, 2020 at 3:30 pm in reply to: What is Callback URL ?

    Hi Kiran,

    Callback URLs are the URLs that Auth0 invokes after the authentication process. Auth0 redirects back to this URL and appends additional parameters to it, including an access code which will be exchanged for an id_token , access_token and refresh_token.

  • Aditya

    Member
    February 24, 2020 at 4:20 pm in reply to: What is email size limit in Salesforce?

    Hi Anjali,

    The size limit for an email is 25 MB, with a per file attachment limit of 5 MB. For each matching record, all attachments that are sent with the email are duplicated, which affects your data size limit. Any attachments that aren't added are listed in the confirmation email that you receive from Salesforce

  • Aditya

    Member
    February 24, 2020 at 4:19 pm in reply to: What is a web lead in Salesforce?

    Hi Anjali,

    Web-to-Lead is a cool often overlooked native feature in Salesforce. It simply allows a way for you to create a Lead record in Salesforce from a form you publish on your website. ... A visitor on your website is submitting contact information on your website and that submission creates a record as a Lead in Salesforce

  • Aditya

    Member
    February 24, 2020 at 4:17 pm in reply to: What is the meaning of <apex:actionfunction> tag in VisualForce?

    Hi Manish,

    This tag defines JavaScript functions to be called from JavaScript code. If any miss those required fields, I am displaying alert by Javascript and i am calling method from java script to save the record

  • Aditya

    Member
    February 21, 2020 at 4:29 pm in reply to: What is the use of values() in map in Salesforce?

    Values in Map are basically return the values of their corresponding  keys in Collection of Salesforce Apex.

  • Aditya

    Member
    February 21, 2020 at 4:26 pm in reply to: What is the use of size() in map in Salesforce?

    A map is a collection of key-value pairs where each unique key maps to a single value. In map Keys can be any primitive data type like string, integer,decimal, Id while values can be a primitive, sObject, collection type or an Apex object

  • Aditya

    Member
    February 20, 2020 at 4:29 pm in reply to: Why we used isExecuting in trigger in Salesforce?

    Trigger. isExecuting is to determine that your current context for the Apex code is a trigger, not a Visualforce page, a Web service, or an executeanonymous() API call. Here is an example of Apex Class, this class can identify current context for the Apex code is a trigger using Trigger

  • Aditya

    Member
    February 20, 2020 at 4:27 pm in reply to: How are lead assignment rules executed in Salesforce?

    A Lead assignment rule consists of multiple rule entries that define the conditions and order for assigning cases. From a Salesforce User interface, a user can trigger assignment rules by simply checking the Assign using active assignment rules checkbox under the optional section.

  • Aditya

    Member
    February 20, 2020 at 4:25 pm in reply to: What is the use of select tags in Salesforce?

    Apex selectList: It allows user to Select a single value and multiple values at a time from multi-select Attribute. It support HTML Attribute.

  • Aditya

    Member
    February 20, 2020 at 6:35 am in reply to: What is Inline Edit in Salesforce?

    Inline edit is a feature in which we can edit our record with double click on the text without pressing the edit button

Page 17 of 20