Capture Variable Definition from Documented Programs
%vardef (prgname=program name);
Where |
Is Type... |
And represents... |
inlib |
LIBNAME |
Library referencing the location of the Trialex data object. |
prgname |
C
(optional) |
SAS program name. If this is left blank, vardef
will apply this for all programs defined in the program object. |
Details
Captures the variable definition inside SAS programs which has been defined to
the Trialex program object. The programs need to have variables selected with the proper documentation
style before vardef can capture the proper information. The information
captured will be stored in a vardef dataset which is used later in the %datadef (data definition) tool.
Example
libname inlib 'c:/mystudy/directory';
%vardef;
%vardef(prgname=myprog.sas);
|