The problem is:
Invoke by Java-CTG e CICS program and by this prog call other cobol programs.
The java part is solved.
The problem is how to build a unique CICS program Driver to call other cobol progs:
This is the CICS Driver PRog:
LINKAGE SECTION.
01 DFHCOMMAREA.
02 PROG-NAME PIC X(8).
02 PROG-AREA-LEN PIC 9(5).
02 PROG-AREA PIC X(32000).
PROG-NAME is the name of cobol program to CALL
PROG-AREA-NAME is the size of COMMAREA of PROG-NAME
How to call PROG-TO-CALL using the PROG-AREA with size PROG-AREA-LEN ???
this is not working:
CALL NOME-PROGRAMMA USING AREA-PROGRAMMA(1:LEN-AREA-PROGRAMMA)
what to do ?
thanks...
Invoke by Java-CTG e CICS program and by this prog call other cobol programs.
The java part is solved.
The problem is how to build a unique CICS program Driver to call other cobol progs:
This is the CICS Driver PRog:
LINKAGE SECTION.
01 DFHCOMMAREA.
02 PROG-NAME PIC X(8).
02 PROG-AREA-LEN PIC 9(5).
02 PROG-AREA PIC X(32000).
PROG-NAME is the name of cobol program to CALL
PROG-AREA-NAME is the size of COMMAREA of PROG-NAME
How to call PROG-TO-CALL using the PROG-AREA with size PROG-AREA-LEN ???
this is not working:
CALL NOME-PROGRAMMA USING AREA-PROGRAMMA(1:LEN-AREA-PROGRAMMA)
what to do ?
thanks...