Subfile Keywords in IBM i
Subfile Keywords: Subfiles are one of the important concepts on IBM i and widely used. Below are some of the Keywords used in Subfiles. SFLNXTCHG (Subfile Next Change) - Used to mark the Subfile record as Modified. So that this record can be read using READC (Read Changed Record) operation in the Program. This needs to be defined in Subfile data format. This can be used by defining Indicator against this Keyword or without defining any Indicator. Using Indicator would help programmer control the operation in the Program. Without the indicator, every record would be marked as Modified by default and READC would read every record. Click Here to see more about SFLNXTCHG & READC. E.g.: A 50 SFLNXTCHG In this example, Indicator '50' can be used to control the SFLNXTCHG. Turning ON the Indicator '50' and Updating the Subfile record would modify the...