SAS Packages Framework, version 20260125
Available as usual at: https://github.com/yabwon/SAS_PACKAGES
Little update to make things more comfortable.
Changes and modifications:
A) Two new parameters added to the %listPackages() macro:
listDataSet - name of a data set to save the list of available packages,
quiet= - indicator to suspend LOG printout.
B) Documentation updated.
Examples
Example 1. Save list of packages in ListOfPackages data set:
filename packages ("/sas/packages1" "/sas/packages2");
%include packages(SPFinit.sas);
%listPackages(ListOfPackages)
proc print data=ListOfPackages;
run;