Saying unsuccesful open/close of file OReport

This is a Mainframe COBOL forum - you can post your queries on Mainframe COBOL, VS COBOL II, COBOL/370 , Enterprise COBOL

Moderators: dbzTHEdinosauer, Moderator Group

Post Reply
ROSALEEN
Member
Posts: 1
Joined: Tue Mar 15, 2016 11:19 pm
Location: donegal

Saying unsuccesful open/close of file OReport

Post by ROSALEEN » Tue Mar 15, 2016 11:25 pm

Hi,

I'm getting error message:
Unsuccesful open or CLOSE of file OREPORT in program DB2QRY06 at relative location X'0C02'.
declarative were specified. The status code was 96.
try point DB2QRY06 at compile unit offset +00000C02 at entry offset +00000C02.

This is the first time I have used SQL within Cobol on a mainframe but I have coded like below. And I want to write the information out to a report.

In my code i have:

INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT O-REPORT-FILE ASSIGN TO OREPORT.
DATA DIVISION.
FILE SECTION.
FD O-REPORT-FILE
RECORDING MODE IS F.
01 REPORT-OUTPUT PIC X(132).
WORKING-STORAGE SECTION.

100-BEGIN.
OPEN OUTPUT O-REPORT-FILE.
MOVE WS-PAGE-COUNT TO WR-PAGE-COUNT.


700-CLOSE-CURSOR.
EXEC SQL
CLOSE CAR-CUR
END-EXEC.
CLOSE O-REPORT-FILE.

Any help would be appreciated.

Post Reply

FREE TUTORIALS

Tutorials
Free tutorials from mainframegurukul
  • JCL Tutorial
    Covers all important JCL concepts.
  • Cobol Tutorial
    This tutorials covers all Cobol Topics from STRING to COMP-3.
  • DB2 Tutorial
    DB2 Tutorial focuses on DB2 COBOL Programming.
  • SORT Tutorial
    This Tutorial covers all important aspects of DFSORT with examples
  • CICS Tutorial
    This CICS tutorial covers CICS concepts and CICS Basics, CICS COBOL Programming.
Interview
Mainframe Interview questions



Other References
Mainframe Tools and others