Anuj
IndividualForum Replies Created
-
Anuj
MemberSeptember 1, 2020 at 2:08 pm in reply to: How to convert List of Strings into String in apex ?`List
slist = new string[]{'abc','bcd','cde','def','efg'}; slist.remove(null);
string allstring = string.join(sList,',');` -
Anuj
MemberAugust 31, 2020 at 3:52 pm in reply to: What is the use of isAsciiPrintable() method in Apex?isAsciiPrintable()
Returns true if the current String contains only ASCII printable characters; otherwise, returns false -
Anuj
MemberAugust 31, 2020 at 3:51 pm in reply to: Which Heroku feature allows to deploy a real app complete code in Salesforce?Hope this will help you:
https://devcenter.heroku.com/articles/integrating-heroku-and-salesforce -
Anuj
MemberAugust 31, 2020 at 3:50 pm in reply to: Which Heroku feature allows you to deploy a real app complete with code, configHope this will help you:
https://devcenter.heroku.com/articles/integrating-heroku-and-salesforce -
Anuj
MemberAugust 28, 2020 at 3:10 pm in reply to: What is the use of swapCase() method of String Class in Apex ?The Swapcase function is used to convert every single characters of string from lower case to upper case and from upper case to lower case.
-
Anuj
MemberAugust 28, 2020 at 3:07 pm in reply to: How to check if a string is empty in Apex in Salesforce?public String CheckIt {get;set;}
//Check IsNotEmpty
public Boolean CheckisNotEmpty()
{
if(String.isNotEmpty(CheckIt))
{
//String is not empty ('') and not null
return true;
}
else
{
//String is empty ('') or blank or null
return false;
}
}
} -
Anuj
MemberAugust 28, 2020 at 3:03 pm in reply to: What is the use of escapeUnicode() method in apex ?Returns a String whose Unicode characters are escaped to a Unicode escape sequence.
-
Anuj
MemberAugust 27, 2020 at 2:06 pm in reply to: What is the use of normalizeSpace() of String Class in Salesforce ?Use this method to compare a string to an object that represents a string or an ID. Returns true if the secondString is not null and represents the same sequence of characters as the String that called the method, ignoring case.
-
Anuj
MemberAugust 27, 2020 at 2:04 pm in reply to: How to check String contains only Unicode digits in apex ?You can use this to check if string contains Unicode digits
global static boolean isNumericSpace(String str) -
Anuj
MemberAugust 27, 2020 at 2:02 pm in reply to: How to check string contains only ASCII printable characters in Apex ?You can use this to check
global static boolean isNumeric(String str) -
Anuj
MemberAugust 26, 2020 at 2:26 pm in reply to: What is the use of System.Approval.unlock() in Salesforce ?Sometimes we have faced business requirement to Lock or Unlock records in Salesforce. We can use apex lock() and unlock() methods in the System. Approval namespace to lock and unlock records by passing in record IDs or sObjects.
-
Anuj
MemberAugust 26, 2020 at 2:25 pm in reply to: What are the methods of LockResult Class in Salesforce ?There are Three Methods of LockResult class.
1. getErrors()
If an error occurred, returns an array of one or more database error objects, providing the error code and description.
2. getId()
Returns the ID of the sObject you are trying to lock.
3. isSuccess()
A Boolean value that is set to true if the lock operation is successful for this object, or false otherwise.- This reply was modified 4 years, 3 months ago by Anuj.
-
Anuj
MemberAugust 26, 2020 at 2:19 pm in reply to: What is the use of LockResult Class in Salesforce ?The <samp>System.Approval.lock()</samp> methods return Approval.LockResult objects. Each element in a LockResult array corresponds to an element in the ID or sObject array passed as a parameter to a <samp>lock</samp> method. The first element in the LockResult array corresponds to the first element in the ID or sObject array, the second element corresponds to the second element, and so on. If only one ID or sObject is passed in, the LockResult array contains a single element.
-
Anuj
MemberAugust 25, 2020 at 1:41 pm in reply to: How to delete a record using Data loader in Salesforce?- Open the Data Loader.
- Click Insert, Update, Upsert, Delete, or Hard Delete. ...
- Enter your Salesforce username and password. ...
- Choose an object. ...
- To select your CSV file, click Browse. ...
- Click Next. ...
- If you are performing an upsert, your CSV file must contain a column of ID values for matching against existing records.
-
Anuj
MemberAugust 25, 2020 at 1:36 pm in reply to: 3.How can we insert a record using Data Loader in Salesforce?- Open the Data Loader.
- Click Insert, Update, Upsert, Delete, or Hard Delete. ...
- Enter your Salesforce username and password. ...
- Choose an object. ...
- To select your CSV file, click Browse. ...
- Click Next. ...
- If you are performing an upsert, your CSV file must contain a column of ID values for matching against existing records.
<div>
</div>
-
In the attachments section with multiple files. Have a checkbox next to each file so you can select multiple files then click on a button to download the selected files.
-
1. Open the menu in a particular Slack workspace, scroll down to Tools, and select Workflow Builder to launch the function.
2. Click the Create button to begin the process, and give your workflow a descriptive title. -
Hi Marziya,
Hope this link will help you:
https://slack.com/intl/en-in/blog/productivity/automate-tasks-in-slack-with-workflow-builder -
Hi Nirav ,
There are six salesforce modules and each module has its importance but out of six three are most commonly used(-->).
1. --> Sales Force Automation.
2. Marketing Automation.
3. --> Customer Service and Support.
4. --> Analytics and Reporting.
5. Extended CRM.
6. Product Technology. -
A matching rule defines how duplicate records are identified in duplicate rules and duplicate jobs. Salesforce provides standard matching rules for business and person accounts, contacts, and leads. You can also create custom matching rules.
-
Login to the production environment and follow the below stated steps:
1. Click on Setup.
2. Scroll down to Administration Setup.
3. Select the Sandbox to see the Sandbox List. -
PushTopic events provide a secure and scalable way to receive notifications for changes to Salesforce data that match a SOQL query you define. Use PushTopic events to: Receive notifications of Salesforce record changes, including create, update, delete, and undelete operations.
-
Anuj
MemberAugust 20, 2020 at 4:31 pm in reply to: How many controllers we can use on the Visualforce page?We can use two controllers on a single salesforce visualforce page. One is controller and for custom functionality, we can use more than one Controller extension.
-
Anuj
MemberAugust 20, 2020 at 4:28 pm in reply to: What is the use of getservertimestamp in Salesforce?The getServerTimestamp() call always returns the timestamp in Coordinated Universal Time (UTC) time zone. However, your local system might automatically display the results in your local time based on your time zone settings.