100 LOCKED
100 LOCKED
If the RESP of the CICS command is equal to "100", then it's meaning is LOCKED.
The record might get locked by the other process. Wait for some time and try again.
Default Action - The task gets terminated abnormally.
Command | RESP | RESP2 | Reason, Deafult Action & Solution |
---|---|---|---|
DELETE | 100 | Reason - An attempt has been made to delete a record, but lock exists against the key.
Solution - The record might get locked by the other process. Wait for some time and try again. |
|
READ READNEXT READPREV |
100 | 106 | Reason - An attempt is being made to read a record either specifying the UPDATE keyword or specifying CONSISTENT or REPEATABLE, but the record is locked by a retained lock.
Solution - The record might get locked by the other process. Wait for some time and try again. |
REWRITE | 100 | Reason - An attempt has been made to rewrite a record, but lock exists against the unique alternate key that is involved in the request.
Solution - The record might get locked by the other process. Wait for some time and try again. | |
WRITE | 100 | Reason - An attempt has been made to write a record, but lock exists against the same key of the record.
Solution - The record might get locked by the other process. Wait for some time and try again. |