Hi there,
I'm trying to match the Format Level Identifier of the program files against the files Format Level Identifier.
To do so, I use the 3 following commands to outfiles :
and the following sql stm
I want to check if file level check error could be in power. I get this on every program type but the WHRFSN field is always blank for CL objects.
Any insights ?
Thanks in advance.
I'm trying to match the Format Level Identifier of the program files against the files Format Level Identifier.
To do so, I use the 3 following commands to outfiles :
- DSPPGMREF to get the programs and service programs name along with Format Level Identifier.
- DSPOBJD to get onmy the *PGM and *SRVPGM object types
- DSPFD to get the File Format Level Identifier.
and the following sql stm
PHP Code:
select WHLIB, WHPNAM, ODOBAT, WHTEXT, RFFILE, RFFTXT, WHRFSN, RFID
from PROGRAMS
join FILES
on WHFNAM = RFFILE
join OBJECTS
on ODOBNM = WHPNAM
where WHOBJT = 'F'
and WHRFSN <> RFID
Any insights ?
Thanks in advance.
Comment