Deepak
IndividualForum Replies Created
-
Deepak
MemberAugust 26, 2020 at 5:43 am in reply to: How we can implement a knowledge article in salesforce?To enable Salesforce Knowledge, from Setup, enter Knowledge in the Quick Find box, then select Knowledge Settings. Confirm that you want to enable Salesforce Knowledge and click Enable Knowledge. If your org doesn't have an article type, a default article type is created.
-
A global ID can be useful to differentiate between multiple instances of a component or for debugging purposes. To create a unique ID for an HTML element, you can use the globalId as a prefix or suffix for your element.
-
Salesforce Knowledge base is built from knowledge articles, which are documents of information. Control where and what information is published or shared based on the article page layouts, user profiles, actions, and other settings. You can use Knowledge in both Salesforce Classic and Lightning Experience.
-
Deepak
MemberAugust 26, 2020 at 5:40 am in reply to: What's the difference between lightning flow and flow builder?In Salesforce, Flow is an application inside Salesforce to automate complex business processes. Simply put, they collect data and then do something with that data. Flow Builder is the declarative interface that we use to build individual flows.
-
In Salesforce, Flow is an application inside Salesforce to automate complex business processes. Simply put, they collect data and then do something with that data. Flow Builder is the declarative interface that we use to build individual flows.
-
Autolaunched Flow with a Record Trigger. Makes before-save updates to the new or changed record that launches the flow. Only these elements are supported: Assignment, Decision, Get Records, and Loop. A record-triggered flow runs only when a record is created or updated.
-
Deepak
MemberAugust 24, 2020 at 12:24 pm in reply to: What are the default indexed fields in Salesforce?The following fields are indexed by default: Primary keys (ID, Name, and Owner fields). Foreign keys (lookup or master-detail relationship fields). Audit dates (such as SystemModStamp).
-
Deepak
MemberAugust 24, 2020 at 12:23 pm in reply to: How can we create multiple records using flow in Salesforce ?To create multiple records, you must use the values from a record collection variable. Earlier in the flow, populate the record collection variable with the new records' field values. When you use a record collection variable to create multiple records at once, you reduce the number of DML requests in your flow.
-
Flows that run from a Visualforce component always use Classic runtime. Flows that run from a Lightning page, flow action, or custom Aura component always use Lightning runtime. All other methods depend on whether Lightning runtime has been enabled in your org's Process Automation settings.
-
Deepak
MemberAugust 21, 2020 at 3:59 pm in reply to: Whats s use of name credentials in salesforce?A named credential specifies the URL of a callout endpoint and its required authentication parameters in one definition. For example, for an Apex callout, your code handles authentication, which can be less secure and especially complicated for OAuth implementations.
-
Deepak
MemberAugust 21, 2020 at 6:13 am in reply to: how we can integrate salesforce and sharepoint?Using Connect, you can integrate Salesforce and Sharepoint.
-
Deepak
MemberAugust 21, 2020 at 6:10 am in reply to: When should we use this in JS/Helper $A.get("e.force:closeQuickAction").fire()?To close a quick action panel, usually in response to completing or canceling the action, run $A.get("e.force:closeQuickAction").fire();.
-
Deepak
MemberAugust 20, 2020 at 7:33 am in reply to: How do you show the map in the lightning component?You can show map like below:
In component,
<aura:attribute name="mapVar" type="List" />
<aura:iteration items="{!v.mapVar}" var="map" >
key :- {!map.key} and Value :- {!map.value}
</aura:iteration>
<lightning:button label="CreateMap" onclick="{!c.doCreatemap}" />
In JS Controller,
({
doCreatemap : function(component, event, helper) {
var map = [];
for(var i=0; i<10; i++){
map.push({
key:i,
value:'Test' +i
});
}
component.set('v.mapVar',map);
}
}) -
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. External data sources have associated external objects, which your users and the Lightning platform use to interact with the external data and content.
-
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.
-
Deepak
MemberAugust 19, 2020 at 2:18 pm in reply to: How to delete related records from Account record by Flow in Salesforce?If you store the IDs of the records to delete in a record variable or record collection variable, choose to use the IDs from a record variable or record collection variable. Then select the variable to use. Important For the variable that you select, make sure that each record's ID value is set.
-
Deepak
MemberAugust 19, 2020 at 2:17 pm in reply to: When Share button will be available on record detail page in Salesforce?The Sharing button may appear on an account even though your organization-wide default for accounts is Public Read/Write, if your organization-wide default for related opportunities is Public Read Only. When the button is available on the page layout, administrators see the button on all records.
-
Salesforce offers a user role hierarchy that you can use with sharing settings to determine the levels of access that users have to your Salesforce org data. Roles within the hierarchy affect access on key components such as records and reports.
-
User Provisioning Flow are provisions users for third-party services. For example, use this flow type to customize the user provisioning configuration for a connected app to link Salesforce users with their Google Apps accounts.
-
Deepak
MemberAugust 18, 2020 at 7:40 am in reply to: What is a difference between system log and debug log in Salesforce?The System log contains all the system related information, anonymous apex execution etc while the debug log contains all the debug statements and program execution related to the user for which the debug is granted.
-
Deepak
MemberAugust 18, 2020 at 7:36 am in reply to: What is System mode and user mode in Salesforce?System Mode means running apex code by ignoring concern about user's permissions. User mode means running apex code by respecting concern about user's permissions and sharing of records.
-
The @JsonAccess annotation defined at Apex class level controls whether instances of the class can be serialized or deserialized. The serializable and deserializable parameters of the @JsonAccess annotation enforce the contexts in which Apex allows serialization and deserialization.
-
From Setup :
Enter Support Settings in the Quick Find box, then select Support Settings. Click Edit. Select Enable Case Feed Actions and Feed Items . Click Save. -
Feed-based page layouts make it easier to work with records by providing two separate views: one for the record's feed, and one for its details, including related lists. Feed-based layouts are available on account, asset, case, contact, lead, opportunity, custom, and external objects.
-
Deepak
MemberAugust 14, 2020 at 2:25 pm in reply to: What all data type can be used as controlling fields in Salesforce?Controlling fields can be any picklist (with at least one and fewer than 300 values) or checkbox field on the same record.