V8.03.4xx Change Log

Ever wish you could see the change log for tracked changes when the UI form does not have the view change log item on the actions menu? Such as UD tables?

Add an Assembly reference to Epicor.Mfg.AD.ChgLog.dll

in the event handler for the event you will use to invoke the viewer (you can even add the option to the actions menu by using code posted in other messages):

dim myvar as Epicor.Mfg.UI.App.ChgLogEntry.ChgLogArgs
myvar.Start(oTrans,"table name","row ident field of data",true)

that's it.
So to view UD10 change log, it would look like:

dim chg as Epicor.Mfg.UI.App.ChgLogEntry.ChgLogArgs
chg.Start(oTrans,"UD10",edvUD10.dataView(edvUD10.Row)("RowIdent").ToString(),true)