RESETBR
| COBOL |
Java |
| EXEC CICS RESETBR |
ibmCics.resetBr |
Syntax
ibmCics.resetBr (new ResetBrOptions()
.fileName(<Filename>)
.ridFld(<Ridfld>)
[.keySpec(<KeySpec>)]
[.keyLength(<Keylength>)]
[.generic(true)]
[.readOption(<ReadOption>)]
[.noHandle(true)]
);
Parameter(s)
<Filename>
The name of the file being browsed.
<Ridfld>
The record identification field.
<KeySpec>
Optional key specification string, valid values are: "RBA", "RRN", "DEBKEY" or "DEBREC".
<Keylength>
Optional length of the record key.
generic
Optional Boolean. Set to true when the search key is a generic key, default is false.
ReadOption
Optional read option of the enum CicsReadOption type. Allowed values are DEFAULT, EQUAL or GTEQ.
noHandle
Optional Boolean. If set to true, exceptions created by this command will be ignored.
Example(s)
| COBOL |
Java |
EXEC CICS RESETBR
FILE('CUSTFILE')
RIDFLD(CM-CUSTOMER-NUMBER)
KEYLENGTH(10)
GENERIC
END-EXEC.
|
ibmCics.resetBr(new ResetBrOptions()
.fileName("CUSTFILE")
.ridFld(locDef.cm_Customer_Number)
.keyLength(10)
.generic(true)
);
|