| IBM MAINFRAME HELP & SUPPORT FORUMS Technical Forums for IBM Mainframe Applications like COBOL, JCL, CICS, DB2, FileAid, DFSORT, Endevor, Xpediter, CoolGen, CA-7&11, AbendAid, IMS, IDMS, PL/I, MqSeries, SyncSort, Assembler, ChangeMan, Easytrieve, InterTest, REXX, CLIST etc...
|
| View previous topic :: View next topic |
| Author |
Message |
ofer71
Joined: 27 Dec 2005
Posts: 1959
Location: Israel
|
| Posted: Tue Jan 17, 2006 12:20 pm Post subject: NATURAL trick: Calling REXX directly from within NATURAL |
|
|
Here is an example of executing a REXX exec directly from NATURAL under TSO or batch.
This example uses IRXJCL, which is the REXX standard routine for invoking REXX in MVS batch. The IRXJCL routine documented in the REXX Reference manual.
I put "directly", as opposed to other ways of executing REXX from within NATURAL. I will post the other ways in separate posts.
The NATURAL program:
Code:
DEFINE DATA LOCAL
1 #REXX-PARM
2 #LEN (B2)
2 #PARM (A80)
END-DEFINE
*
#PARM := 'FROMNAT OFERF.A.REXX(FROMNAT)'
#LEN := 80
*
CALL 'IRXJCL' #LEN #PARM
*
END
The REXX (this is an example only, you can execute any REXX):
Code:
/*------------------------------- REXX -------------------------------
* PROGRAM : FROMNAT
* FUNCTION : CALLED FROM NATURAL. ACCEPTS DS NAME AND VIEW IT.
* AUTHOR : OFER
* DATE : 15/12/03
* HOW TO USE:
* :
*------------------------------------------------------------------*/
ARG DS
DS = STRIP(DS,"B","'")
DS = STRIP(DS)
ADDRESS ISPEXEC "CONTROL ERRORS RETURN"
ADDRESS ISPEXEC "VIEW DATASET('"DS"')"
EXIT
O. |
|
| Back to top |
|
| |
THIS IS AN ARCIVE FORUM IN READ ONLY MODE. IF YOU WANT TO ASK YOUR DOUBTS USE THE ACTUAL FORUM
|