Hi,
I am new to rexx and ....
I am writing a small utility to generate a tree structure of one program calling another, up to 5 levels.
I create the tree and put it in the QUEUE. when i write it to a flat file it is fine. But when i write it to a PDS it gives me errors.
Here is part of my code....
...........................................
The above code gives me the following error
System abend code 013, reason code 00000020.
Abend in host command EXECIO or address environment routine TSO.
EXECIO error while trying to GET or PUT a record.
C-list or exec TEMPIM failed at line 343.
TSO command returned an unexpected return code. Command:
EXECIO 130 DISKW OUTDD5 (FINIS
................................
Thanks in advance for the help.
Manu
(boston)
I am new to rexx and ....
I am writing a small utility to generate a tree structure of one program calling another, up to 5 levels.
I create the tree and put it in the QUEUE. when i write it to a flat file it is fine. But when i write it to a PDS it gives me errors.
Here is part of my code....
Code:
/*rexx */
..
pull TEMP1
..
..
DS.OUT_5='LV5NS0CN.UTIL.TREE('temp1')'
CALL TSO "ALLOC F( OUTDD5 ) DA( "DS.OUT_5" ) shr "
DD_OUT.1 = FULL_ASTERISK
QUEUE DD_OUT.1
DD_OUT.2 = ' /* THE FOLLOWING FLOW IS GENERATED FROM REXX EXEC',
|| '' TEMPTREE' */'
QUEUE DD_OUT.2
...
...
CALL TSO,
"EXECIO" queued() "DISKW OUTDD5 (FINIS"
The above code gives me the following error
System abend code 013, reason code 00000020.
Abend in host command EXECIO or address environment routine TSO.
EXECIO error while trying to GET or PUT a record.
C-list or exec TEMPIM failed at line 343.
TSO command returned an unexpected return code. Command:
EXECIO 130 DISKW OUTDD5 (FINIS
................................
Thanks in advance for the help.
Manu
(boston)