Anjali
IndividualForum Replies Created
-
Anjali
MemberJuly 16, 2020 at 7:22 am in reply to: What are List of Global value providers in lightning in Salesforce?$globalID
$Browser
$Label
$Locale
$Resource -
Anjali
MemberJuly 16, 2020 at 7:18 am in reply to: How to create popup in lightning component in Salesforce?Please refer this link-
https://developer.salesforce.com/forums/?id=9060G0000005qtYQAQ -
Blob (binary large object) is a data type which has a huge storage.
-
Anjali
MemberJuly 15, 2020 at 2:11 pm in reply to: What are the types of custom settings in Salesforce?List custom setting
Hierarchy custom setting -
Anjali
MemberJuly 15, 2020 at 1:38 pm in reply to: Did we have any limit on inner query in Salesforce?There is no such limit for inner query.
-
Anjali
MemberJuly 14, 2020 at 2:39 pm in reply to: How to use update record element in Flow Builder in Salesforce?Choose the object whose records you want to update, add conditions to filter down the list of records, and set the field values to change for those records. You can update any field on the record, but the Update Records element doesn't know which fields are required for this object.
-
Anjali
MemberJuly 14, 2020 at 2:37 pm in reply to: What are the different data sources for Journey Builder in Salesforce?Some of the Entry Sources-
The Data Extension Entry Source
The Audience Entry Source
Admit Contacts Via API
Audience Studio -
Please refer the following trailhead -
https://trailhead.salesforce.com/en/content/learn/projects/flow_calculate/flow_calculate_implement -
Anjali
MemberJuly 13, 2020 at 10:12 am in reply to: How does flow help us in behind the scenes automation in Salesforce?A flow is an application that automates a business process by collecting data and doing something in your Salesforce org or an external system. Unlike workflow rules, which always execute behind the scenes, flows can provide screens to guide users through your business process.
-
Business process is Salesforce can be understood as a dedicated process which may include several steps and several automation tools which carry out the business requirement.
-
A bundle contains an Aura definition, such as an Aura component, and its related resources, such as a JavaScript controller. The definition can be a component, application, event, interface, or a tokens collection.
-
Yes a batch class can be called in apex trigger but it doesn't follow the best practices.
-
Anjali
MemberJuly 10, 2020 at 2:14 pm in reply to: Can we call batch class from another batch class in Salesforce?Only in batch class finish method, We can call another batch class.
-
Anjali
MemberJuly 10, 2020 at 2:10 pm in reply to: Can we call webservice from batch apex in Salesforce?To make a Webservice callout in batch Apex, we have to implement Database. AllowsCallouts interface in the class definition.
-
Anjali
MemberJuly 9, 2020 at 11:53 am in reply to: What is serialization and Deserialization in Salesforce?Serialization means to convert an object into that string, and deserialization is its inverse operation.
-
Anjali
MemberJuly 9, 2020 at 11:51 am in reply to: How do I convert an object to a string in Salesforce?To convert sObject to String in Apex, below is the simple code. Example: public Account acct = new Account(Name = 'Test Account'); String objType = String.
-
Returns a new JSON parser. deserialize(jsonString, apexType) Deserializes the specified JSON string into an Apex object of the specified type. deserializeStrict(jsonString, apexType) Deserializes the specified JSON string into an Apex object of the specified type.
-
The 'External ID' field may be used to reference an ID from another, external system. External IDs are searchable in Salesforce and you can also use the Upsert API call with the External ID to refer to records when making changes via Data Loader.
-
Anjali
MemberJuly 8, 2020 at 2:56 pm in reply to: How to check for a particular content version in Salesforce?You can query a particular contantVersion by adding where clause. For example- [Select id, Title, ContentDocumentId from contantVersion where title = 'Test' ];
-
Anjali
MemberJuly 8, 2020 at 2:52 pm in reply to: How do I search within a custom object in Salesforce?To search based on custom objects and/or fields, you will need to use the Search Object Actions. Using this action, you will be able to select any object or any field, including custom ones, that are in your Salesforce account.
-
Anjali
MemberJuly 7, 2020 at 11:40 am in reply to: Compare And Contrast Custom Controllers And Controller Extensions in Salesforce?A controller extension is any Apex class containing a constructor that takes a single argument of type ApexPages. It provides additional functionality to a controller – either a standard controller or a custom controller. Use controller extensions when: You want to leverage the built-in functionality of a standard controller but override one or more actions, such as edit, view, save, or delete.
-
Anjali
MemberJuly 7, 2020 at 11:24 am in reply to: What is compliance categorization in Salesforce?Use the compliance categorization metadata field to record whether a field's data is related to a compliance act, definition, or regulation. Reviewing your fields and applying compliance categorization values can help you uphold data privacy requirements.
-
Record the data owner, field usage, data sensitivity, and compliance categorization for any standard or custom object field. You can also access data classification metadata in the Salesforce API and Apex.
-
Anjali
MemberJuly 6, 2020 at 2:58 pm in reply to: How do I change the size of a batch in Salesforce?executeBatch(new RunThisBatch(), 500); You can set batch size like above. 500 is the batch size in the above syntax.
-
Anjali
MemberJuly 6, 2020 at 2:57 pm in reply to: Whats the differences between 15 and 18 digit record Id's in Salesforce ?15 Digit Id is case-sensitive whereas 18 Digit Id is case-insensitive.
API always makes use of 18 digit Id. and URL in Salesforce makes use of 15 digit Id.