HCL Workload Automation, Version 9.4

NOSTDLIST keyword usage

About this task

All spooled files generated by the jobs are enclosed in the stdlist. There is a file type for any type of spool file on IBM i. For example the QPRINT file that collects any text message generated inside the programs of the job, like the text produced by the printf instruction inside any ILE-C program. Another example is the QPRTLIBL file, that holds the output produced by the DSPLIBL IBM i command. If you do not want to have one or more of these spooled files copied to the stdlist, use the NOSTDLIST keyword. The following examples show how to use the NOSTDLIST keyword:
  • DOCOMMAND "CALL MSTRTEST/TESTONE NOSTDLIST:QPRINT"

    In this case, the output of the program MSTRTEST/TESTONE produced in the QPRINT file is not included in the stdlist.

  • DOCOMMAND "DSPLIBL NOSTDLIST:QPRTLIBL"

    In this case, the output of the DSPLIBL command produced in the QPRTLIBL file is not included in the stdlist.

  • DOCOMMAND "SUBMIT: CMD(WRKACTJOB) NOSTDLIST: QPDSPAJB, QPJOBLOG"

    In this case, the output of the WRKACTJOB command produced in the QPDSPAJB file is not included in the stdlist. Also, the joblog produced by the IBM i in the QPJOBLOG file is not included in the stdlist.

A list of items can follow the NOSTDLIST keyword. These items must be separated by commas.