Kirandeep
IndividualForum Replies Created
-
Kirandeep
MemberAugust 7, 2020 at 2:02 pm in reply to: How can we fetch all the required fields of the objects in Salesforce?Hi Pooja ,
You can refer the link below :-
https://www.biswajeetsamal.com/blog/get-all-required-fields-of-sobject-using-apex-in-salesforce/ -
Kirandeep
MemberAugust 7, 2020 at 2:00 pm in reply to: What is the use of stack depth in Salesforce?Stack depth is the number of sheets you want to produce, regardless of the n-up value. The value you want to set there is usually the same as what your cutting device is able to handle (or less).
-
Kirandeep
MemberAugust 6, 2020 at 2:59 pm in reply to: How do I create a data extension in Salesforce Marketing Cloud?Hi Marziya ,
You can refer the link below :-
https://help.salesforce.com/articleView?id=mc_es_create_data_extension.htm&type=5 -
Kirandeep
MemberAugust 6, 2020 at 2:56 pm in reply to: What is the difference between Sales Cloud and Marketing Cloud?Marketing cloud:The Marketing Cloud incorporates integrated solutions for customer journey management, email, mobile, social media, web personalization, advertising, content creation, content management and data analysis.The software includes predictive analytics to help make decisions such as, for example, what channel would be preferable for a given message. A component called Journey Builder helps marketers tailor campaigns to customers' behavior and needs, demographics and communication channel preferences.
Sales Cloud:Sales Cloud refers to the "sales" module in salesforce.com. It includes Leads, Accounts, Contacts, Contracts, Opportunities, Products, Pricebooks, Quotes, and Campaigns (limits apply). It includes features such as Web-to-lead to support online lead capture, with auto-response rules. It is designed to be a start-to-end setup for the entire sales process; you use this to help generate revenue.- This reply was modified 4 years, 3 months ago by Kirandeep.
-
Kirandeep
MemberAugust 6, 2020 at 2:55 pm in reply to: What is included in Salesforce Marketing Cloud?Salesforce Marketing Cloud is a customer relationship management (CRM) platform for marketers that allows them to create and manage marketing relationships and campaigns with customers.
-
Kirandeep
MemberAugust 5, 2020 at 4:12 pm in reply to: How can we add javascript remoting to a Visualforce page in Salesforce?You can refer the link below :-
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_js_remoting_invoking.htm -
Kirandeep
MemberAugust 5, 2020 at 4:10 pm in reply to: Which three data types can be returned from an SOQL statement?- Single sObject.
- List of sObjects.
- Integer.
-
Custom Metadata Type __mdt. Represents a custom metadata record. This object is available in API version 34.0 and later. ... For example, PicklistUsage__mdt represents a custom metadata record based on the PicklistUsage custom metadata type.
-
A roll-up summary field calculates values from related records, such as those in a related list. You can create a roll-up summary field to display a value in a master record based on the values of fields in a detail record. The detail record must be related to the master through a master-detail relationship
-
A Workflow is a sequence of tasks that processes a set of data. Workflows occur across every kind of business and industry. Anytime data is passed between humans and/or systems, a workflow is created. Workflows are the paths that describe how something goes from being undone to done, or raw to processed.
-
Validation rules verify that the data a user enters in a record meets the standards you specify before the user can save the record. A validation rule can contain a formula or expression that evaluates the data in one or more fields and returns a value of “True” or “False”.
-
Kirandeep
MemberJuly 31, 2020 at 3:31 pm in reply to: What is the use of test.isrunningtest() in Salesforce?Returns true if the currently executing code was called by code contained in a test method, false otherwise. Use this method if you need to run different code depending on whether it was being called from a test.
Other scenarios:1) To ensure the trigger doesn't execute the batch if Test.IsRunningTest() is true, and then test the batch class with it's own test method.2) Testing callouts - in your callout code you check to see if you're executing within a unit test context by checking Test.isRunningTest() and instead of getting your callout response from an HttpResponse.send() request, you return a pre-built test string instead. -
<div eid="8jckX_TICt2M1fAPqsekuAs" data-async-context="query:What%20is%20force%20recordData%3F" id="rso"><div lang="en-IN" data-hveid="CA0QAA" data-ved="2ahUKEwj0iay15vfqAhVdRhUIHaojCbcQjDYoAHoECA0QAA">
<div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CA0QAQ"><b style="background-color: transparent; font-family: inherit; font-size: inherit;">force:<b style="background-color: transparent; font-family: inherit; font-size: inherit;">recordData component defines the parameters for accessing, modifying, or creating a record using Lightning Data Service. You have granular control on how you want to display or render the data in your custom component.
<div eid="8jckX_TICt2M1fAPqsekuAs" data-async-context="query:What%20is%20force%20recordData%3F" id="rso"><div lang="en-IN" data-hveid="CA0QAA" data-ved="2ahUKEwj0iay15vfqAhVdRhUIHaojCbcQjDYoAHoECA0QAA"><div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CA0QAQ"></div></div></div></div>
</div></div></div></div>
- This reply was modified 4 years, 3 months ago by Kirandeep.
-
You can refer the link below :-
https://trailhead.salesforce.com/en/content/learn/modules/event_monitoring/event_monitoring_intro -
A named credential specifies the URL of a callout endpoint and its required authentication parameters in one definition. To simplify the setup of authenticated callouts, specify a named credential as the callout endpoint.
-
Bulk API is based on REST principles and is optimized for working with large sets of data. You can use it to insert, update, upsert, or delete many records asynchronously, meaning that you submit a request and come back for the results later. Salesforce processes the request in the background.
-
Kirandeep
MemberJuly 27, 2020 at 4:33 pm in reply to: How we can get the value of input using aura:id in Salesforce?<div>We can get value like this :-</div>component. find("someId"). get("v. value");
-
Kirandeep
MemberJuly 27, 2020 at 4:29 pm in reply to: Can we add Time dependent action in Salesforce Workflow rule when it is active?Time dependent actions in workflow rules can not be added when the following actions takes place. When workflow rule is active. When workflow rule is deactivated and has pending actions in the queue. When the workflow rule criteria of a record is set to: created, and every time it's edited
-
We can use it to query, insert, update, upsert, or delete a large number of records asynchronously by submitting batches which are processed in the background by Salesforce. SOAP API, in contrast, is optimized for real-time client applications that update small numbers of records at a time.
-
Kirandeep
MemberJuly 24, 2020 at 5:18 pm in reply to: How to convert object to Json string in apex of Salesforce?<pre title="">Account acc = new Account(Name = 'Account Name', Phone = '8888888888', Industry = 'Agriculture');
//Code to convert Account to JSON string
String str = JSON.serialize(acc); -
A "Connected App" is an application that can connect to salesforce.com over Identity and Data APIs. Connected Apps use the standard OAuth 2.0 protocol to authenticate, provide Single Sign-On, and acquire access tokens for use with Salesforce APIs.
-
- OFFSET clause can be used to implement pagination in visualforce page tables.
- OFFSET is applied to the result set returned at the time of the query
-
Kirandeep
MemberJuly 23, 2020 at 2:58 pm in reply to: How do I enable view encrypted data in Salesforce?By Default no profile can see Encrypted Data. Only those profile which has “View Encrypted Data” permission can see encrypted fields and by default this permission is not given to any profile. You have to active this permission in profile by checking “View Encrypted Data” check box
-
You cannot use a SOSL query in a trigger.
-
Hi Ayush ,
We can use the following approachList myContact = new List(); myContact = [Select id, Email from contact where Mailingcity ='Alpharetta']; system.debug('Size of List'+myContact.size());