Hi,
I want to investigate some value when inserted into a standard table. How is the efficient way to do it ?
I just create a CoC on the table and add the Insert and Write and put breakpoint into that method, but it doesn't stop.
This is the code looks like :
[ExtensionOf(tableStr(RevRecDeferredLine))] final class My_TableRevRecDeferredLine_Extension { public void insert() { next insert(); } public void write() { next Write(); } }
The process in question is Revenue Recognition Schedule, which the table (if I'm not mistaken by looking into the form) is RevRecDeferredLine, so that is my CoC. Also worth to mentioned, this table I believe it is inserted after Sales Order Invoiced, so the debug is started when I'm doing Generate Invoice, but as mentioned, it doesn;t stop at my CoC
Thanks,