Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note that some RDML commands will not be accepted by the IBM CL syntax checker when they contain these special variables. They must be forced to accept the commands, and the SEU editor must also be forced to update with errors. An example of this is:

     GROUP_BY NAME(#PANELDATA) FIELDS(@@LST03)

After executing an application template containing this RDML command, and assuming list number 3 contains selected fields, an RDML command will be generated as follows:

     GROUP_BY NAME(#PANELDATA) FIELDS((#EMPNO *OUTPUT) #SURNAME +

...

              #ADDRESS1 #ADDRESS2)

which is quite valid.

Take care not to code the original RDML command in the application template as in the following example:

     GROUP_BY NAME(#PANELDATA) FIELDS((#@@LST03))

as this will generate an invalid RDML command.

...