Forum Replies Created

Page 11 of 24
  • Shweta

    Member
    August 7, 2020 at 2:41 pm in reply to: How do I use custom settings in Salesforce flow?
    1. Go to Set up -> Type custom settings -> Click New
    2. Label = Q1 Actions, Name = Q1_Actions, Setting Type = ‘Hierarchy’, Visibility = ‘Public’, Include a description as needed.
    3. Click Save.
    4. On the next page, Click New under custom fields. Select the field type as Text Area. Then Name it as Q1 checklist.
    5. Now, click Manage and Click New under the Default Organization Value.
    6. Type in the question verbiage given by the business for Q1.
    7. Follow the same steps to create another custom settings called Q2 Actions and create a field Q2 Checklist. Then enter verbiage for Q2.
  • Shweta

    Member
    August 7, 2020 at 2:37 pm in reply to: What is mean by Update record in flows in Salesforce ?

    <div>To update field values on salesforce records, use either the Update Records element or a Quick Action core action. Saves those changes to the Salesforce database. (In other words, until the changes are saved to the database, the changes exist only within the flow.)</div>

  • Shweta

    Member
    August 6, 2020 at 3:09 pm in reply to: Can we call class method from a custom button of an object ?

    Yes, we can call an Apex class from the custom button on the object detail page by creating a vf page and call the apex class method via the action attribute.

  • <div>Yes, we can create and setup salesforce communities' permission in Salesforce Classic.</div>

  • Shweta

    Member
    August 6, 2020 at 2:47 pm in reply to: What is OData Salesforce?

    <div>OData: This protocol is an application-level protocol for interacting with data via RESTful web services. It is different from other REST-based web service approaches in that it provides a uniform way to describe both the data and the data model.</div>

  • Shweta

    Member
    August 5, 2020 at 5:12 pm in reply to: How can we find my record ID in flow in Salesforce ?

    We can get record id by following these steps:
    1. Go to Setup -> Enter flow in Quick find box -> select Flows.
    2. Click on the New Flow button.
    3. In the left pane toolbox, Click manager -> click on the new resource -> in the resource type select variable from the drop-down menu.
    4. In the new resource variable box -> enter these values: API Name:recordId, Data type: Text, select available for input -> click on done.
    5. In the toolbox element tab, click on the screen and drag it onto your canvas. In screen properties, give the flow component a label and API name. In the screen component section, drag the display text component into the screen element. give it an API name and in text block section, type: The record ID is: {!recordId} -> Click on done.
    6. Connect the Start element to the Screen element-> Click Save.
    7. Go to setup -> Object Manager -> Select Opportunity -> select Buttons, links and actions -> click on new action button -> enter the information and click on save.
    8. Add action button on page layout
    9. Your show ID button visible. Once you click it, it shows the ID of the record

    1. Shweta

      Member
      August 5, 2020 at 4:49 pm in reply to: How can we call flow from Process Builder in Salesforce ?

      We can call a lightning flow from process builder by following these steps:1. Open your desired process builder and add an immediate action where the type is Flows.2. Then for the Flow select your desired flow name.3. Under Set Flow Variables, add your flow variables.

    2. Shweta

      Member
      August 5, 2020 at 4:40 pm in reply to: What is the return type of SOQL in Salesforce?

      A SOQL query will always return a list of sobjects. If you are assigning a query to a single sobject Apex will execute your query then attempt to assign to this sobject (unfortunately, if there are no elements in the returned query or more than the one you will get an exception).

    3. Shweta

      Member
      August 4, 2020 at 2:57 pm in reply to: What is the difference between SOAP API and REST API in Salesforce?

      <div>SOAP API: It has been preferred for services within the enterprise. It supports data in the form of XML only. It requires WSDL for integration.</div>Rest API: It has been preferred for services that are exposed as public APIs.It supports both XML and JSON format and also preferred for mobile and web apps since JSON being Lighter the app runs smoother and faster

    4. <div>Process Builder: It is a point and clicks tool that lets you easily automate if/then business processes and see a graphical representation of your process as you build.</div>Flow: It is a powerful business automation tool that can manipulate data in Salesforce in a variety of ways.

    5. Shweta

      Member
      August 4, 2020 at 2:44 pm in reply to: How to rename standard objects in Salesforce?

      To rename the standard object in Salesforce, follow these steps:
      1. Go to Setup -> customize -> Tab Names and labels -> Rename tab and labels.
      2. Choose the object and click edit.

    6. Shweta

      Member
      July 31, 2020 at 2:39 pm in reply to: What is a FlexiPage in lightning ?

      FlexiPage represents the metadata associated with a Lightning page. A Lightning page represents a customizable screen made up of regions containing Lightning components. FlexiPage components have the suffix .flexipage and are stored in the flexipages folder.

    7. Shweta

      Member
      July 31, 2020 at 2:37 pm in reply to: When to use Test.setCreatedDate in a test class in Salesforce?

      Test.setCreatedDate is used when you want to set CreatedDate for a test-context sObject. This method takes two parameters—an sObject ID and a Datetime value—neither of which can be null.

    8. Shweta

      Member
      July 31, 2020 at 2:33 pm in reply to: What is the use of test.isrunningtest() in Salesforce?

      test.isrunningtest(): Using this method if you need to run different code depending on whether it was being called from a test.
      When you were using object but cannot be used in a test, or doing some Http requests. In such cases, there is no option, considered using " Test.isrunningTest() ". And also this Static method allows you to discover the code that was run from the test method. it returns hardcoded String instead of calling HTTP request and parsing the body and a fixed array of objects from a method

    9. Shweta

      Member
      July 30, 2020 at 3:55 pm in reply to: How to Integrate salesforce slack?

      Set up Slack:

      1. First, install the Salesforce integration to Slack from the Slack app directory.
      2. Next, install the Slack app on AppExchange.
      3. Finally, once you’ve installed both apps, click the “Link to Slack” button on any supported Salesforce page and follow the instructions to connect to the desired Slack channel.
    10. Shweta

      Member
      July 30, 2020 at 3:52 pm in reply to: Whats is null pointer Exception in salesforce?

      Null Pointer Exception is an error in Salesforce which occurs when a line of code is trying to use an object that has not been instantiated or expecting that a field is not empty. In this case, SycApps was not able to set the field, leaving it empty, so it creates the error.

    11. Shweta

      Member
      July 30, 2020 at 3:47 pm in reply to: What is order of execution in salesforce?

      Order of Execution: It is a sequence of events that occur when a record is saved in Salesforce. These events are executed when an insert, update, or upsert operation occurs. All events need to <b style="font-family: inherit; font-size: inherit;">execute successfully before the data is committed to the database.

    12. Shweta

      Member
      July 29, 2020 at 8:19 am in reply to: What is Bulk API in Salesforce ?

      <div>Bulk API: It provides a programmatic option to quickly load your org’s data into Salesforce. To use the API requires basic familiarity with
      software development, web services, and the Salesforce user interface.
      The functionality described is available only if your org has the Bulk API feature enabled.
      </div>

    13. Shweta

      Member
      July 29, 2020 at 8:14 am in reply to: What is Named Credentials in Salesforce ?

      A named credential is a configuration feature that takes the burden out of most authentication processes. They’re used to let Salesforce handle some or most authentications within the org or with other Salesforce org. It is used to store various callout configurations, including the following:

      • Callout certificates
      • Settings for authentication
      • Authentication protocol, if it’s required or needed
      • HTTP endpoints
    14. Shweta

      Member
      July 29, 2020 at 8:12 am in reply to: What is Event Monitoring in Salesforce ?

      <div>Event Monitoring: It is used to provide detailed insight into who is accessing data (and from where), analyzes trends to help with adoption, and identify bottlenecks, resulting in improved performance.</div>

    15. Shweta

      Member
      July 28, 2020 at 3:13 pm in reply to: What is Apex Hammer in Salesforce?

      Every four months, Salesforce performs a major software release. Before release, they make sure that their updates don’t break any existing code of any salesforce customers org. They are releasing successfully means they are doing some unit test with all salesforce org tests for a new release. This testing process called Apex Hammer.

    16. Type of binding used in Visualforce:
      1. Data binding: It basically refers to the set of data in the controller.
      2. Action binding: It usually refers to the action techniques in the controller.
      3. Component binding: simply refers to other Visualforce parts

    17. Future method: we cannot monitor the jobs which are in process. this method cannot inside the future or batch class. It will never be queued.
      Queueable Apex: It contains the member variable as SObjects or custom Apex Types. using this it will make the ApexAsyncJobs which we can monitor like Scheduled jobs. It can be called from the future and batch class.

    18. Shweta

      Member
      July 24, 2020 at 2:51 pm in reply to: What is Salesforce Shield platform encryption?

      Shield Platform Encryption relies on a unique tenant secret that you control and a master secret that's maintained by Salesforce. We use your data encryption key to encrypt data that your users put into Salesforce and to decrypt data when your authorized users need it.

    19. Shweta

      Member
      July 24, 2020 at 2:48 pm in reply to: Does visualforce work in lightning?

      yes, Visualforce works in lightning.

    Page 11 of 24