Marziya Sarwar
IndividualForum Replies Created
-
Marziya
MemberApril 29, 2020 at 1:17 pm in reply to: How to Map Lead Source to Account Source during lead conversion in Salesforce?Hii Anjali,
Setup Lead field mapping:
Go to Setup – Object Manager – Lead – Fields & Relationships.
Click the Map Lead Fields button.
Map the new “Lead Custom Text Field” to the new “Account Text field” -
Data-driven Framework:
Allows us to create test automation scripts by passing different sets of test data. The test data set is kept in the external files or resources such as MS Excel Sheets, MS Access Tables, SQL Database, XML files etc., The test scripts connect to the external resources to get the test data. -
Marziya
MemberApril 28, 2020 at 6:33 am in reply to: What is Data flow in merge mapping in salesforce?Collect data and write it back to Salesforce
Utilize the Data Mapping tool to capture data from signed forms and push it back to your Salesforce records. Users commonly map contact information such as name, email address, phone number and mailing address. -
Marziya
MemberApril 28, 2020 at 6:32 am in reply to: What is the use of dataTable in Salesforce lightning components?A lightning:datatable component displays tabular data where each column can be displayed based on the data type. lightning:datatable also supports inline editing.
-
Lead nurturing: The process of developing and maintaining relationships with customers at every stage of their journey, usually through marketing and communications messaging. ... Salesforce offers easy-to-use, powerful tools for lead nurturing, including our marketing automation solution, Pardot.
-
Hii Aditya,
force:hasRecordId interface
This interface is used to indicate that a component takes a record (SObject) as an attribute. -
Marziya
MemberApril 27, 2020 at 6:55 am in reply to: What is the syntax for test mockout classes in Salesforce?global class YourHttpCalloutMockImpl implements HttpCalloutMock {
global HTTPResponse respond(HTTPRequest req) {
// Create a fake response.
// Set response values, and
// return response.
}
} -
Marziya
MemberApril 27, 2020 at 6:53 am in reply to: How to write test method for a lookup field in Salesforce? -
EventBus Namespace. The EventBus namespace provides classes and methods for platform events and Change Data Capture events. The following are the classes in the EventBus namespace. ChangeEventHeader Class. Contains header fields of Change Data Capture events.
-
Marziya
MemberApril 24, 2020 at 1:15 pm in reply to: Display List in Lightning Component in Salesforce?Yes,We can Display List in Lightning Component in Salesforce
-
Marziya
MemberApril 24, 2020 at 1:10 pm in reply to: Can we use seeAllData = true in Test class in Salesforce?Yes,we can.
-
Marziya
MemberApril 23, 2020 at 1:14 pm in reply to: What are the methods used in HTTP callouts in Salesforce?HTTP Method Description
GET Retrieve data identified by a URL.
POST Create a resource or post data to the server.
DELETE Delete a resource identified by a URL. -
An auth provider lets users log in to your Salesforce org from an external service provider, such as Facebook, Google, or GitHub.
-
Hii Anjali,
Streaming API is your radar. It lets you define events and push notifications to your client app when the events occur. ... Also, Streaming API lets you process business logic in an external system in response to data changes in Salesforce. -
Hii Anjali,
OAuth-enabled connected apps are integrated with Salesforce, so they can access a subset of your Salesforce data after you explicitly grant each app permission. Go to your personal settings to see which connected apps have permission to access your Salesforce data. Then revoke a connected app's access, as needed -
Hii Anjali,
Set Up a Sales Process
From Setup, click Customize | Opportunities | Sales Processes.
Click New.
To create the first new process for your organization, create a Master process.
Give your sales process a unique but descriptive name. ...
Optionally, add a description.
By default, all stages are included in a new process -
Marziya
MemberApril 22, 2020 at 1:50 pm in reply to: Which two automation tools include a graphical designer in Salesforce?Hii Anuj,
Workflow Rules. Workflow Rules is perhaps the most well recognized and most used tool, as it has been around the longest and is very dependable. ...
Process Builder. ...
Flow. ...
Apex. -
Marziya
MemberApril 22, 2020 at 1:49 pm in reply to: Get all Record types in case object in Salesforce?Hii Anuj,
Apex Code Development (78906)
Lightning (11230)
Trailhead (10222)
Security (2717)
Visual Workflow (2011)
Chatter and Chatter API Development (1651)
Salesforce Labs & Open Source Projects (1142)
Desktop Integration (1099) -
Marziya
MemberApril 21, 2020 at 6:37 am in reply to: Which fields are automatically indexed in Salesforce?Hii Shweta,
RecordTypeId.
Division.
CreatedDate.
Systemmodstamp (LastModifiedDate) -
Hii Kirandeep,
Audit Fields in Salesforce are special fields that track information about your records that can be valuable for audit purposes. Typically these fields include: CreatedByID. CreatedDate. -
Hii Aditya,
following steps:--
public PageReference WorkOrderCompleteAction() {
// Do your code here whatever you want to do in this method
PageReference tempPage = ApexPages.currentPage();
tempPage.setRedirect(true);
return tempPage;
} -
Marziya
MemberApril 21, 2020 at 6:31 am in reply to: How to enable Salesforce Authenticator for a user in Salesforce?Hii Aditya,
Download and install version 3 or later of the Salesforce Authenticator app for the type of mobile device you use. ...
From your personal settings, enter Advanced User Details in the Quick Find box, then select Advanced User Details. ...
Find App Registration: Salesforce Authenticator and click Connect -
Marziya
MemberApril 20, 2020 at 11:27 am in reply to: How much is the limit for name of Apex Class in Salesforce?Hii Deepak,
Apex class and trigger names can be up to 40 characters long. -
Marziya
MemberApril 20, 2020 at 11:24 am in reply to: What are action method in Visualforce page of Salesforce?Hii Aditya,
Action methods perform logic or navigation when a page event occurs, such as when a user clicks a button, or hovers over an area of the page. Action methods can be called from page markup by using {! } -
Hiii Anuj,
The Pattern. Positive testing tests your code with valid inputs to demonstrate what happens when your code functions properly. Negative testing demonstrates that your code properly handles invalid data and exceptions.