user24201411
user24201411

Reputation: 11

AS400 PGM used keyword FIXNBR *ZONED / *INPUTPACKED

In AS400 I need to see if a program was compiled with the keyword FIXNBR with a value other than *NONE (so *ZONED or *INPUTPACKED).

I already tried using the DSPPGM, DPSPGMREF and DSPOBJD commands, but I couldn't locate that attribute.

Upvotes: 1

Views: 92

Answers (1)

Charles
Charles

Reputation: 23823

According to IBM's Barbara Morris, who is a developer for the RPG IV compiler,

There is nothing visible in the module or program object to indicate that FIXNBR(*ZONED) was used for the compile. The FIXNBR parameter value just affects how the compiler generates the program; it doesn't become an attribute of the compiled object.

Upvotes: 2

Related Questions