Skip to main content

Create and sObject Dynamically


 public static void testObjectCreation(String ObjectDevName,map<string,string> FieldValuePair) {
        //Creating a new sObject
            sObject sObj = Schema.getGlobalDescribe().get(ObjectDevName).newSObject() ;
            for(string field: FieldValuePair.keyset()){
                sObj.put(field, FieldValuePair.get(field)) ;  
            }
            insert sObj ;
    }

Comments

Popular posts from this blog

Override Name in the Salesforce Cloud Console

Service Cloud Console HyperLink Opens new window outside of the console, Opens new tab inside the console. HYPERLINK("javascript:if(typeof(srcUp)=='function') {srcUp('/" & Id & "?isdtp=vw');}"+ " else {window.location.href='/" & Id & "'}", User__r.FirstName + ' ' + User__r.LastName, "_self" ) Checks if the srcUp exists and if it does, you're in the console.