AMT Help Files
Home Development Command Translation CICS Commands JOURNAL

JOURNAL

COBOL Java
EXEC CICS JOURNAL ibmCics.journal

Syntax

ibmCics.journal ( <JFileId>, <JTypeId>, <From>[, <Length>] );

Parameter(s)

<JFileId>
Journal file identifier.
<JTypeId>
Journal type identifier.
<From>
The data to be written to the journal.
<Length>
Optional length of the data to be written.

Example(s)

COBOL Java
EXEC CICS
    JOURNAL
        JFILEID(8)
        JTYPEID('ES')
        FROM(WS-DATA)
        LENGTH(256)
END-EXEC.
                
ibmCics.journal(8, "ES", locDef.ws_Data, 256);
                

Contents

 Go to top