Publishing Framework |
The Interface to the Publish Package CALL Routines can be used to write a SAS program to publish a package:
Example:
CALL PACKAGE_BEGIN(pid, desc, nameValue, rc);
CALL routines fall into two categories of item types:
SAS results:
INSERT_CATALOG
INSERT_DATASET
INSERT_FDB
INSERT_MDDB
INSERT_SQLVIEW
Example:
Call INSERT_DATASET(pid, libname, memname, description, NameValue, rc);
CALL routines for supported transports are as follows:
Example:
publishType = "TO_ARCHIVE"
.
.
.
CALL PACKAGE_PUBLISH (pid, publishType, rc, properties, archivePath, archiveName);
Example:
CALL PACKAGE_END(pid, rc);
For complete details about how to use the Publish Package CALL routines to publish a package, see Publish Package Interface.
Publishing Framework |