Aditya
IndividualForum Replies Created
-
Aditya
MemberJuly 9, 2020 at 3:50 pm in reply to: What are the different Use Cases of Wrapper Class in Salesforce ?Hi,
We can wrap different objects types or any other types in a wrapper class. In the Visualforce most important use case is to display a table of records with a check box and then process only the records that are selected. In the example below, we are displaying list of accounts with checkbox. -
Hi,
Data Types and Variables. Apex uses data types, variables, and related language constructs such as enums, constants, expressions, operators, and assignment statements. ... An enum is an abstract data type with values that each take on exactly one of a finite set of identifiers that you specify. -
Aditya
MemberJuly 7, 2020 at 4:23 pm in reply to: How do you add conditional highlights in Salesforce reports?Hi,
Click Conditional Formatting. In Add Conditional Formatting Rule, select a summary or custom summary formula field that serves as a KPI for your business. You can also apply conditional formatting to grand totals in a matrix report. Set the breakpoint values and their range colors for each bin. -
Hi,
From Setup, enter Visualforce in the Quick Find box, then select Visualforce Pages.
Click Edit next to the Visualforce page.
Search the Visualforce markup for each of the following: apex:iframe , iframe , and apex:canvasApp -
Hi,
Quickly categorize report records without creating a formula or a custom field by bucketing them. When you create a bucket column, you define multiple categories (buckets) used to group report values. Like any other column in your report, you can sort, filter, and group by bucket columns. -
From Setup, enter Session in the Quick Find box, and then select Session Settings.
Deselect the checkbox for “Enable secure and persistent browser caching to improve performance”.
Click Save. -
To use Platform Cache, first set up at least one partition. Once you've set up partitions, you can add, access, and remove data from them using the Platform Cache Apex API. Each partition has one session cache and one org cache segment. You can allocate separate capacity to each segment.
-
Aditya
MemberJuly 2, 2020 at 1:31 pm in reply to: what is the parameter of webservicecallout.invoke method in Salesforce?WebServiceCallout.invoke(
Class servicePort, //Usually set to "this", contains httpheader info as well as ?
request_x, //Request object, defining schema, properties, and field order
response_map_x, //Response object, defining schema, properties, and field order
new String[]{
String endpoint, //Endpoint of the service
String ?, //what is this?
String methodSchema, //Schema for the request object?
String method, //Name of the request method?
String responseSchema, //Schema for the response object?
String response, //Name of the response object?
String responseClass} //Name of the Apex class the response will be converted to
); -
Aditya
MemberJuly 1, 2020 at 12:52 pm in reply to: Is it possible to write test code inside of an apex class or apex trigger in Salyes, it is possible
-
Aditya
MemberJuly 1, 2020 at 12:48 pm in reply to: What is “Transfer record” in profile in Salesforce ?Profile with “Transfer Record” permission will allowed profile to transfer ALL records for the object, as long as profile have Edit access to the object. Read again here “edit on object”, NOT “edit on record”, so this mean, profile will be able to transfer record owner even user do not have Edit access to that record
-
Platform events enable developers to deliver secure, scalable, and customizable event notifications within the Salesforce platform or from external sources. Platform events are based on a publish-subscribe architecture.
-
Aditya
MemberJune 30, 2020 at 12:39 pm in reply to: How to make image clickable in Lightning Component in Salesforce?createRecord: function(component, event, helper) {
var createRecordEvent = $A.get("e.force:createRecord");
var recid, rectype,RecTypeID;
rectype = event.currentTarget;
RecTypeID = rectype.getAttribute("title"); -
Aditya
MemberJune 30, 2020 at 12:36 pm in reply to: What purpose Lightning Application used for in Salesforce?Lightning apps let you brand your apps with a custom color and logo. You can even include a utility bar and Lightning page tabs in your Lightning app. Members of your org can work more efficiently by easily switching between apps.
-
Fire a component event to communicate data to another component. A component event can be handled by the component that fired the event or by a component in the containment hierarchy that receives the event.
-
It included
:Sum()
Count()
Max()
Min()
It work on master-details relationshaip -
SVG stands for Scalable Vector Graphics. It is a custom icon resource for components used in Lightning App Builder or Community Builder. In Lightning Components, The default SVG looks like. and if we want to customize this icon to some other icon, we need to create a SVG for our lightning component
-
Aditya
MemberJune 29, 2020 at 3:23 pm in reply to: How to Query Metadata Components By using SOQL in Salesforce ?@Rocks_SFDC
You need to use tooling API for that. Here is the documentation: https://developer.salesforce.com/docs/atlas.en-us.api_tooling.meta/api_tooling/
Andrew wrote an APEX wrapper to it which is readily available to use here: https://github.com/afawcett/apex-toolingapi -
Aditya
MemberJune 26, 2020 at 2:19 pm in reply to: Create External object using External data resource in salesforce?Hi,
From Setup, go to Build, and click the drop-down arrow next to Develop. Click External Data Sources and select New External Data Source.
Enter OrderDB for External Data Source and name the data source OrderDB, and select Salesforce Connect: OData 2.0 as the type.
Enter https://orderdb.herokuapp.com/orders.svc as the URL. Leave the other fields with their default values, and click Save.
On the next screen, click Validate and Sync. Salesforce Connect retrieves the schema from the external system.
Select both the Orders and OrderDetails tables, and click Sync. -
Aditya
MemberJune 26, 2020 at 2:15 pm in reply to: How many records can be displayed on a page for a report?2000 records can be displayed on the record page
-
Hi,
Tabs are used to show the Object in Salesforce org. Tabs shows as a tab in Salesforce classic and it shows as items in navigation Bar in Salesforce lightning -
Aditya
MemberJune 26, 2020 at 2:08 pm in reply to: List things that can be customized on page layouts?Hi,
Things that we can customize on page layout:
Fields
Buttons
Quick Actions
Mobile and lightning Action
Related list
Report Chart -
Aditya
MemberJune 26, 2020 at 2:06 pm in reply to: List things that can be customized on page layouts?Hi,
Things that we can customize on page layout: -
Hi,
An external data source specifies how to access an external system. Salesforce Connect uses external data sources to access data that's stored outside your Salesforce organization. Files Connect uses external data sources to access third-party content systems. -
Aditya
MemberJune 26, 2020 at 1:57 pm in reply to: What is Salesforce Connect and how can we use it?Hi,
Salesforce Connect is an exciting new App Cloud integration service that empowers Salesforce users to access and manage data in external apps, whether on-premise or cloud, directly from Salesforce. With Salesforce Connect, your business can be more productive and agile, and deliver new levels of customer success -
Aditya
MemberJune 24, 2020 at 4:24 pm in reply to: Is it Possible to relate Person Account to contact on business account ?Yes