Newsletters   Subscriptions  Forums  Store   Career  Media Kit  About Us  Contact  Search   Home 
fhg
Volume 5, Number 9 -- March 2, 2005

Much Ado About an Override


by Ted Holt


Just when I think I've seen it all, along comes something unexpected. A dedicated reader of this column, one of the several Davids who writes me regularly, recently sent me an email with a line of CL code and the question, "Why does this work?"

This is the CL command:

OVRDBF FILE(REPORT) TOFILE(QSYSPRT)

If nothing appears out of kilter, then take a look at the following RPG file specs:

Fqsysprt   o    f  132        printer oflind(*inof)
Freport    o    f  132        printer oflind(*inov)

Or, if you prefer, the COBOL equivalent from the environment division:

Select print1 assign to printer-qsysprt.
Select print2 assign to printer-report.

That's right. REPORT and QSYSPRT are printer files, but the command is Override with Database File.

Today is as good as any day to take a closer look at overrides. After all, judging from some of the code I've had to work on, the override commands seem to be among the few that some programmers seem to know.

When the operating system is called on to run a program, it has to go through certain preliminary steps, one of which is resolving all file references. If there are overrides, the system honors those, but let's forget about overrides for the moment. In this example, the system looks for files REPORT and QSYSPRT. If there is a file named REPORT, the program attempts to allocate it to the program. The strange thing is that REPORT does not have to be a printer file. The same is true for QSYSPRT, of course.

If you're interested, take it for a test drive. Flesh out the RPG or COBOL program and compile it:

Fqsysprt   o    f  132        printer oflind(*inof)
Freport    o    f  132        printer oflind(*inov)
C                   eval      *inlr = *on
C                   except
Oqsysprt   e                        1
O                                              'qsysprt test'
Oreport    e                        1
O                                              'report test'

Identification division.
Program-ID.    Prt002A.

Environment division.
Configuration section.
Input-output section.
File-control.
    Select print1 assign to printer-qsysprt.
    Select print2 assign to printer-report.

Data division.
File section.
FD  Print1.
01  Print1-rec.
    05  Msg1  pic x(132).
FD  Print2.
01  Print2-rec.
    05  Msg2  pic x(132).

Procedure division.
Main-paragraph.
    Open output print1 print2.
    Move "Print1" to Msg1.
    Write Print1-rec after 1.
    Move "Print2" to Msg2.
    Write Print2-rec after 1.
    Goback.

Yes, I had to be sure that it worked the same way in COBOL too. I didn't try C. Does anybody use C for report generation?

Create a program-described database file in QTEMP:

CRTPF QTEMP/REPORT RCDLEN(132)

Make sure that QTEMP is higher in the library list than any other library that contains a file called REPORT. Call your program. Take a look at the REPORT file in QTEMP:

DSPPFM QTEMP/REPORT

You should see the output from your program. The operating system didn't care that the RPG program thought it was writing to a printer file, but REPORT was a database file instead. Check the output produced by your job. You'll see a spool file produced by QSYSPRT.


If one or more overrides are in effect for the file NAME, the operating system will apply them. Clear (or delete) file QTEMP/REPORT, issue the OVRDBF command shown earlier, and call your program again. This time you'll find two spool files, one for REPORT and one for QSYSPRT. The system used the database override to direct printer output to a printer file.

From these two test runs, it is evident that OS/400 allows device independence where it makes sense. That is, you can override a printer file to a database file (in some circumstances), but you can't override an input-capable database file to a printer file. And therein lies the answer to David's question.

The reason David found this oddity was that he needed to make a change to the override. I forget which parameter he had to change, but it was one of the parameters that are found in the Override with Printer File (OVRPRTF) command, such as COPIES or OUTQ. He replaced the OVRDBF command with an OVRPRTF command and everything was copacetic:

OVRPRTF FILE(REPORT) TOFILE(QSYSPRT) COPIES(2)

Click here to contact Ted Holt by e-mail.

Sponsored By
ITERA

What would it cost your company if your
iSeries was down for 2½ days?

One large iSeries shop recently experienced a crippling system failure followed by a series of complications that kept the system down for 2½ days!

Fortunately they had just installed iTera's Echo2 High Availability.

The result: no data was lost, little downtime occurred and users barely had a clue.

Click here to read the full story.


Technical Editors: Howard Arner, Joe Hertvik, Ted Holt,
Shannon O'Donnell, Kevin Vandever
Managing Editor: Shannon Pastore
Contributing Technical Editors: Joel Cochran, Wayne O. Evans, Raymond Everhart,
Bruce Guetzkow, Marc Logemann, David Morris
Publisher and Advertising Director: Jenny Delroy
Advertising Sales Representative: Kim Reed
Contact the Editors: To contact anyone on the IT Jungle Team
Go to our contacts page and send us a message.


THIS ISSUE
SPONSORED BY:

Advanced Systems Concepts
iTera
WorksRight Software


BACK ISSUES

TABLE OF
CONTENTS
Embedding SQL in /free

Much Ado About an Override

Admin Alert: IBM Has Changed the +/- One Release Rule for V5R1 Upgrades


The Four Hundred
Big Blue Pumps Big Bucks into the iSeries

BCD to Aggressively Build Out Its Business Partner Base

Gartner Gives 2004 Server Report Cards

Four Hundred Stuff
Counterpane Brings OS/400 Into Its Managed Security Fold

GST Unveils Line of Affordable Memory for i5 Servers

Informatica Unveils 18-Month Roadmap for Enterprise ETL

Four Hundred Monitor


Copyright © 1996-2008 Guild Companies, Inc. All Rights Reserved.
Guild Companies, Inc. (formerly Midrange Server), 50 Park Terrace East, Suite 8F, New York, NY 10034
Privacy Statement