Salesforce Query for Phone format
Don't use SOQL to find or query records using phone numbers. Instead, use SOSL. SOSL Example: FIND {7894561237} IN Phone FIELDS RETURNING Account( Name, Phone, Other_Phone__c ) Sample Apex Code: ....
Don't use SOQL to find or query records using phone numbers. Instead, use SOSL. SOSL Example: FIND {7894561237} IN Phone FIELDS RETURNING Account( Name, Phone, Other_Phone__c ) Sample Apex Code: ....
1. Go to Workbench. 2. Use /services/data/v44.0/sobjects/profile/describe.
VALUE() method converts text to a number. So, we can easily use it to check whether Text field value is less than or equal to zero. Check the below example.
To transfer multiple accounts, campaigns, contacts, contracts, and custom objects: Transfer Record AND Edit on the object type To transfer multiple leads: Transfer Leads OR Transfer Record AND Edit on ....
Advantages of Enhanced Related Lists: 1. Up to 10 fields can be shown2. No of Rows can be set3. Column width is auto-size4. Sorting is supported5. Column size can be ....
Patch Releases and Daily Releases are used to deliver scheduled and ad hoc application fixes and are typically seamless to customers. Whenever possible, patches and daily releases are deployed during ....
Sample Query: SELECT Id, Name, Profile.UserLicense.Name FROM User WHERE Name IN ( 'Magulan Duraipandian', 'Test Test' ) Output:
1. Create a Image URL field. 2. Create a Formula field with IMAGE().
Backslash and the following character form an escape sequence that represents special characters. Below a list of several useful escape sequences: ‘ - single quote ” - double quote – ....
Sample Code: var numberObject = 123.4567; document.write( numberObject.toFixed() ); // 123 document.write( numberObject.toFixed( 1 ) ); // 123.5 document.write( numberObject.toFixed( 2 ) ); // 123. 46 document.write( numberObject.toFixed( 3 ) ....