Who Modified My Object
static void WhoModifiedInventTableForm(args a)
{
UtilIdElements UE;
while select UE
where (UE.utilLevel == UtilEntryLevel::USR && UE.recordType == UtilElementType::Form && UE.name == "InventTable")
{
print UE.modifiedBy + " " + date2str(UE.modifiedDate,123,2,2,2,2,2);
pause;
}
}