1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-16 13:00:05 +00:00

chore: docs update

This commit is contained in:
Allan Bowe
2021-05-10 20:14:23 +03:00
parent de3610d1aa
commit 2c952c8b01
2 changed files with 13 additions and 14 deletions

16
all.sas
View File

@@ -1748,12 +1748,13 @@ Usage:
if debug ge '"131"' then put '>>weboutEND<<'; if debug ge '"131"' then put '>>weboutEND<<';
run; run;
%let syscc=0;
%if %symexist(_metaport) %then %do; %if %symexist(_metaport) %then %do;
data _null_; data _null_;
if symexist('sysprocessmode') if symexist('sysprocessmode') then
then if symget("sysprocessmode")="SAS Stored Process Server" if symget("sysprocessmode")="SAS Stored Process Server" then do;
then rc=stpsrvset('program error', 0); rc=stpsrvset('program error', 0);
call symputx("syscc",0,"g");
end;
run; run;
%end; %end;
/** /**
@@ -10298,7 +10299,7 @@ run;
#### &prefix.added #### &prefix.added
|name:$32.|metaID:$17.|SAStabName:$32.| |name:$32.|metaID:$17.|SAStabName:$32.|
|---|---|---| |---|---|---|
|||DATA1| | |DATA1|
#### &prefix.deleted #### &prefix.deleted
|name:$32.|metaID:$17.|SAStabName:$32.| |name:$32.|metaID:$17.|SAStabName:$32.|
@@ -10330,9 +10331,8 @@ run;
such as dangling metadata, embedded passwords, security issues and more. such as dangling metadata, embedded passwords, security issues and more.
@param [in] libname= the metadata name of the library to be compared @param [in] libname= the metadata name of the library to be compared
@param [out] outlib= The output library in which to store the output tables. @param [out] outlib=(work) The library in which to store the output tables.
Default=WORK. @param [out] prefix=(metadiff) The prefix for the four tables created.
@param [out] prefix The prefix for the four tables created. Default=metadiff.
@version 9.3 @version 9.3
@author Allan Bowe @author Allan Bowe

View File

@@ -48,7 +48,7 @@
#### &prefix.added #### &prefix.added
|name:$32.|metaID:$17.|SAStabName:$32.| |name:$32.|metaID:$17.|SAStabName:$32.|
|---|---|---| |---|---|---|
|||DATA1| | |DATA1|
#### &prefix.deleted #### &prefix.deleted
|name:$32.|metaID:$17.|SAStabName:$32.| |name:$32.|metaID:$17.|SAStabName:$32.|
@@ -80,9 +80,8 @@
such as dangling metadata, embedded passwords, security issues and more. such as dangling metadata, embedded passwords, security issues and more.
@param [in] libname= the metadata name of the library to be compared @param [in] libname= the metadata name of the library to be compared
@param [out] outlib= The output library in which to store the output tables. @param [out] outlib=(work) The library in which to store the output tables.
Default=WORK. @param [out] prefix=(metadiff) The prefix for the four tables created.
@param [out] prefix The prefix for the four tables created. Default=metadiff.
@version 9.3 @version 9.3
@author Allan Bowe @author Allan Bowe