Creating a Resource List

Used if the creation of an element list is required.

As a rule, the AWM model is designed so that an output parameter is expected from the tool that returns the resource list file name. The resource list must have a structured design. This structure is defined by a corresponding file descriptor in the AWM model.

REXX example:

/* Create a PDS list */
Parse Arg PDS_prefix . 
resource_dsn = CREATE_DSN() 
resource_dd = ALLOC_DSN(resource_dsn) 
Call GET_PDSLIST(PDS_prefix) 
Call WRITE_PDS_INFOS(resource_dd) 
Call FREE_DSN(resource_dd) 
Exit 0 resource_dsn