BookmarkSubscribeRSS Feed
yabwon
Onyx | Level 15

Hey SAS-C!

Just FYI.

Bart

 

SAS Packages Framework, version 20231009

Available as usual at: https://github.com/yabwon/SAS_PACKAGES

 

Changes:


Bug fix in the %generatePackage() macro.

Thanks to Richann Watson for finding and reporting a but in the %generatePackage() macro.


Documentation updated.

 

SPF_sticker.png

 

 

_______________
Polish SAS Users Group: www.polsug.com and communities.sas.com/polsug

"SAS Packages: the way to share" at SGF2020 Proceedings (the latest version), GitHub Repository, and YouTube Video.
Hands-on-Workshop: "Share your code with SAS Packages"
"My First SAS Package: A How-To" at SGF2021 Proceedings

SAS Ballot Ideas: one: SPF in SAS, two, and three
SAS Documentation



2 REPLIES 2
Tom
Super User Tom
Super User

Trying to read this description and some of the code...

 

Why do you need to complicate things by having two separate macros for loading one package versus loading multiple packages?  Why not just accept a normal space delimited list of packages?

%macro loadPackage
/*  Load SAS Packages */
(packageNames  
  /* Space delimited list of Package names with optional version numbers */
  /* Examples:  */
  /* %loadPackage(myPackage1) */
  /* %loadPackage(myPackage1 yourPackage2) */
  /* %loadPackage(myPackage1(1.7) yourPackage2(4.2)) */
yabwon
Onyx | Level 15

The %loadPackage() was the first, with all its options.

 

It was a bit later when I realised that I could add some "syntactic sugar" to replace:

%loadPackage(myPackage1)
%loadPackage(myPackage2)
%loadPackage(myPackage3)
%loadPackage(myPackage4)

with 

%loadPackageS(myPackage1, myPackage2, myPackage3, myPackage4)

The idea was: "different packages may have different loading options which can be customised" if you want to do customisation then load it in separate calls. If you just need a "simple" load of them all, you can use syntactic sugar of %loadPackageS().

 

But I see a development route in your suggestion! 🙂

 

Bart

_______________
Polish SAS Users Group: www.polsug.com and communities.sas.com/polsug

"SAS Packages: the way to share" at SGF2020 Proceedings (the latest version), GitHub Repository, and YouTube Video.
Hands-on-Workshop: "Share your code with SAS Packages"
"My First SAS Package: A How-To" at SGF2021 Proceedings

SAS Ballot Ideas: one: SPF in SAS, two, and three
SAS Documentation



sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 392 views
  • 0 likes
  • 2 in conversation