Language Reference

PACKAGE LIST Statement

  • PACKAGE LIST <collection> ;

This statement is supported only by the IML procedure.

The PACKAGE LIST statement lists the packages that are installed in the specified collection (or in all collections if a collection is not specified). For more information about collections, see the PACKAGE statement.

You can specify the following option:

collection

requests that only packages in the specified collection be listed. Valid values for collection are PRIVATE, PUBLIC, and SYSTEM. By default, the PACKAGE LIST statement lists packages in all collections.

For example, the following statement displays packages that are installed in the SYSTEM collection:

proc iml;
package list system;

Figure 307: System Packages

System Packages
NameVersion
AboveBelow1.0


Notice that the PACKAGE LIST statement acts on collections of packages, whereas the other PACKAGE statements apply to individual packages. The collection argument is not specified inside parentheses.

Last updated: April 16, 2021