STARTBR
| COBOL |
Java |
| EXEC CICS STARTBR |
ibmCics.startBr |
Syntax
ibmCics.startBr (new StartBrOptions.Builder()
.fileName(<Filename>)
.ridFld(<Ridfld>)
[.keySpec(<KeySpec>)]
[.keyLength(<Keylength>)]
[.generic(true)]
[.readOption(<ReadOption>)]
[.noHandle(true)]
.build());
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 STARTBR
FILE('CUSTFILE')
RIDFLD(CM-CUSTOMER-NUMBER)
KEYLENGTH(10)
GENERIC
END-EXEC.
|
ibmCics.startBr(new StartBrOptions()
.fileName("CUSTFILE")
.ridFld(locDef.cm_Customer_Number)
.keyLength(10)
.generic(true)
);
|