diff --git a/all.sas b/all.sas index bb48e05..50cc9b2 100644 --- a/all.sas +++ b/all.sas @@ -14066,7 +14066,7 @@ run; %mm_createfolder(path=/some/meta/folder) @param [in] path= Name of the folder to create. - @param [in] mdebug= set DBG to 1 to disable DEBUG messages + @param [in] mdebug= (0) Set to 1 to enable DEBUG messages @version 9.4 @@ -14932,7 +14932,8 @@ run; @file mm_createwebservice.sas @brief Create a Web Ready Stored Process @details This macro creates a Type 2 Stored Process with the mm_webout macro - included as pre-code. + (and dependencies) included as pre-code. + Usage: %* compile macros ; @@ -15424,7 +15425,7 @@ run; %if &x>1 %then %let mod=mod; %let fref=%scan(&freflist,&x); - %put &sysmacroname: adding &fref; + %&mD.put &sysmacroname: adding &fref; data _null_; file "&work/&tmpfile" lrecl=3000 &mod; infile &fref; @@ -15460,13 +15461,11 @@ data _null_; if rc=0 then call symputx('url',url,'l'); run; -%put ;%put ;%put ;%put ;%put ;%put ; %put &sysmacroname: STP &name successfully created in &path; -%put ;%put ;%put ; %put Check it out here:; %put ;%put ;%put ; %put &url?_PROGRAM=&path/&name; -%put ;%put ;%put ;%put ;%put ;%put ; +%put ;%put ;%put ; %mend mm_createwebservice; /** diff --git a/meta/mm_createfolder.sas b/meta/mm_createfolder.sas index 21892f4..5922d80 100644 --- a/meta/mm_createfolder.sas +++ b/meta/mm_createfolder.sas @@ -17,7 +17,7 @@ %mm_createfolder(path=/some/meta/folder) @param [in] path= Name of the folder to create. - @param [in] mdebug= set DBG to 1 to disable DEBUG messages + @param [in] mdebug= (0) Set to 1 to enable DEBUG messages @version 9.4 diff --git a/meta/mm_createwebservice.sas b/meta/mm_createwebservice.sas index 2c7e212..a2d8700 100644 --- a/meta/mm_createwebservice.sas +++ b/meta/mm_createwebservice.sas @@ -2,7 +2,8 @@ @file mm_createwebservice.sas @brief Create a Web Ready Stored Process @details This macro creates a Type 2 Stored Process with the mm_webout macro - included as pre-code. + (and dependencies) included as pre-code. + Usage: %* compile macros ; @@ -494,7 +495,7 @@ run; %if &x>1 %then %let mod=mod; %let fref=%scan(&freflist,&x); - %put &sysmacroname: adding &fref; + %&mD.put &sysmacroname: adding &fref; data _null_; file "&work/&tmpfile" lrecl=3000 &mod; infile &fref; @@ -530,12 +531,10 @@ data _null_; if rc=0 then call symputx('url',url,'l'); run; -%put ;%put ;%put ;%put ;%put ;%put ; %put &sysmacroname: STP &name successfully created in &path; -%put ;%put ;%put ; %put Check it out here:; %put ;%put ;%put ; %put &url?_PROGRAM=&path/&name; -%put ;%put ;%put ;%put ;%put ;%put ; +%put ;%put ;%put ; %mend mm_createwebservice;