How can we create an exception of type Jump for a Uproc within a Session in Dollar Universe via UVC or command line "uxadd oex"?
Release : 6.x
Component : Dollar Universe
Example: we want to Jump the execution of AFR_2 in this Session AFR_JUMP
a) Via UVC: you could do this in UVC - Session Monitoring - Right Click in the Uproc AFR_2 - Actions - Jump
This would create an exception on the node for this Uproc and Session.
b) Via the command line "uxadd oex" you first need to know what is the uproc order within the session to pass that value as NUMORDART_SE.
You can get that value by launching a "uxshw ses=session_name" and finding in the first column NumF this value.
Ie:
[root@NODENAME bin]# ./uxshw ses ses=AFR_JUMP lnk
Command : uxshw ses ses=AFR_JUMP lnk vses=*
TYPE | ses
ITEMS | ses : AFR_JUMP
| vses : 000
| label :
| header : AFR_0
| links :
|
|| NumF | NumS | Path | Father | Son | HDP/MU | Return Code ||
|| 0001 | 0002 | OK | AFR_0 | AFR_1 | { } | ||
|| 0002 | 0003 | OK | AFR_1 | AFR_EVENTWAIT | { } | ||
|| 0003 | 0004 | OK | AFR_EVENTWAIT | AFR_2 | { } | ||
|| 0004 | 0005 | OK | AFR_2 | AFR_3 | { } | ||
|
Here, we can see that the uproc order is the 4, so we need to build a command such as:
$UNI_DIR_EXEC/uxadd oex TYPE=JUMP MU=AFR UPR=AFR_2 SES=AFR_JUMP NUMORDART_SE=4
You could also specify some other parameters as explained in the documentation.