Unconfigured Ad Widget

Collapse

Announcement

Collapse
No announcement yet.

Implicit open error on internally described output file

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Implicit open error on internally described output file

    JMartin12 wrote: > Can someone tell me how to fix the following: > > Error messages: > File OS525OTH in library *LIBL not found or inline data file missing. > Error message CPF4101 appeared during OPEN for file OS525OTH. > Function check. RNX1216 unmonitored by OS525ECUST at statement > 0001000001, instruction X'0000'. What is in your library list? Which library is the file located in? bill

  • #2
    Implicit open error on internally described output file

    The library the file is located in is in my library list.

    Comment


    • #3
      Implicit open error on internally described output file

      Can someone tell me how to fix the following: Error messages: File OS525OTH in library *LIBL not found or inline data file missing. Error message CPF4101 appeared during OPEN for file OS525OTH. Function check. RNX1216 unmonitored by OS525ECUST at statement 0001000001, instruction X'0000'. FOS525CAN O F 87 PRINTER OFLIND(*INOF) F INFDS(OS525D) FOS525OTH O F 87 PRINTER OFLIND(*INOG) F INFDS(OS526D) D OS525D DS D****************************************** D* PRINTER FILE DATA STRUCTURE (OS525D) D****************************************** D OS525F 1 102 D OS525S *STATUS D OS525_LIN 367 368B 0 D* D OS526D DS D****************************************** D* PRINTER FILE DATA STRUCTURE (OS526D) D****************************************** D OS526F 1 102 D OS526S *STATUS D OS525_LIN2 367 368B 0 IF PRTCD = 'C'; IF NOT %OPEN(OS525CAN); OPEN OS525CAN; ENDIF; EXCEPT @HDR; ENDIF; IF PRTCD = 'O'; IF NOT %OPEN(OS525OTH); OPEN OS525OTH; ENDIF; EXCEPT @HDR2; ENDIF; I tried also using the USROPN and %OPEN but these didn't work either. I have two different forms the information needs to print on based the the PRTCD but didn't want to use two separate programs since the majority of the data is the same

      Comment


      • #4
        Implicit open error on internally described output file

        Hi Add usropn in the kewords of the 2 file. Regards

        Comment

        Working...
        X