Forum Replies Created

Page 15 of 19
  • Anuj

    Member
    April 30, 2020 at 1:04 pm in reply to: How to record an email response in Salesforce?

    Compose an email from an email account that you listed in My Acceptable Email Addresses on the My Email to Salesforce setup page. Locate the record ID of the record to associate the email with. The record ID is the 15-digit, case-sensitive, alphanumeric code at the end of the URL for the record.

  • Anuj

    Member
    April 30, 2020 at 12:58 pm in reply to: Maximum number of emails that can be send in Salesforce at a time?

    Right now, the current Salesforce mass email limit is 5,000 emails per org per day sent to external email addresses. As to internal users, you can send an unlimited amount of emails

  • Anuj

    Member
    April 29, 2020 at 2:48 pm in reply to: What is the ApprovalSubmitter in Salesforce?

    There are two kind of submitter available in approval process
    - initial submitter and final submitter.

  • SOQL statements can't exceed 20,000 characters. For SOQL statements that exceed this maximum length, the API returns a MALFORMED_QUERY exception code ; no result rows are returned.

  • Anuj

    Member
    April 29, 2020 at 2:41 pm in reply to: What is the approval process in Salesforce?

    The approval process in Salesforce is an automated process that approves records for salesforce. As the process is automotive it works on certain criteria. The approval process may include rejection, recalled or first-time submission of approval. This automated process is handled using steps defined by the developer.

  • Anuj

    Member
    April 28, 2020 at 2:07 pm in reply to: How we can use vf page inside the Lightning component in Salesforce?

    Yes, you can use by using iframe .
    for more details click on below link.
    https://salesforce.stackexchange.com/questions/92656/can-you-embed-visualforce-inside-a-lightning-component

  • Anuj

    Member
    April 28, 2020 at 1:58 pm in reply to: How does Salesforce deploy Sales Tracking?

    Analyze Key Sales Activities Once your new picklist values are live, you can deploy the new reports and dashboards. Make sure to adjust the time range or other filters on the reports if needed to fit your business. If you have a large sales team, consider additional filters for certain user roles or sales territories.

  • Anuj

    Member
    April 28, 2020 at 1:57 pm in reply to: What is meant by community user in Salesforce?

    A Community member-based license works like a standard Salesforce internal license: external users with a member-based license are able to access a community as many times as they want. The only difference is that external users do not have access to the internal org.

  • Anuj

    Member
    April 27, 2020 at 2:46 pm in reply to: What are the steps to create merge mapping in Salesforce?

    Go to the Merge Mappings tab in Salesforce, and associate your Text Tags with data fields— these object fields can be from standard or custom objects or even objects from other apps downloaded from the AppExchange. There are no restrictions on what data can be merged or how many data points can be merged.

  • Anuj

    Member
    April 27, 2020 at 1:11 pm in reply to: What is the use of @deprecated in Salesforce ?

    Use the deprecated annotation to identify methods, classes, exceptions, enums, interfaces, or variables that can no longer be referenced in subsequent releases of the managed package in which they reside. This is useful when you are refactoring code in managed packages as the requirements evolve

  • Anuj

    Member
    April 27, 2020 at 1:01 pm in reply to: What is the use of @TestVisible in Salesforce ?

    @TestVisible annotation to allow test methods to access private or protected members of another class outside the test class. These members include methods, member variables, and inner classes. This annotation enables a more permissive access level for running tests only.

  • Anuj

    Member
    April 27, 2020 at 12:51 pm in reply to: Display List in Lightning Component in Salesforce?

    How? please give an example.

  • Anuj

    Member
    April 24, 2020 at 2:06 pm in reply to: What do meant by toPdf(String) method in Salesforce?

    toPDF() method to generate the PDF content and attach it to the Account record as an Attachment. Notice that ths Blob. toPDF() takes in a String as the input, and that the String content can be formatted with HTML. And here is the PDF that was generated in the Apex Trigger and attached to the Account record

  • Anuj

    Member
    April 24, 2020 at 1:55 pm in reply to: Relation between Pricebook and Pricebook Entry in Salesforce?

    PricebookEntry object is a product entry in a pricebook. This object allows products to be linked to standard price book or custom price book. One price book entry is linked to only one product. One price book entry can only appear in one pricebook

  • Anuj

    Member
    April 23, 2020 at 2:32 pm in reply to: What is Bayeux protocol in Salesforce?

    Bayeux Protocol, CometD, and Long Polling. Streaming API uses the Bayeux protocol and CometD for long polling. Bayeux is a protocol for transporting asynchronous messages, primarily over HTTP. ... Long polling, also called Comet programming, allows emulation of an information push from a server to a client.

  • Anuj

    Member
    April 23, 2020 at 2:31 pm in reply to: What is Event Bus in Salesforce?

    The Event bus is used for highly transactional event messaging and not as long-term storage. This means that records are automatically removed from the queue after a certain time frame.

  • Anuj

    Member
    April 23, 2020 at 2:28 pm in reply to: What isLocal server ?

    A local server is one that provides a service by running an application which is on the same machine as the client application. The local server arrangement is common on a standalone machine that is not connected to any network.

  • Anuj

    Member
    April 22, 2020 at 1:11 pm in reply to: What is OData connector in Salesforce?

    OData (Open Data Protocol) is a modern, REST-based protocol for integrating data. ... Cross-org adapter—Connects to data that's stored in another Salesforce org. The Cross-org adapter uses the standard Lightning Platform REST API.

  • Anuj

    Member
    April 22, 2020 at 1:06 pm in reply to: What is OData in Salesforce?

    OData (Open Data Protocol) is a modern, REST-based protocol for integrating data. Vendors such as SAP and Microsoft have already implemented OData support, so products such as NetWeaver and SharePoint are directly accessible. ... Cross-org adapter—Connects to data that's stored in another Salesforce org.

  • Anuj

    Member
    April 22, 2020 at 1:04 pm in reply to: What is ETL tool in Salesforce?

    Extract, Transform, Load (ETL) tools integrate data from multiple and often disparate applications, such as assimilating data from payroll, purchase and sales applications to a cost accounting system. ... ETL apps make it possible to export data, make modifications to it, and then bring it back into Salesforce

  • Anuj

    Member
    April 21, 2020 at 3:32 pm in reply to: How do I enable Stream API in Salesforce?

    To enable dynamic streaming channels in your org, from Setup, enter User Interface in the Quick Find box, then select User Interface. On the User Interface page, select the Enable Dynamic Streaming Channel Creation option. You can subscribe to the channel by using a CometD client

  • Anuj

    Member
    April 21, 2020 at 2:21 pm in reply to: What is an streaming API in Salesforce?

    Streaming APIs are provided by SaaS applications, social media platforms and other services to deliver data to clients in web real-time. The streaming API model is usually implemented for reading data. It is used to deliver data to consumers, not to make writes or deletes.Jul

  • Anuj

    Member
    April 21, 2020 at 2:15 pm in reply to: What are standard reports in Salesforce?

    Standard Reports are the reports which are generated automatically by the salesforce and it is available for both standard and custom objects.
    For custom objects ,All you need to do is just checked the checkbox of report while creating the custom object .

  • Anuj

    Member
    April 21, 2020 at 2:08 pm in reply to: Wrapper class

    Hi Visali,
    Wrapper class is a User-defined class. wrapper class is nothing but a collection of different Salesforce data types. In Salesforce, you can combine multiple data types and utilize them for various purposes.

  • Anuj

    Member
    April 20, 2020 at 2:58 pm in reply to: How do you set up the account hierarchy in salesforce?

    Account hierarchies display accounts related via the Parent Account field. To maintain a complete account hierarchy, enter an account in the Parent Account field for every account except the one at the top of the hierarchy.
    From Setup, in the Quick Find box, enter Account Settings and then click Account Settings.
    Select Show View Hierarchy link on account pages in Salesforce Classic.
    Whenever an account is related to another account via the Parent Account field, the account detail page includes a View Hierarchy link.

Page 15 of 19