An
item
store is a SAS data set that consists of independently
accessible chunks of information. SAS uses item store files for online
Help, where the SAS help browser accesses an item store in the SASHELP
library. You can use the ITEMS procedure to create, modify, and browse
your own item store files, which you can then access through the SAS
help browser.
The contents of an item
store are divided into directories, subdirectories, and topics. The
directory tree structure emulates the structure of UNIX System Services,
so that a given Help topic is identified by a directory path (root_dir/sub_dir/item).
This hierarchical structure allows the SAS help browser to support
HTML links between Help topics.
The
item store files that SAS uses for HTML help can be written only by
users who have the appropriate privileges. Though SAS discourages
rewrites of SAS help items, you can add items to the SAS help item
store files, and you can develop new item store files of your own
for any information that you want to make available through the SAS
help browser. For for information about writing your own HTML help,
see
Using User-Defined Item Store Help Files.
To access an item store,
you must first allocate the library that contains the item store,
unless the item store is a member of the WORK library. After you allocate
the library, you issue the PROC ITEMS NAME=
fileref statement
to access the item store in SAS. Once the item store is available
in SAS, you can use the LIST, IMPORT, EXPORT, MERGE, and DELETE statements
to control item store contents. SAS applies all of these statements
to the item store name in the last PROC ITEMS NAME= statement.