How to upload multi picklist values through data loader?
For inserting or updating multi select pick list fields through the Apex Data Loader, multiple values for the mulit picklist field are separated by a semi-colon ";". For example, for a ....
For inserting or updating multi select pick list fields through the Apex Data Loader, multiple values for the mulit picklist field are separated by a semi-colon ";". For example, for a ....
Sample code: Visualforce page: <apex:page controller="Sample" ><apex:form > <apex:pageblock > <apex:pageblockSection > <apex:pageblockSectionItem >Date:</apex:pageblockSectionItem> <apex:pageblockSectionItem ><apex:inputtext onfocus="DatePicker.pickDate(true, this , false);" value="{!dat}" id="dt"/></apex:pageblockSectionItem> <apex:pageblockSectionItem >Age:</apex:pageblockSectionItem> <apex:pageblockSectionItem ><apex:outputText value="{!age}" /></apex:pageblockSectionItem> ....
Kindly follow the below steps to import other language data using Apex Data loader 1. Open the .xls file that displays the other language characters correctly and which was prepared ....
We have to use nested SUBSTITUTE() methods for multiple replacing of characters. Example: SUBSTITUTE(SUBSTITUTE(Name," ", ""),"-","" ) In this example, we can remove "-" and space.
Example: OR( AND( ISPICKVAL( Country_Code__c , "USA"),NOT( REGEX( Pincode__c , "\d{5}(-\d{4})?") ) ), AND( ISPICKVAL( Country_Code__c , "MEX"), NOT(REGEX( Pincode__c , "\d{5}")), NOT(REGEX( Pincode__c , "\d{6}")) ), AND( ISPICKVAL( Country_Code__c ....
Database.setSavepoint() is used to define a point at which DML operations can be rolled back. If any error occurs during DML Operations, that contains many statements, the application will be ....
Sample code:Visualforce page:<apex:page controller="Sample" ><apex:form > <apex:pageBlock > <apex:pageblockTable value="{!usrs}" var="u"> <apex:column > <apex:outputLink target="_blank" value="/{!u.id}">{!u.Name}</apex:outputLink> </apex:column> </apex:pageblockTable> </apex:pageblock> </apex:form> </apex:page>Apex Controller:public class Sample { public String obj; public ....
Sample Code: Visualforce page: <apex:page controller="Sample" ><apex:form > <apex:pageBlock > <apex:pageBlockSection > <apex:pageBlockSectionItem > <apex:outputLabel value="Objects"/> </apex:pageBlockSectionItem> <apex:pageBlockSectionItem > <apex:selectList size="1" value="{!obj}" > <apex:selectOptions value="{!objs}"/> </apex:selectList> </apex:pageBlockSectionItem> </apex:pageBlockSection> ....
1. Go to Setup --> Data Management --> Mass Transfer Approval Requests. 2. Enter the search conditions that the approval requests you are transferring or removing must match. 3. Click ....
Apex Class: global class approvalRecall{ webservice static void recallApproval(Id recId) { List<ProcessInstanceWorkitem> piwi = [SELECT Id, ProcessInstanceId, ProcessInstance.TargetObjectId FROM ProcessInstanceWorkitem WHERE ProcessInstance.TargetObjectId =: recId]; Approval.ProcessWorkitemRequest req = new ....