Question:
Engage MC Activity Line Requirements for creation. Always ensure an Event Type is used when creating an MC Activity.
Answer:
Code Example:
function storeData(){
var myMCAL = {};
myMCAL.Event_Type_vod__c = "Slide_View_vod";
myMCAL.Custom_Value__c = "My Custom Value";
com.veeva.clm.createMultichannelActivityLine(myActivityLine, showSavedResults);
}
function showSavedResults(results)
{
console.log(JSON.stringify(results));
}
Related Documentation:
N/A
Thank you