CALL

The CALL command enables REXX to call NCL procedures, including parameters and shared variables. You must explicitly name any variables that you want to share. Do not use prefixes.

This command has the following format:

CALL PROC=procname [PARMm=value1,..valuem] [SHAREn=name1,..namen]

Restrictions

Example: CALL Command

'CALL PROC=$esapi00 PARM1=CLASS=translate PARM2=data=AHRSP',
     'SHARE1=$ESXLATEFullTxt SHARE2=$ESXLATEShortTxt'
say $ESXLATEFullTxt
say $ESXLATEShortTxt


Copyright © 2009 CA. All rights reserved.