Your site might provide
user-defined help that provides site-specific information via the
standard SAS help browser. To access user-defined help via the SAS
help browser, you need to allocate a user-defined help library at
SAS invocation.
The user-defined
help library contains help information in the form of one or more
item store files, which use a file format that enables SAS to treat
the item store as a file system within a file. Each item store can
contain directories, subdirectories, and individual Help topics. For
information about loading user-defined help into item store files,
see
ITEMS Procedure: z/OS.
Help for SAS software
is contained in item store files. SAS automatically allocates libraries
for SAS software help at SAS invocation. To invoke SAS so that it
recognizes user-defined help, follow these steps:
-
In an autoexec file,
allocate the SAS library that contains the user-defined item store
files using the LIBNAME statement. For example, if the libref is to
be MYHELP and the item store is named APPL.HELP.DATA, the LIBNAME
statement in the SAS invocation would be
libname myhelp 'appl.help.data' disp=shr;
-
Concatenate your item
store files to the SAS help item store named by the HELPLOC= system
option at SAS invocation. For example, if the libref for your user-defined
help was MYHELP, and if the item store in the libref was named PRGAHELP,
then the HELPLOC= specification in the SAS invocation would be as
follows:
helploc='myhelp.prgahelp'
User-defined help cannot
be added to the SAS help item store because most users have read-only
access to the SAS help library.
After SAS has been invoked
so that it can recognize user-defined help, you can access that help
with the standard SAS help browser by issuing the HELP command and
specifying the appropriate universal resource locator (URL). For example,
if the Help topic that you want to display is named DIRAHLP1.HTM,
and if that Help topic is contained in an item store directory named
PRGADIRA, the HELP command would be as follows:
help helploc://prgadira/dirahlp1.htm
See the next section
for information about developing user-defined help for the SAS help
browser.