Do you know the syntax to invoke LMINIT in Cobol? I have manuals both paper and online but the examples don't work. As best as I can tell it is something like:
10 DSNVAR PIC X(8) VALUE SPACES.
10 SYSUT01 PIC X(8) VALUE 'SYSUT01 '.
CALL 'ISPLINK' USING ISP-LMINIT DSNVAR
SYSUT01.
This compiles but at runtime causes:
Required parm missing
Not all required parameters were found for the LMINIT service.
10 DSNVAR PIC X(8) VALUE SPACES.
10 SYSUT01 PIC X(8) VALUE 'SYSUT01 '.
CALL 'ISPLINK' USING ISP-LMINIT DSNVAR
SYSUT01.
This compiles but at runtime causes:
Required parm missing
Not all required parameters were found for the LMINIT service.