Forum Replies Created

Page 9 of 20
  • 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.

  • Aditya

    Member
    July 9, 2020 at 3:49 pm in reply to: What is abstract data type in Salesforce ?

    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

    Member
    July 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.

  • Aditya

    Member
    July 7, 2020 at 4:20 pm in reply to: How to use in visualforce page?

    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

  • Aditya

    Member
    July 7, 2020 at 4:18 pm in reply to: What is a bucket column in Salesforce?

    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.

  • Aditya

    Member
    July 2, 2020 at 1:53 pm in reply to: How do I disable cache in lightning?

    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.

  • Aditya

    Member
    July 2, 2020 at 1:43 pm in reply to: How do I use platform cache in Salesforce?

    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.

  • 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
    );

  • yes, it is possible

  • Aditya

    Member
    July 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

  • Aditya

    Member
    July 1, 2020 at 12:46 pm in reply to: What is platform event message in Salesforce?

    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

    Member
    June 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

    Member
    June 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.

  • Aditya

    Member
    June 30, 2020 at 12:34 pm in reply to: What is Component Event in Salesforce?

    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.

  • Aditya

    Member
    June 29, 2020 at 3:27 pm in reply to: What are RollUp Summary Fields in Salesforce?

    It included
    :Sum()
    Count()
    Max()
    Min()
    It work on master-details relationshaip

  • Aditya

    Member
    June 29, 2020 at 3:24 pm in reply to: What is custom SVG in Salesforce?

    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

    Member
    June 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

    Member
    June 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

    Member
    June 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

  • Aditya

    Member
    June 26, 2020 at 2:12 pm in reply to: What is TAB in Salesforce?

    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

    Member
    June 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

    Member
    June 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:

  • Aditya

    Member
    June 26, 2020 at 1:58 pm in reply to: What are External data Resources in Salesforce?

    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

    Member
    June 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

  • Yes

Page 9 of 20