×
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.
Create them in /tmp. Copy them to the final directory doing something
like
CPY OBJ(&QP1ARCY) TODIR('/qntc/Gdsnt/BRMS/RecoveryReports') +
TOCCSID(1252) REPLACE(*YES)
As from this complete program which generates our BRMS reports and sticks
them off on two different windows servers (each in a different city).
/* Group Dekko Services, LLC */
/* ALL RIGHTS RESERVED. */
/* */
/* This program will create PDFs out of BRMS recovery reports */
/* */
/* */
/* Modification log: */
/* 08/04/11 by R.Berendt, CDP GDS,LLC */
/* Created */
/* */
/* */
PGM
DCL &QP1ARCY *CHAR 25 /* PDF file: step by step to full recovery
*/
DCL &QP1A2RCY *CHAR 26 /* PDF file: Volumes needed for above. */
DCL &SysName *CHAR 8 /* System Name */
/* +
| Retrieve the current system name +
*/
RTVNETA SYSNAME(&SysName)
CHGVAR &QP1ARCY ('/tmp/' *tcat &SysName *tcat '_QP1ARCY.PDF')
CHGVAR &QP1A2RCY ('/tmp/' *tcat &SysName *tcat '_QP12ARCY.PDF')
RMVLNK OBJLNK(&QP1ARCY)
MONMSG CPFA0A9 EXEC(DO) /* Object does not exist */
/* Remove message from cluttering joblog */
RCVMSG PGMQ(*SAME (*)) MSGTYPE(*EXCP) MSGKEY(*NONE) +
WAIT(0) RMV(*YES)
EndDo
RMVLNK OBJLNK(&QP1A2RCY)
MONMSG CPFA0A9 EXEC(DO) /* Object does not exist */
/* Remove message from cluttering joblog */
RCVMSG PGMQ(*SAME (*)) MSGTYPE(*EXCP) MSGKEY(*NONE) +
WAIT(0) RMV(*YES)
EndDo
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.