1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-10 22:14:35 +00:00

fix: sorting output in create sas package

This commit is contained in:
^
2024-05-16 18:18:09 +01:00
parent 6e3b100170
commit b7718fae6b

View File

@@ -131,14 +131,14 @@ data members(compress=char);
run;
proc sort data=members;
by name;
by name name2;
run;
%let temp_options = %sysfunc(getoption(source)) %sysfunc(getoption(notes));
options nosource nonotes;
data _null_;
set members;
by name notsorted;
by name;
ord + first.name;