Источник:
http://axmas.blogspot.com/2009/07/wh...my-object.html
==============
Who Modified My Object
X++:
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;
}
}
Источник:
http://axmas.blogspot.com/2009/07/wh...my-object.html