hi,
what is the correct form to read and write the formats of the dspfile?
i don t know if is it correct:
READ PANTALLA2 FORMAT IS 'ASU906CEF1'
what is the meaning of 'ASU906CEF1' ?
Software/Hardware used:
as400
ASKED:
October 27, 2009 4:50 AM
UPDATED:
October 27, 2009 6:53 PM
The EXFMT opcode does a combination of write and then read from the display file.
RPG and CL both have instructions that write and then read display format records in a single operation — EXFMT for RPG as previously noted, and SNDRCVF for CL. Many other languages need both a WRITE and a READ instruction to be coded separately. COBOL requires both statements.
Tom