ibmCics.deq(new DeqOptions.Builder() .resource(<Resource>) [.length(<Length>)] [.noHandle(true)] [.task(true)] .build());
<Resource>The resource to dequeue. <Length>Optional length of the resource. noHandleOptional Boolean. If set to true, exceptions created by this command will be ignored. taskOptional Boolean. If set to true, the task option will be enabled.
EXEC CICS DEQ RESOURCE(RESOURCE-ID) LENGTH(4) END-EXEC.
ibmCics.deq(new DeqOptions.Builder() .resource(locDef.resource_Id) .length(4) .build());