AMT Help Files
Home Development Command Translation CICS Commands UNLOCK

UNLOCK

COBOL Java
EXEC CICS UNLOCK ibmCics.unlock

Syntax

ibmCics.unlock (<fileName>, [<noHandle>]);

Parameter(s)

<fileName>
The file to be released.
<noHandle>
Optional boolean. If set to true, exceptions created by this command will be ignored.

Example(s)

COBOL Java
EXEC CICS
    UNLOCK
        FILE('CUSTFILE')
        NOHANDLE
END-EXEC.
                
ibmCics.unlock("CUSTFILE", true);
                

Contents

 Go to top