BSFNLevel = Return values

Kmcnally

Active Member
can someone guide me in the right direction of a list of BSFN return codes and what they mean?
blush.gif
 
Hi

Success - 0
Warning - 1
Error - 2

You can return this code by calling "Set NER Return Code" BSFN inside your NER.

Hope this answer is valid for your question.

Thanks
BSK
 
Thank you...however in the JDEDebug log it does not tell me what the error is...I am currently reviewing the UBE log..hopefully I can find something there..
 
Your topic title might be misleading, so I thought I would clear it up.

BSFNLevel is not the return value. It is the number of calls deep the processing is. For example, lets say you run a UBE called R55UBE.

Let's say the Do Section event calls a business function. When it calls it, the Business Function Level will be 1. If that business function calls another function, that call will be at level 2. It continues like that so you know how deep into the call stack you are.

<font class="small">Code:</font><hr /><pre>
R55UBE
Do Section
BusinessFunction1 (BSFNLevel = 1)
BusinessFunction2 (BSFNLevel = 2)
Do Section
BusinessFunction1 (BSFNLevel = 1)
BusinessFunction2 (BSFNLevel = 2)
BusinessFunction3 (BSFNLevel = 3)
Do Section
BusinessFunction1 (BSFNLevel = 1)
BusinessFunction2 (BSFNLevel = 2)
</pre><hr />
Etc, etc.
 
Back
Top