EZTC0652E compiler error when running Easytrieve Db2 IVP job
search cancel

EZTC0652E compiler error when running Easytrieve Db2 IVP job

book

Article ID: 265575

calendar_today

Updated On:

Products

Easytrieve Report Generator

Issue/Introduction

Running Easytrieve release 11.6 dynamic IVP job and receiving the following:

           18  TITLE   'TEST FOR PANSQL INSTALL'           
           19  LINE     NAME  CREATOR
                        EZTC0652E >>>  $ line overflow by 179 columns

Environment

Easytrieve Report Generator, Release : 11.6

Resolution

Testing with only the NAME field on line 19 still produces the error, but shows a line overflow by fewer columns:

18  TITLE   'TEST FOR PANSQL INSTALL'           
19  LINE     NAMEEZTC0652E >>>  $ line overflow by 48 columns

Even though LINESIZ is set to 132 in the options file, it is being overridden by the REPORT statement's LINESIZE parameter set to 80:
    REPORT RPT1 LINESIZE 80 

The SYSIBM.SYSTABLES show the two columns defined as:
Column name Data type Use
NAME VARCHAR(128) NOT NULL G
CREATOR VARCHAR(128) NOT NULL

G

 

So, either field by itself should be ok with the REPORT statement coded without the LINESIZE parameter:

  REPORT RPT1  


Please either remove LINESIZE 80 from the REPORT statement or please specify it as 132.