× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



While I can see reasons for doing it either way. I have to wonder why you
run this every night? Nothing from IBM will reset them without you
upgrading your system, While it is not causing you any problems, It does
seem like overkill for a program that need to be run once an upgrade to
run everyday.



"Jeff Crosby" <jlcrosby@xxxxxxxxxxxxxxxx>
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
05/10/2007 09:49 AM
Please respond to
RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx>


To
"'RPG programming on the AS400 / iSeries'" <rpg400-l@xxxxxxxxxxxx>
cc

Subject
RE: compile problem






Rob and others,

Everyone says to not change the command defaults in QSYS but to do the
CRTDUPOBJ into another library higher in QSYSLIBL. I don't. I change the
defaults in QSYS.

I have the following CL program:

/* CHANGE COMMAND DEFAULTS */
PGM

/* COMPILES ARE TO BE INDENTED */
CHGCMDDFT CMD(CRTBNDRPG) +
NEWDFT('INDENT(1)')

/* COMPILES ARE TO USE DATE/TIME CONVERSION */
CHGCMDDFT CMD(CRTRPGPGM) +
NEWDFT('CVTOPT(*DATETIME)')
CHGCMDDFT CMD(CRTRPTPGM) +
NEWDFT('CVTOPT(*DATETIME)')

/* SQL RPG COMPILES ARE TO BE NO COMMITMENT CONTROL */
CHGCMDDFT CMD(CRTSQLRPG) +
NEWDFT('COMMIT(*NONE)')
CHGCMDDFT CMD(CRTSQLRPGI) +
NEWDFT('COMMIT(*NONE)')

/* SQL RPG CURSORS TO CLOSE WHEN PROGRAM ENDS */
CHGCMDDFT CMD(CRTSQLRPG) +
NEWDFT('CLOSQLCSR(*ENDPGM)')
CHGCMDDFT CMD(CRTSQLRPGI) +
NEWDFT('CLOSQLCSR(*ENDMOD)')

/* SET LOG TO NOLIST */
CHGCMDDFT CMD(SIGNOFF) +
NEWDFT('LOG(*NOLIST)')

/* Needed to retrieve the correct "WORK STATION I-D" in batch. */
CHGCMDDFT CMD(SBMJOB) +
NEWDFT('MSGQ(*WRKSTN)')

/* START PRINTER WRITER TO ALIGN BASED ON FILE */
CHGCMDDFT CMD(STRPRTWTR) +
NEWDFT('ALIGN(*FILE)')

ENDPGM

It is run every night via the job scheduler, so I don't have to think
about
it. I have similar programs to:

1) change all IBM supplied print files to our format (cpi, lpi, etc)
2) change all TAA tools print files to our format
3) change all Abstract print files to our format
4) change all ProGen Plus files to our format
5) miscellaneous other authorities and whatnot

Each of these is run every night via the job scheduler. I have been doing
it this way at least 15 years without a problem.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.