How to Get CHGPRTF Details?

worldsat

Active Member
Hi,

When promoting a PRTF from DEV to Acceptance environment (through a CLP), I can get the PRTF name and library from DEV and then I will create the PRTF in Acceptance using CRTPRTF.

However, if the PRTF parameters in DEV have been changed from standard such as
Width = 172, LPI = 8, User specified DBCS data = *YES, etc.
How can I get these changed parameters in Acceptance while creating the PRTF.

Kindly suggest.
Tom.
JD Edwards World
A7.3 cume 4.
 
You don't mention if your DEV and Acceptance are on the same LPAR.
Anyway, you can do this fairly easily by using DSPFD on the existing print file, with parameters TYPE(*ATR) FILEATR(*PRTF) to an outfile. Then simply read the outfile and replace whichever values you need in the CRTPRTF command.
 
Used ==>
DSPFD FILE(lib/R55XXX) TYPE(*ATR) OUTPUT(*OUTFILE) FILEATR(*PRTF) OUTFILE(TEMPLIB/R55XXX).

Thank you Emmanuel.
 
Back
Top