1 / 8

Positioning the File Pointer and calling programs

Positioning the File Pointer and calling programs. Fall 2011. SETLL – Positioning the File Pointer. Sequential Access File Positions the file pointer at the first record where the key field is greater than on equal to what’s looked for Must be followed by a READ

diata
Download Presentation

Positioning the File Pointer and calling programs

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Positioning the File Pointer and calling programs Fall 2011

  2. SETLL – Positioning the File Pointer • Sequential Access File • Positions the file pointer at the first record where the key field is greater than on equal to what’s looked for • Must be followed by a READ • Use %FOUND to determine if the record found is greater than or equal to the key field • Use %EQUAL to determine if the record found is exactly the same as the key field that you are looking for

  3. SETLL Example /Free setll *loval custmast; read custmast; /end-free

  4. SETLL – Example /Free setllcustincustmast; if %equal(custmast); exsrvalidcust; else; exsrinvalidcust; endif; /end-free • Custno Note Note_dtls • 1 Customer arrived • 1 2 Customer left • 1 Customer away • If Custin = 1, then the file pointer • for the first record will be returned

  5. SETGT • Sequential Access File • Positions the file pointer at the first record where the key field is greater than what’s looked for • Must be followed by a READ • Use %FOUND to determine if the record found is greater than the key field

  6. Setgt Example /Free setll custin custmast; if %equal(custmast); exsr validcust; else; exsr invalidcust; endif; /end-free • Custno Note Note_dtls • 1 Customer arrived • 1 2 Customer left • 1 Customer away • If Custin = 1, then the file pointer • for the last record will be returned

  7. Calling Programs Code in pgmA Dfullreport PR EXTPGM(‘REPORT’) /free callp fullreport(); Code in pgmB pgmA pgmB No parameters Passed

  8. Calling Programs Code in pgmA Code in pgmB DDtlreport PR EXTPGM(‘REPORT’) Ddtlreport PR D parm1 10A D parm1 10A /free Ddtlreport PI callp Dtlreport(field1); D parm1 10A Code in pgmB pgmA pgmB parameters Passed

More Related