INSERT_CATALOG
Inserts a SAS catalog into a package
Syntax
CALL INSERT_CATALOG(packageId, libname, memname, desc, nameValue, rc);
Required Arguments
- packageID
-
identifies the package
into which the catalog will be inserted.
- libname
-
names the library that
contains the catalog.
- memname
-
specifies the name
of the catalog.
- desc
-
describes the catalog.
- nameValue
-
identifies a list of
one or more space-separated name/value pairs, each in one of the following
forms:
-
-
-
-
name="
single value with spaces"
-
-
-
name=(
value1, "
value 2",…
valueN)
Name/value pairs are
site-specific; they are used for the purpose of
filtering.
- rc
-
receives a return code.
Example: Using INSERT_CATALOG
The following example
inserts the catalog ALPHELP.PUBSUB into the PACKAGEID package.
libname = 'alphelp';
memname = 'pubsub';
desc = 'Publication's catalog';
nameValue='';
CALL INSERT_CATALOG(packageId, libname,
memname, desc, nameValue, rc);