Kirandeep
IndividualForum Replies Created
-
Kirandeep
MemberOctober 28, 2020 at 2:14 pm in reply to: Can we query long text area in Salesforce?You can query records for long text type field but you can't put these fields in WHERE clause. Salesforce don't allow the fields to be used in where clause if their length is greater than 255.
-
Kirandeep
MemberOctober 28, 2020 at 2:10 pm in reply to: query big objects if you're working with an extremely large set of data in Apex?Async SOQL is the most efficient way to process the large amount of data in a big object.
-
Hi ,
You can refer link below :-
https://trailhead.salesforce.com/content/learn/modules/big_objects/big_objects_querying -
Kirandeep
MemberOctober 27, 2020 at 3:38 pm in reply to: Does smartsheet integrate with Salesforce?You can use the Smartsheet for Salesforce and Service Cloud Connectors to synchronize data between Salesforce or Service Cloud objects and sheets in Smartsheet.
- This reply was modified 4 years ago by Kirandeep.
-
Kirandeep
MemberOctober 27, 2020 at 3:33 pm in reply to: How to find if a particular value is in the list in Apex?set<string> myString = new Set<String>{'a', 'b'};
Boolean result;
result = myString.contains('z');
system.assertEquals(result, false); -
Kirandeep
MemberOctober 27, 2020 at 3:27 pm in reply to: What is the use of Apex Flex Queue in Salesforce?Monitor the status of Apex jobs in the Apex flex queue, and reorder them to control which jobs are processed first.
-
Encrypt data at rest. The Salesforce Shield Platform Encryption solution encrypts data at rest when stored on our servers, in the database, in search index files, and the file system. Shield Platform Encryption uses that metadata to tell the other platform features which data is encrypted.
-
Kirandeep
MemberOctober 22, 2020 at 12:29 pm in reply to: How to enable platform encryption in Salesforce?To enable Shield Platform Encryption, you need the Customize Application and Manage Encryption Keys permissions. After you enable encryption, you can give others permission to complete administration tasks on the Encryption Policy page. However, you likely don't want everyone managing encryption keys.
-
Kirandeep
MemberOctober 22, 2020 at 12:28 pm in reply to: What’s the Difference Between Classic Encryption and Shield Platform Encryption?With Shield Platform Encryption, you can encrypt a variety of widely used standard fields, along with some custom fields and many kinds of files. ... Classic encryption lets you protect only a special type of custom text field, which you create for that purpose.
-
Kirandeep
MemberOctober 21, 2020 at 3:14 pm in reply to: How to remove particular substring from string in Salesforce?Hi Deepak,
You can use remove(substring) method of String Class -
Kirandeep
MemberOctober 20, 2020 at 4:29 pm in reply to: What are the three types of AWS cloud deployment models?There are three cloud deployment models : cloud, hybrid, and on-premises.
-
Usage. Use the System. RestContext class to access the RestRequest and RestResponse objects in your Apex REST methods.
-
Kirandeep
MemberOctober 20, 2020 at 2:25 pm in reply to: Which exception type Cannot be caught in Salesforce?One such exception is the limit exception ( System. LimitException ) that the runtime throws if a governor limit has been exceeded, such as when the maximum number of SOQL queries issued has been exceeded.
-
Kirandeep
MemberOctober 20, 2020 at 2:22 pm in reply to: What is the tag used for in Visualforce pages?actionSupport component adds AJAX support to other components in visualforce. It allows components to be refreshed asynchronously by calling the controller’s method when any event occurs (like click on button). It allows us to do partial page refresh asynchronously without refreshing full page.
-
Kirandeep
MemberOctober 19, 2020 at 12:39 pm in reply to: How to get all fields for an sObject in Salesforce?Hi, Use standard schema class to get all fields of sobject, it also returns the properties of fields. Map <String, Schema. SObjectType> mapSobjects = Schema.
-
Kirandeep
MemberOctober 15, 2020 at 3:39 pm in reply to: What is the use of rightPad() method of String Class in apex ?It returns the current String padded with spaces on the right and of the specified length.
-
Kirandeep
MemberOctober 15, 2020 at 3:38 pm in reply to: Rightmost characters of the current String of the specified length in apex ?Hi Anuj,
You can use right() method of string Class -
Kirandeep
MemberOctober 15, 2020 at 2:42 pm in reply to: How to show error messages in Visualforce pages in Salesforce?Hi Deepak ,
You can refer link below :-
https://www.sfdcpoint.com/salesforce/show-error-message-visualforce-page/ -
Kirandeep
MemberOctober 14, 2020 at 1:32 pm in reply to: How do I automatically log calls in Salesforce?Hi Ayush ,
you can refer the link below :-
https://www.ringdna.com/blog/how-to-log-call-salesforce#:~:text=Step%201%3A%20Log%20into%20Salesforce,what%20the%20call%20is%20about. -
Kirandeep
MemberOctober 14, 2020 at 1:31 pm in reply to: How do I create a log a call button in Salesforce lightning?Hi Ayush ,
You can refer the link below :-
https://help.salesforce.com/articleView?id=000232901&r=https%3A%2F%2Fwww.google.com%2F&type=1 -
Enhanced Email gives you and your users a ton of email functionality to better drive your business processes, including the ability to relate emails to other records, add custom fields to emails, use triggers with emails, modify the email layout, and manage emails using the Salesforce API.
-
Kirandeep
MemberOctober 13, 2020 at 9:50 am in reply to: What are the difference between Event and Task in Salesforce?The main difference between an event and a task is that an event is a blocked-off period of time on your calendar, whereas a to-do is just an item on a checklist with a specific due date. Events are things like a 10:00am meeting with a co-worker or a noon lunch appointment with a client.
-
Use the JSONParser class methods to parse JSON-encoded content. These methods enable you to parse a JSON-formatted response that's returned from a call to an external service, such as a web service callout.
-
Kirandeep
MemberOctober 12, 2020 at 12:24 pm in reply to: How to access and update List type custom setting in Apex?Hi Anuj ,
You can refer the below :-
http://blogatsalesforce.blogspot.com/2015/03/use-custom-setting-efficiently-in-apex.html -
Hi ,
You can refer link below :-
https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/file_based.htm