
During Lead Conversion Mapping, we need to map different data type fields with the same data type fields. Using some apex code customization, we can achieve this easily. Here I am going to explain how we can dynamically populate fields of sObject can. syntax- SobjectVariable.put(fieldApi,value); Account acnt = new Account(); acnt.put(‘Name’, New Account);...
Continue Reading