Does anyone know of a method or process that would automatically invoke a metadata refresh (or part there of) - without user interaction.
Aam ware of the CRM.RefreshMetaData() reference.
Does anyone know of a method or process that would automatically invoke a metadata refresh (or part there of) - without user interaction.
Aam ware of the CRM.RefreshMetaData() reference.
Hi Darren,
have done this in a table script e.g:
function PostInsertRecord()
{
// Handle post insert record actions here
var captRec = CRM.CreateRecord("Custom_Captions");
captRec.Capt_FamilyType = "Choices";
captRec.Capt_Family = "lead_sc_eventname";
captRec.Capt_Code = Values("wait_name");
captRec.Capt_US = Values("wait_name");
captRec.Capt_UK = Values("wait_name");
captRec.SaveChanges();
CRM.RefreshMetaData();
}
*Community Hub is the new name for Sage City