Custom entry name for LOAD macro
-
- Posts: 1
- Joined: Fri Mar 15, 2019 9:00 pm
- Skillset: Db2, HLASM, C/C++
- Referer: Just Googled
Custom entry name for LOAD macro
I have the module to be loaded, but its name differs due to some parameter. How can LOAD macro be used with dynamically changing entry name?
-
- Global moderator
- Posts: 2105
- Joined: Thu Jun 03, 2010 6:21 pm
- Skillset: Assembler, JCL, utilities
- Referer: zos.efglobe.com
Re: Custom entry name for LOAD macro
Yes.
As you know, something like LOAD EP=XYZ can only load module XYZ.
However, you can specify the name of an 8 byte character variable.
Your code can change the contents of VARIABLE to any load module name the program requires.
As you know, something like LOAD EP=XYZ can only load module XYZ.
However, you can specify the name of an 8 byte character variable.
Code: Select all
LOAD EPLOC=VARIABLE
...
VARIABLE DC CL8'XYZ'
Your code can change the contents of VARIABLE to any load module name the program requires.
-
- Similar Topics
- Replies
- Views
- Last post
-
- 8
- 4952
-
by Pedro
View the latest post
Sat Jul 31, 2021 6:44 am
-
-
ISPF Custom Line Edit macros do not work anymore
by harisukumaran » Thu Jun 27, 2024 4:42 am » in TSO & ISPF - 0
- 1255
-
by harisukumaran
View the latest post
Thu Jun 27, 2024 4:42 am
-
-
-
How to identify ASM load modules in a load lib
by Misha786 » Thu May 16, 2024 7:08 pm » in Assembler - 0
- 2346
-
by Misha786
View the latest post
Thu May 16, 2024 7:08 pm
-
-
-
How I am able to assemble an SMP/E module from ASSEM entry
by futohomok » Thu Mar 14, 2024 2:32 pm » in System programming - 0
- 2975
-
by futohomok
View the latest post
Thu Mar 14, 2024 2:32 pm
-
-
-
Ho can I to assemble any ASSEM entry in some target zone
by futohomok » Mon Oct 30, 2023 2:32 pm » in IMS DB/DC - 0
- 2231
-
by futohomok
View the latest post
Mon Oct 30, 2023 2:32 pm
-