Sample record fetches
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Sample record fetches
The examples that follow show some of the many ways you can access records. These examples are not meant to be exhaustive, but merely to show some of the flexibility provided by ABL, as shown.
- Specifies the
FIRST,LAST,NEXT, orPREVoptions to step through all records in a particular sequence:FIND FIRST Customer. - Specifies boolean expressions to describe the record or records
to be fetched:
FOR EACH Customer WHERE Customer.CreditLimit > 5000 AND Customer.Balance < 12000: - Specifies a constant value of the primary index for the record.
This works only if the primary index is single-component. Also,
this technique is not supported for the
OPEN QUERYstatement:FIND Item 12. - Specifies one or more field values that are currently in the
screen buffer or record buffer:
PROMPT-FOR Customer.CustNum WITH FRAME abc. FIND Customer USING FRAME abc Customer.CustNum. DISPLAY Customer.Name. - Specifies a previously found related record from another table
(the two tables must share a field with the same name, and that
field must have a
UNIQUEindex in at least one of the tables):FIND FIRST Customer. FOR EACH Order OF Customer: /* This uses the custnum field */ - Specifies a
CONTAINSclause on a word-indexed field:FOR EACH Customer WHERE Customer.Comments CONTAINS "ship":
You cannot use a CONTAINS clause with the FIND statement.
You can use CONTAINS only with the OPEN QUERY and FOR EACH statements.