How is a record added to an existing VSAM RRDS file?
To add records to VSAM RRDS file:
Example:
DEFINE REC-CNT S 4 B VALUE xxx - (xxx is 1 greater than the current number of records on file)
POINT RRDSFILE GE REC-CNT STATUS (check status)
PUT RRDSFILE
STATUS (check status)
REC-CNT = REC-CNT + 1 (loop back to point and put for next record)