mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2026-01-07 07:00:05 +00:00
updates related to testing added in generatePackage.sas, update in generating SYSloadedPackages macrovariable, update in packages= macroparameter in generatePackage.sas, generate_package_sqlinds.sas is now in line with article,
26 lines
512 B
SAS
26 lines
512 B
SAS
|
|
|
|
filename packages "C:\SAS_PACKAGES";
|
|
%include packages(generatePackage.sas);
|
|
|
|
ods html;
|
|
%generatePackage(filesLocation=C:\SAS_PACKAGES_DEV\SQLinDS)
|
|
|
|
|
|
/*
|
|
* filename reference "packages" and "package" are keywords;
|
|
* the first one should be used to point folder with packages;
|
|
* the second is used internally by macros;
|
|
|
|
filename packages "C:\SAS_PACKAGES";
|
|
%include packages(loadpackage.sas);
|
|
|
|
dm 'log;clear';
|
|
%loadpackage(SQLinDS)
|
|
|
|
%helpPackage(SQLinDS)
|
|
%helpPackage(SQLinDS,*)
|
|
|
|
%unloadPackage(SQLinDS)
|
|
*/
|