AMT Help Files
Home Development Command Translation CICS Commands INQUIRE TASK

INQUIRE TASK

COBOL Java
EXEC CICS INQUIRE TASK ibmCics.inquireTask

Syntax

ibmCics.inquireTask( <Eibtaskn> [, <Startcode> [, <noHandle>]] );

Parameter(s)

<Eibtaskn>
The task number to inquire. Currently only its own task is supported
<Startcode>
Returns the start code of the task.
noHandle
Optional Boolean. If set to true, exceptions created by this command will be ignored.

Example(s)

COBOL Java
EXEC CICS
    INQUIRE TASK (WS-TASK)
        STARTCODE (WS-STARTCODE)
END-EXEC.
                
ibmCics.inquireTask(locDef.ws_Task, locDef.ws_Startcode);
                

Contents

 Go to top