jagbrew Beginner
Joined: 09 Aug 2004 Posts: 5 Topics: 4
|
Posted: Mon Aug 09, 2004 3:15 pm Post subject: Need help identifying this BMS Macro |
|
|
I have been given this MACRO statement to understand but I can't seem to find it in any CICS manuals I've found. Anybody know of the docuentation for the following MACRO being specified,.
I have shortened the field defintions down, for readability, but it looks like some sort of substitution, but can't find a reference for how it works or what dialect it would work in.
Code: |
MACRO
GEN2 &C,&D
DWSEL&C DFHMDF POS=(&D,02),LENGTH=01,
ATTRB=(UNPROT,FSET),
INITIAL='_'
DFHMDF POS=(&D,04),LENGTH=01
DWDY1&C DFHMDF POS=(&D,06),
LENGTH=12,
ATTRB=(PROT,FSET)
MEND
GEN2 01,33
GEN2 02,34
GEN2 03,35
GEN2 04,36
GEN2 05,37
GEN2 06,38
GEN2 07,39
|
|
|