mirror of
https://github.com/sasjs/core.git
synced 2025-12-24 11:41:20 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c41918c0a8 | ||
|
|
0361ca574d | ||
|
|
c75c169b80 | ||
|
|
eac47bd5db | ||
|
|
d302ef266d | ||
|
|
fdfe9b8250 |
117
all.sas
117
all.sas
@@ -2478,16 +2478,16 @@ run;
|
||||
proc sql noprint;
|
||||
select distinct lib into: liblist separated by ' ' from &inds;
|
||||
%put &=liblist;
|
||||
%do i=1 %to %sysfunc(countw(&liblist));
|
||||
%if %length(&liblist)>0 %then %do i=1 %to %sysfunc(countw(&liblist));
|
||||
%let lib=%scan(&liblist,1);
|
||||
%let engine=%mf_getengine(&lib);
|
||||
%if &engine ne V9 and &engine ne BASE %then %do;
|
||||
%let msg=&lib has &engine engine - formats cannot be applied;
|
||||
proc sql;
|
||||
insert into &outds set lib="&lib",ds="_all_",var="_all", msg="&msg" ;
|
||||
%if &errds=0 %then %put %str(ERR)OR: &msg;
|
||||
%end;
|
||||
%end;
|
||||
quit;
|
||||
|
||||
%if %mf_nobs(&outds)>0 %then %return;
|
||||
|
||||
@@ -5311,42 +5311,16 @@ run;
|
||||
,mac=mp_filterstore
|
||||
,msg=%str(syscc=&syscc after hash check)
|
||||
)
|
||||
%mp_abort(iftrue= ("&filter_hash"=" ")
|
||||
%mp_abort(iftrue= ("&filter_hash "=" ")
|
||||
,mac=mp_filterstore
|
||||
,msg=%str(problem with filter_hash generation)
|
||||
)
|
||||
|
||||
%if %mf_nobs(&outresult)=0 %then %do;
|
||||
|
||||
/* update detail table first */
|
||||
%let ds2=%mf_getuniquename(prefix=filterdetail);
|
||||
data &ds2;
|
||||
if 0 then set &filter_detail;
|
||||
set &queryds;
|
||||
format filter_hash $hex32. filter_line 8.;
|
||||
filter_hash="&filter_hash";
|
||||
filter_line=_n_;
|
||||
PROCESSED_DTTM=%sysfunc(datetime());
|
||||
run;
|
||||
%mp_lockanytable(LOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
proc append base=&filter_detail data=&ds2;
|
||||
run;
|
||||
|
||||
%mp_lockanytable(UNLOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
/* now update summary table */
|
||||
/* first update summary table */
|
||||
%let ds3=%mf_getuniquename(prefix=filtersum);
|
||||
data &ds3;
|
||||
data work.&ds3;
|
||||
if 0 then set &filter_summary;
|
||||
filter_table=symget('libds');
|
||||
filter_hash="&filter_hash";
|
||||
@@ -5358,7 +5332,7 @@ run;
|
||||
%mp_lockanytable(LOCK,
|
||||
lib=%scan(&filter_summary,1,.)
|
||||
,ds=%scan(&filter_summary,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ref=MP_FILTERSTORE summary update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
@@ -5380,21 +5354,64 @@ run;
|
||||
%mp_lockanytable(UNLOCK,
|
||||
lib=%scan(&filter_summary,1,.)
|
||||
,ds=%scan(&filter_summary,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ref=MP_FILTERSTORE summary update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
%if &syscc ne 0 %then %do;
|
||||
data _null_;
|
||||
set &ds4;
|
||||
putlog (_all_)(=);
|
||||
run;
|
||||
%goto err;
|
||||
%end;
|
||||
|
||||
data &outresult;
|
||||
set &filter_summary;
|
||||
where filter_hash="&filter_hash";
|
||||
run;
|
||||
|
||||
/* Next, update detail table */
|
||||
%let ds2=%mf_getuniquename(prefix=filterdetail);
|
||||
data &ds2;
|
||||
if 0 then set &filter_detail;
|
||||
set &queryds;
|
||||
format filter_hash $hex32. filter_line 8.;
|
||||
filter_hash="&filter_hash";
|
||||
filter_line=_n_;
|
||||
PROCESSED_DTTM=%sysfunc(datetime());
|
||||
run;
|
||||
%mp_lockanytable(LOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
proc append base=&filter_detail data=&ds2;
|
||||
run;
|
||||
|
||||
%mp_lockanytable(UNLOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE detail update &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
%if &syscc ne 0 %then %do;
|
||||
data _null_;
|
||||
set &ds2;
|
||||
putlog (_all_)(=);
|
||||
run;
|
||||
%goto err;
|
||||
%end;
|
||||
|
||||
%end;
|
||||
|
||||
proc sort data=&filter_detail(where=(filter_hash="&filter_hash")) out=&outquery;
|
||||
by filter_line;
|
||||
run;
|
||||
|
||||
%err:
|
||||
%mp_abort(iftrue= (&syscc ne 0)
|
||||
,mac=mp_filterstore
|
||||
,msg=%str(syscc=&syscc on macro exit)
|
||||
@@ -5522,11 +5539,11 @@ filename &fref1 clear;
|
||||
|
||||
@param ds The dataset from which to obtain column metadata
|
||||
@param outds= (work.cols) The output dataset to create. Sample data:
|
||||
|NAME $|LENGTH 8|VARNUM 8|LABEL $|FORMAT $49|TYPE $1 |DDTYPE $|
|
||||
|---|---|---|---|---|---|---|
|
||||
|AIR|8|2|international airline travel (thousands)|8.|N|NUMERIC|
|
||||
|DATE|8|1|DATE|MONYY.|N|DATE|
|
||||
|REGION|3|3|REGION|$3.|C|CHARACTER|
|
||||
|NAME:$32.|LENGTH:best.|VARNUM:best.|LABEL:$256.|FMTNAME:$32.|FORMAT:$49.|TYPE:$1.|DDTYPE:$9.|
|
||||
|---|---|---|---|---|---|---|---|
|
||||
|`AIR `|`8 `|`2 `|`international airline travel (thousands) `|` `|`8. `|`N `|`NUMERIC `|
|
||||
|`DATE `|`8 `|`1 `|`DATE `|`MONYY `|`MONYY. `|`N `|`DATE `|
|
||||
|`REGION `|`3 `|`3 `|`REGION `|` `|`$3. `|`C `|`CHARACTER `|
|
||||
|
||||
<h4> Related Macros </h4>
|
||||
@li mf_getvarlist.sas
|
||||
@@ -5538,26 +5555,27 @@ filename &fref1 clear;
|
||||
**/
|
||||
|
||||
%macro mp_getcols(ds, outds=work.cols);
|
||||
|
||||
%local dropds;
|
||||
proc contents noprint data=&ds
|
||||
out=_data_ (keep=name type length label varnum format:);
|
||||
run;
|
||||
data &outds(keep=name type length varnum format label ddtype);
|
||||
set &syslast(rename=(format=format2 type=type2));
|
||||
%let dropds=&syslast;
|
||||
data &outds(keep=name type length varnum format label ddtype fmtname);
|
||||
set &dropds(rename=(format=fmtname type=type2));
|
||||
name=upcase(name);
|
||||
if type2=2 then do;
|
||||
length format $49.;
|
||||
if format2='' then format=cats('$',length,'.');
|
||||
else if formatl=0 then format=cats(format2,'.');
|
||||
else format=cats(format2,formatl,'.');
|
||||
if fmtname='' then format=cats('$',length,'.');
|
||||
else if formatl=0 then format=cats(fmtname,'.');
|
||||
else format=cats(fmtname,formatl,'.');
|
||||
type='C';
|
||||
ddtype='CHARACTER';
|
||||
end;
|
||||
else do;
|
||||
if format2='' then format=cats(length,'.');
|
||||
else if formatl=0 then format=cats(format2,'.');
|
||||
else if formatd=0 then format=cats(format2,formatl,'.');
|
||||
else format=cats(format2,formatl,'.',formatd);
|
||||
if fmtname='' then format=cats(length,'.');
|
||||
else if formatl=0 then format=cats(fmtname,'.');
|
||||
else if formatd=0 then format=cats(fmtname,formatl,'.');
|
||||
else format=cats(fmtname,formatl,'.',formatd);
|
||||
type='N';
|
||||
if format=:'DATETIME' or format=:'E8601DT' then ddtype='DATETIME';
|
||||
else if format=:'DATE' or format=:'DDMMYY' or format=:'MMDDYY'
|
||||
@@ -5569,7 +5587,8 @@ data &outds(keep=name type length varnum format label ddtype);
|
||||
end;
|
||||
if label='' then label=name;
|
||||
run;
|
||||
|
||||
proc sql;
|
||||
drop table &dropds;
|
||||
%mend mp_getcols;/**
|
||||
@file mp_getconstraints.sas
|
||||
@brief Get constraint details at column level
|
||||
|
||||
@@ -142,16 +142,16 @@ run;
|
||||
proc sql noprint;
|
||||
select distinct lib into: liblist separated by ' ' from &inds;
|
||||
%put &=liblist;
|
||||
%do i=1 %to %sysfunc(countw(&liblist));
|
||||
%if %length(&liblist)>0 %then %do i=1 %to %sysfunc(countw(&liblist));
|
||||
%let lib=%scan(&liblist,1);
|
||||
%let engine=%mf_getengine(&lib);
|
||||
%if &engine ne V9 and &engine ne BASE %then %do;
|
||||
%let msg=&lib has &engine engine - formats cannot be applied;
|
||||
proc sql;
|
||||
insert into &outds set lib="&lib",ds="_all_",var="_all", msg="&msg" ;
|
||||
%if &errds=0 %then %put %str(ERR)OR: &msg;
|
||||
%end;
|
||||
%end;
|
||||
quit;
|
||||
|
||||
%if %mf_nobs(&outds)>0 %then %return;
|
||||
|
||||
|
||||
@@ -121,42 +121,16 @@ run;
|
||||
,mac=mp_filterstore
|
||||
,msg=%str(syscc=&syscc after hash check)
|
||||
)
|
||||
%mp_abort(iftrue= ("&filter_hash"=" ")
|
||||
%mp_abort(iftrue= ("&filter_hash "=" ")
|
||||
,mac=mp_filterstore
|
||||
,msg=%str(problem with filter_hash generation)
|
||||
)
|
||||
|
||||
%if %mf_nobs(&outresult)=0 %then %do;
|
||||
|
||||
/* update detail table first */
|
||||
%let ds2=%mf_getuniquename(prefix=filterdetail);
|
||||
data &ds2;
|
||||
if 0 then set &filter_detail;
|
||||
set &queryds;
|
||||
format filter_hash $hex32. filter_line 8.;
|
||||
filter_hash="&filter_hash";
|
||||
filter_line=_n_;
|
||||
PROCESSED_DTTM=%sysfunc(datetime());
|
||||
run;
|
||||
%mp_lockanytable(LOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
proc append base=&filter_detail data=&ds2;
|
||||
run;
|
||||
|
||||
%mp_lockanytable(UNLOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
/* now update summary table */
|
||||
/* first update summary table */
|
||||
%let ds3=%mf_getuniquename(prefix=filtersum);
|
||||
data &ds3;
|
||||
data work.&ds3;
|
||||
if 0 then set &filter_summary;
|
||||
filter_table=symget('libds');
|
||||
filter_hash="&filter_hash";
|
||||
@@ -168,7 +142,7 @@ run;
|
||||
%mp_lockanytable(LOCK,
|
||||
lib=%scan(&filter_summary,1,.)
|
||||
,ds=%scan(&filter_summary,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ref=MP_FILTERSTORE summary update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
@@ -190,21 +164,64 @@ run;
|
||||
%mp_lockanytable(UNLOCK,
|
||||
lib=%scan(&filter_summary,1,.)
|
||||
,ds=%scan(&filter_summary,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ref=MP_FILTERSTORE summary update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
%if &syscc ne 0 %then %do;
|
||||
data _null_;
|
||||
set &ds4;
|
||||
putlog (_all_)(=);
|
||||
run;
|
||||
%goto err;
|
||||
%end;
|
||||
|
||||
data &outresult;
|
||||
set &filter_summary;
|
||||
where filter_hash="&filter_hash";
|
||||
run;
|
||||
|
||||
/* Next, update detail table */
|
||||
%let ds2=%mf_getuniquename(prefix=filterdetail);
|
||||
data &ds2;
|
||||
if 0 then set &filter_detail;
|
||||
set &queryds;
|
||||
format filter_hash $hex32. filter_line 8.;
|
||||
filter_hash="&filter_hash";
|
||||
filter_line=_n_;
|
||||
PROCESSED_DTTM=%sysfunc(datetime());
|
||||
run;
|
||||
%mp_lockanytable(LOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE update - &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
proc append base=&filter_detail data=&ds2;
|
||||
run;
|
||||
|
||||
%mp_lockanytable(UNLOCK,
|
||||
lib=%scan(&filter_detail,1,.)
|
||||
,ds=%scan(&filter_detail,2,.)
|
||||
,ref=MP_FILTERSTORE detail update &filter_hash
|
||||
,ctl_ds=&lock_table
|
||||
)
|
||||
|
||||
%if &syscc ne 0 %then %do;
|
||||
data _null_;
|
||||
set &ds2;
|
||||
putlog (_all_)(=);
|
||||
run;
|
||||
%goto err;
|
||||
%end;
|
||||
|
||||
%end;
|
||||
|
||||
proc sort data=&filter_detail(where=(filter_hash="&filter_hash")) out=&outquery;
|
||||
by filter_line;
|
||||
run;
|
||||
|
||||
%err:
|
||||
%mp_abort(iftrue= (&syscc ne 0)
|
||||
,mac=mp_filterstore
|
||||
,msg=%str(syscc=&syscc on macro exit)
|
||||
|
||||
@@ -14,11 +14,11 @@
|
||||
|
||||
@param ds The dataset from which to obtain column metadata
|
||||
@param outds= (work.cols) The output dataset to create. Sample data:
|
||||
|NAME $|LENGTH 8|VARNUM 8|LABEL $|FORMAT $49|TYPE $1 |DDTYPE $|
|
||||
|---|---|---|---|---|---|---|
|
||||
|AIR|8|2|international airline travel (thousands)|8.|N|NUMERIC|
|
||||
|DATE|8|1|DATE|MONYY.|N|DATE|
|
||||
|REGION|3|3|REGION|$3.|C|CHARACTER|
|
||||
|NAME:$32.|LENGTH:best.|VARNUM:best.|LABEL:$256.|FMTNAME:$32.|FORMAT:$49.|TYPE:$1.|DDTYPE:$9.|
|
||||
|---|---|---|---|---|---|---|---|
|
||||
|`AIR `|`8 `|`2 `|`international airline travel (thousands) `|` `|`8. `|`N `|`NUMERIC `|
|
||||
|`DATE `|`8 `|`1 `|`DATE `|`MONYY `|`MONYY. `|`N `|`DATE `|
|
||||
|`REGION `|`3 `|`3 `|`REGION `|` `|`$3. `|`C `|`CHARACTER `|
|
||||
|
||||
<h4> Related Macros </h4>
|
||||
@li mf_getvarlist.sas
|
||||
@@ -30,26 +30,27 @@
|
||||
**/
|
||||
|
||||
%macro mp_getcols(ds, outds=work.cols);
|
||||
|
||||
%local dropds;
|
||||
proc contents noprint data=&ds
|
||||
out=_data_ (keep=name type length label varnum format:);
|
||||
run;
|
||||
data &outds(keep=name type length varnum format label ddtype);
|
||||
set &syslast(rename=(format=format2 type=type2));
|
||||
%let dropds=&syslast;
|
||||
data &outds(keep=name type length varnum format label ddtype fmtname);
|
||||
set &dropds(rename=(format=fmtname type=type2));
|
||||
name=upcase(name);
|
||||
if type2=2 then do;
|
||||
length format $49.;
|
||||
if format2='' then format=cats('$',length,'.');
|
||||
else if formatl=0 then format=cats(format2,'.');
|
||||
else format=cats(format2,formatl,'.');
|
||||
if fmtname='' then format=cats('$',length,'.');
|
||||
else if formatl=0 then format=cats(fmtname,'.');
|
||||
else format=cats(fmtname,formatl,'.');
|
||||
type='C';
|
||||
ddtype='CHARACTER';
|
||||
end;
|
||||
else do;
|
||||
if format2='' then format=cats(length,'.');
|
||||
else if formatl=0 then format=cats(format2,'.');
|
||||
else if formatd=0 then format=cats(format2,formatl,'.');
|
||||
else format=cats(format2,formatl,'.',formatd);
|
||||
if fmtname='' then format=cats(length,'.');
|
||||
else if formatl=0 then format=cats(fmtname,'.');
|
||||
else if formatd=0 then format=cats(fmtname,formatl,'.');
|
||||
else format=cats(fmtname,formatl,'.',formatd);
|
||||
type='N';
|
||||
if format=:'DATETIME' or format=:'E8601DT' then ddtype='DATETIME';
|
||||
else if format=:'DATE' or format=:'DDMMYY' or format=:'MMDDYY'
|
||||
@@ -61,5 +62,6 @@ data &outds(keep=name type length varnum format label ddtype);
|
||||
end;
|
||||
if label='' then label=name;
|
||||
run;
|
||||
|
||||
proc sql;
|
||||
drop table &dropds;
|
||||
%mend mp_getcols;
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@sasjs/core",
|
||||
"description": "Production Ready Macros for SAS Application Developers",
|
||||
"description": "Macros for SAS Application Developers",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"SAS",
|
||||
@@ -38,4 +38,4 @@
|
||||
"dependencies": {
|
||||
"ts-loader": "^9.2.6"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,67 +1,73 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html
|
||||
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!-- HTML header for doxygen 1.8.17-->
|
||||
<html xmlns="https://www.w3.org/1999/xhtml" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9" />
|
||||
<meta property="og:type" content="website">
|
||||
<meta name="author" content="Allan Bowe">
|
||||
<meta name="generator" content="Doxygen $doxygenversion" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!--BEGIN PROJECT_NAME-->
|
||||
<meta name="description" content="$projectbrief" />
|
||||
<!--END PROJECT_NAME-->
|
||||
<!--BEGIN !PROJECT_NAME-->
|
||||
<title>$title</title>
|
||||
<!--END !PROJECT_NAME-->
|
||||
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
||||
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
||||
$treeview $search $mathjax
|
||||
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
||||
<link rel="shortcut icon" href="$relpath^favicon.ico" type="image/x-icon" />
|
||||
$extrastylesheet
|
||||
</head>
|
||||
<body>
|
||||
<div id="top">
|
||||
<!-- do not remove this div, it is closed by doxygen! -->
|
||||
|
||||
<!--BEGIN TITLEAREA-->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px">
|
||||
<!--BEGIN PROJECT_LOGO-->
|
||||
<td id="projectlogo">
|
||||
<a href="$relpath^"
|
||||
><img alt="Logo" src="$relpath^$projectlogo"
|
||||
/></a>
|
||||
</td>
|
||||
<!--END PROJECT_LOGO-->
|
||||
<td id="projectalign" style="padding-left: 0.5em">
|
||||
<div id="projectbrief">
|
||||
Production Ready Macros for SAS Application Developers<br />
|
||||
<a href="https://github.com/sasjs/core">
|
||||
https://github.com/sasjs/core
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9" />
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:title" content="MacroCore" />
|
||||
<meta property="og:url" content="https://core.sasjs.io" />
|
||||
<meta property="og:image" content="https://core.sasjs.io/Macro_core_website_1.png" />
|
||||
<meta name="author" content="Allan Bowe">
|
||||
<meta name="generator" content="Doxygen $doxygenversion" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!--BEGIN PROJECT_NAME-->
|
||||
<meta name="description" content="$projectbrief" />
|
||||
<meta name="og:description" content="$projectbrief" />
|
||||
<!--END PROJECT_NAME-->
|
||||
<!--BEGIN !PROJECT_NAME-->
|
||||
<title>$title</title>
|
||||
<!--END !PROJECT_NAME-->
|
||||
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="$relpath^jquery.js"></script>
|
||||
<script type="text/javascript" src="$relpath^dynsections.js"></script>
|
||||
$treeview $search $mathjax
|
||||
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
|
||||
<link rel="shortcut icon" href="$relpath^favicon.ico" type="image/x-icon" />
|
||||
$extrastylesheet
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="top">
|
||||
<!-- do not remove this div, it is closed by doxygen! -->
|
||||
|
||||
<!--BEGIN TITLEAREA-->
|
||||
<div id="titlearea">
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr style="height: 56px">
|
||||
<!--BEGIN PROJECT_LOGO-->
|
||||
<td id="projectlogo">
|
||||
<a href="$relpath^"><img alt="Logo" src="$relpath^$projectlogo" /></a>
|
||||
</td>
|
||||
<!--END PROJECT_LOGO-->
|
||||
<td id="projectalign" style="padding-left: 0.5em">
|
||||
<div id="projectbrief">
|
||||
Macros for SAS Application Developers<br />
|
||||
<a href="https://github.com/sasjs/core">
|
||||
https://github.com/sasjs/core
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
|
||||
|
||||
<!--BEGIN DISABLE_INDEX-->
|
||||
<!--BEGIN SEARCHENGINE-->
|
||||
<td>$searchbox</td>
|
||||
<!--END SEARCHENGINE-->
|
||||
<!--END DISABLE_INDEX-->
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<!--END TITLEAREA-->
|
||||
<!-- end header part -->
|
||||
<!--BEGIN DISABLE_INDEX-->
|
||||
<!--BEGIN SEARCHENGINE-->
|
||||
<td>$searchbox</td>
|
||||
<!--END SEARCHENGINE-->
|
||||
<!--END DISABLE_INDEX-->
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
<!--END TITLEAREA-->
|
||||
<!-- end header part -->
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"$schema": "https://cli.sasjs.io/sasjsconfig-schema.json",
|
||||
"$schema": "https://raw.githubusercontent.com/sasjs/utils/main/src/types/sasjsconfig-schema.json",
|
||||
"macroFolders": [
|
||||
"base",
|
||||
"fcmp",
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<h4> SAS Macros </h4>
|
||||
@li mp_getcols.sas
|
||||
@li mp_assertcols.sas
|
||||
@li mp_assertcolvals.sas
|
||||
@li mp_assertdsobs.sas
|
||||
|
||||
@@ -30,4 +31,10 @@ run;
|
||||
checkvals=work.check.val,
|
||||
desc=All values have a match,
|
||||
test=ALLVALS
|
||||
)
|
||||
|
||||
%mp_assertcols(work.info,
|
||||
cols=name type length varnum format label ddtype fmtname,
|
||||
test=ALL,
|
||||
desc=check all columns exist
|
||||
)
|
||||
Reference in New Issue
Block a user