Hi experts,
In an old NAV, I have a solution where some code is added in the middle of codeunit 80, procedure PostItemJnlLine. The code must only be run sometimes. It is controllede by an extra parameter on the procedure. So depending on where PostItemJnlLine is called from, the extra parameter is set to true or false.
How do I do that in Business Central cloud?
I can add my code to one of the "On..." procedures, but is there a way to send an extra parameter to a standard procedure like PostItemJnlLine or can I set a global variable in codeunit 80 somehow?
Is it possible for my code in the "On..." procedure to communicate with one of the calling programs higher up in the call stack?
My situation is like this:
Procedure A:
PostItemJnlLine(..., true);
Procedure B:
PostItemJnlLine(..., false);
PostItemJnlLine:
...
if parameter then
runExtraCode...