Loading and Executing Load Modules

To load and execute a load module in a member of a partitioned data set, specify the name of the data set with the name of the member enclosed in parentheses.

For example, to load and execute the load module in member JOYCE of data set PUBS.LOAD, enter:
CALL PUBS(JOYCE)
If the partitioned data set does not conform to data set naming conventions, then you must specify the member name that contains the program you want to execute. If you specify a fully-qualified data set name, enclose it in single quotation marks in the following manner:
CALL 'D00ABC1.MYPROG.LOADMOD(DISCHARG)'
or
CALL 'SYS1.LINKLIB(IEUASM)'

If you do not enclose your data set name in quotes, a high-level userid is prefixed to the data set name and the low-level qualifier, LOAD, is attached as well.

For example, if USER1 accesses PUBS with the following:
CALL PUBS
the actual program accessed is in member TEMPNAME in USER1.PUBS.LOAD.