Aditya
IndividualForum Replies Created
-
Aditya
MemberSeptember 24, 2020 at 9:21 am in reply to: How do we create an app for Lightning Component in Salesforce?- Click the gear icon ( ), then select Developer Console.
- In the Developer Console, select File > New > Lightning Component.
- Name the component IndicatorBadges , select Lightning Record Page, and select Submit.
- Replace the contents of the component with this code:
- Click File > Save.
-
Aditya
MemberSeptember 24, 2020 at 9:18 am in reply to: How do we create tab for lightning component in Salesforce?- From Setup, enter Tabs in the Quick Find box, then select Tabs.
- Click New in the Lightning Page Tabs related list.
- Choose a Lightning page for the tab.
- Enter a label. ...
- Select a tab style to set a color scheme and icon for the Lightning page tab.
- Enter a description of the tab, if desired, and click Next.
-
Aditya
MemberSeptember 24, 2020 at 9:17 am in reply to: How do I add a quote to a PDF in Salesforce?- Do one of the following. If you're using Lightning Experience, click Create PDF, and then choose a template from the dropdown list.
- Generate a preview by clicking Create PDF.
- Save the PDF to the Quote PDFs related list by clicking Save to Quote.
-
Aditya
MemberSeptember 24, 2020 at 9:15 am in reply to: How do I edit a quote in a PDF in Salesforce?- Modifying Quote Template in salesforce : In this salesforce tutorial we are going to learn how to modify a quote template in salesforce. salesforce.com provides us an easy way to generate quotes in PDF format. ...
- Select Save.
- Select Templates.
- Select Edit.
- Select OK. Now Finally select Save the settings.
-
Aditya
MemberSeptember 24, 2020 at 9:14 am in reply to: How do you send a PDF quote to a customer with Salesforce CPQ?- Go to a quote record and click Generate Document.
- If the Document Language setting is available, choose a document language. ...
- Choose an output format. ...
- Enter a document name. ...
- Choose any other documents you want to add.
- Choose one of the following actions
-
Aditya
MemberSeptember 24, 2020 at 9:14 am in reply to: How do I create a quote in Salesforce lightning?From Setup, enter Quote in the Quick Find box, then select Quote Settings (Lightning Experience) or Quotes Settings (Salesforce Classic). Select the option for enabling quotes. To display the Quotes related list on the standard opportunity page layout, select Opportunity Layout .
-
Aditya
MemberSeptember 24, 2020 at 9:12 am in reply to: Which three types of customizations can be done on activities?- Workflow Rules.
- Custom Fields.
- Validation Rules.
- Trigger.
- Field Dependencies.
- Record Type.
-
Aditya
MemberSeptember 24, 2020 at 9:11 am in reply to: How do I add an item to a Pricebook in Salesforce?Click the Add button on the Standard Price related list. If standard prices already exist, you can click Edit or Edit All. The result is the same: An Add or Edit Standard Price page appears. Complete or modify the Standard Price field, as necessary, and then click Save.
-
Aditya
MemberSeptember 12, 2020 at 8:14 pm in reply to: What is the difference between render and rerender Attribute in Vf page?Rendered : Rendered is bound to a Boolean variable in controller which can be switched between true and false making the vf component display or hide depending on Boolean value. ReRender : Rerender is used to refresh a particular section of the visualforce page.
-
Aditya
MemberSeptember 12, 2020 at 8:12 pm in reply to: When to use Approval Process In Salesforce?- he steps necessary for a record to be approved and who approves it at each step. For example, when an employee creates a time-off request, have Salesforce automatically send an approval request to the employee's manager.
- The actions to take based on what happens during the approval process.
-
Aditya
MemberSeptember 12, 2020 at 8:11 pm in reply to: What is the use of !$A.util.isUndefined() in Salesforce Lightning Component?<samp>component.get(String key)</samp> and <samp>component.set(String key, Object value)</samp> retrieves and assigns values associated with the specified key on the component. Keys are passed in as an expression, which represents an attribute value.
-
Global is basically an access modifiers which is used to define the methods and variables
-
Aditya
MemberSeptember 10, 2020 at 8:01 pm in reply to: What is social studio in salesforce marketing cloud?It is a product that administers our marketing strategy across the all social media channels
-
Yes, It is a product that administers our marketing strategy across the all social media channels
-
Aditya
MemberSeptember 10, 2020 at 7:57 pm in reply to: How to insert custom icons in Lightning Component in Salesforce?`
`
-
Aditya
MemberSeptember 10, 2020 at 7:55 pm in reply to: How to convert JSON to string in Salesforce?Hi,
By using this code we can convert JASON to string:
String result = (String)JSON.deserializeUntyped(response.getBody()); -
Aditya
MemberSeptember 9, 2020 at 6:16 am in reply to: Where we can use Server Side JS in Salesforce Marketing Cloud?Use Core server-side JavaScript functions to personalize landing pages and create applications to run on Marketing Cloud. Use Platform server-side JavaScript functions to work with messages, landing pages, and applications.
-
In commit, the record id is created first and it gets associated with the record after the record gets commited to the database. ... OR the record is commited to the database first and then the record id is then generated for that record.
-
Aditya
MemberSeptember 9, 2020 at 6:10 am in reply to: What is the use of Tooling API in Salesforce?Tooling API retrieve the small piece of metadata, we can use this to develop an interactive application or tools for developers. This can be used to fetch the metadata such as Apex classes, Apex triggers, custom objects, custom fields, Visualforce Pages, Users, Apex Component etc
-
Aditya
MemberSeptember 5, 2020 at 8:15 am in reply to: Is it possible to send Custom Notifications Using Apex without making API Call?Yes, it is possible
-
In Salesforce Batch Apex is used to perform amount of jobs in a form of bunch which avoid the governor limits.
-
Aditya
MemberSeptember 5, 2020 at 8:04 am in reply to: How do you create a test class for a callout in Salesforce?<pre id="ext-gen27">@isTest
global class MockHttpResponseGenerator implements HttpCalloutMock {
// Implement this interface method
global HTTPResponse respond(HTTPRequest req) {
// Optionally, only send a mock response for a specific endpoint
// and method.
System.assertEquals('http://example.com/example/test', req.getEndpoint());
System.assertEquals('GET', req.getMethod());// Create a fake response
HttpResponse res = new HttpResponse();
res.setHeader('Content-Type', 'application/json');
res.setBody('{"example":"test"}');
res.setStatusCode(200);
return res;
}
} -
Aditya
MemberSeptember 5, 2020 at 8:00 am in reply to: How do you call private methods in Test class?<div aria-level="3" role="heading">From this article: Testing Private Methods with JUnit and SuiteRunner (Bill Venners), you basically have 4 options:
<div>- Don't test private methods.
- Give the methods package access.
- Use a nested test class.
- Use reflection.
</div></div>
-
Process Builder is a point-and-click tool that lets you easily automate if/then business processes and see a graphical representation of your process as you build.
-
Aditya
MemberSeptember 1, 2020 at 7:50 pm in reply to: What is the use of Static resources in Visualforce?Static resources allow you to upload content that you can reference in a Visualforce page, including archives (such as . zip and . jar files), images, style sheets, JavaScript, and other files.