Hi everyone! This is my first post here in this forum. I have a question about an exercise I'm working on for school. I am trying to submit a job that compiles an assembler program that uses LE. According to the comments we were to change ZUSER## to our user ID which I have done. The note states: The student might need to modify the JCL for data sets beginning
with CEE. Ask your system programmer what the high-level qualifier (HLQ)
is for the Language Environment data sets. The JCL that might need to be
changed is highlighted here:
//C.SYSLIB DD DSN=SYS1.MACLIB,DISP=SHR
// DD DSN=CEE.SCEEMAC,DISP=SHR
//C.SYSIN DD DSN=ZUSER##.LANG.SOURCE(ASMLE),DISP=SHR
//L.SYSLMOD DD DSN=ZUSER##.LANG.LOAD(ASMLE),DISP=SHR
//L.SYSLIB DD DSN=CEE.SCEELKED,DISP=SHR
// DD DSN=CEE.SCEELKEX,DISP=SHR
This is where my problem is, when I submit, I get an error because it tries to allocate to LISTC and not my user ID. I want it to allocate to my user ID. The problem is with the HLQ for the dataset name but I'm not sure of what I should change in my existing code. I have attached the code and the error message. Thank you for any assistance provided.