Forum Replies Created

Page 8 of 10
  • Manish

    Member
    March 4, 2020 at 1:53 pm in reply to: Can we change the name of standard object in Salesforce?

    Yes , We can change the label ob Standard Objects.

    Setup -> Customize -> Tab Names and Labels -> Rename Tabs and Labels.

  • Manish

    Member
    March 4, 2020 at 1:48 pm in reply to: Can we change the data type of standard fields in Salesforce ?

    No We can not.

  • Manish

    Member
    March 3, 2020 at 3:39 pm in reply to: Why we used sandbox org in Salesforce?

    We Use Sandbox for testing purpose on Production Org Data in Live Scenario.

  • Manish

    Member
    March 3, 2020 at 3:38 pm in reply to: What is JSON 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.

  • You cannot call a method annotated with future from a method that also has the future annotationYou cannot call a method annotated with future from a method that also has the future annotation.

  • Manish

    Member
    February 28, 2020 at 7:39 am 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.

  • Manish

    Member
    February 28, 2020 at 7:26 am in reply to: What is the need of wrapper class in salesforce ?

    If We want to Display records of sObject on a single page then we need Wrapper Class.

  • Manish

    Member
    February 28, 2020 at 7:24 am in reply to: What is the main difference between trigger and workflow in Salesforce?

    1. Workflow is point and click which doesn't need any coding. When you want to take action (email, task, field update or outbound message) for the same object or from Child to parent object, you can use Workflow rules.

    2. Trigger: It's a programatic approach and event driven (insert, update, merge, delete). You can call it as advance version of Workflow.

  • Manish

    Member
    February 27, 2020 at 11:26 am in reply to: What is AsyncApexJob object in Salesforce?

    BatchApex job represents an asynchronous Apex class using the Batchable interface via implements Database Batchable. Using Batch Apex allows for the asynchronous processing of a long running process on a large data volume by breaking the job into manageable chunks to be processed separately

  • Manish

    Member
    February 27, 2020 at 11:23 am in reply to: What is <legend> tag in Salesforce?

    <legend> - Defines a caption for the <fieldset> element.

  • Manish

    Member
    February 27, 2020 at 11:18 am in reply to: What are the benefits of the Apex unit test in Salesforce?

    Use the @isTest annotation to define classes and methods that only contain code used for testing your application. The @isTest annotation can take multiple modifiers within parentheses and separated by blanks.

  • Manish

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

    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.

  • Manish

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

    REST API provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforce. Its advantages include ease of integration and development, and it’s an excellent choice of technology for use with mobile applications and web projects. For certain projects, you may want to use REST API with other Salesforce REST APIs. To build UI for creating, reading, updating, and deleting records, including building UI for list views, actions, and dependent picklists, use User Interface API. To build UI for Chatter, communities, or recommendations, use Chatter REST API. If you have many records to process, consider using Bulk API, which is based on REST principles and optimized for large sets of data.

  • Manish

    Member
    February 26, 2020 at 2:26 pm in reply to: What are mocks and stubs in Salesforce?

    Apex provides a stub API for implementing a mocking framework. A mocking framework has many benefits. It can streamline and improve testing and help you create faster, more reliable tests. You can use it to test classes in isolation, which is important for unit testing. Building your mocking framework with the stub API can also be beneficial because stub objects are generated at runtime.

  • Manish

    Member
    February 25, 2020 at 12:51 pm in reply to: What is Database.Stateful used for in batch class in Salesforce?

    Batch Apex is stateless by default. That means for each execution of your execute method, you receive a fresh copy of your object. All fields of the class are initialized, static and instance. If your batch process needs information that is shared across transactions, one approach is to make the Batch Apex class itself stateful by implementing the Stateful interface. This instructs Force.com to preserve the values of your static and instance variables between transactions.

  • Local IDs
    A local ID is an ID that is only scoped to the component. A local ID is often unique but it’s not required to be unique.
    Create a local ID by using the aura:id attribute. For example:
    Find the button component by calling cmp.find(“button1”) in your client-side controller, where cmp is a reference to the component containing the button.

    Global IDs
    Every component has a unique globalId, which is the generated runtime-unique ID of the component instance. A global ID (1) is not guaranteed to be the same beyond the lifetime of a component, so it should never be relied on. A global ID can be useful to differentiate between multiple instances of a component or for debugging purpose

  • Manish

    Member
    February 25, 2020 at 12:47 pm in reply to: How to use Aura.Action attribute in Salesforce Lightning?

    An Aura.Action is a reference to an action in the framework. If a child component has an Aura.Action attribute, a parent component can pass in an action handler when it instantiates the child component in its markup

  • Manish

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

    A component that provides support for invoking controller action methods directly from JavaScript code using an AJAX request.

  • Manish

    Member
    February 24, 2020 at 2:45 pm in reply to: How to Perform a callout to receive data from an external service ?

    We can perform Call using through Integration ,and also ther are two flavours are there , you can use according to your choice.

    Web service callouts to SOAP web services use XML, and typically require a WSDL document for code generation.
    HTTP callouts to services typically use REST with JSON.

    • This reply was modified 4 years, 10 months ago by  Manish.
  • Manish

    Member
    February 24, 2020 at 2:42 pm in reply to: How to Authorize an external site with remote site settings Salesforce?

    You can follow the step:

    Setup->Remote Site Settings-> Fill the Remote Site Name with Remote Site URL ->Save

  • Manish

    Member
    February 24, 2020 at 2:38 pm in reply to: What are the two different flavors of Apex callouts Salesforce?

    Hi Mahit,

    Here you can find Answer:

    1. Web service callouts to SOAP web services use XML, and typically require a WSDL document for code generation.
    2. HTTP callouts to services typically use REST with JSON.
  • Manish

    Member
    February 21, 2020 at 1:25 pm in reply to: What is the importance of live chat in Salesforce?

    Live Chat is Used for Day to Day interactions with customers.

  • Sandbox  is a copy of live running projects data and it is used for testing purposes. while the production  environment is live running projects.

  • Service Cloud includes a service cloud console for cases, messages etc. Sales Cloud inlcudes functionality like Leads,Contacts, Opportunities and so on.

  • Manish

    Member
    February 21, 2020 at 1:08 pm in reply to: What are the Salesforce Editions?

    Salesforce Editions:-

    Salesforce Group Edition

    Unlimited Edition

    Enterprise Edition

    Professional Edition

Page 8 of 10