global standards library directory/standards/cst-framework-1.7/validation/control/validation_master.sas7bdat
.
Focus
|
Checktype
|
Total Number of Checks
(Unique)
|
---|---|---|
Global standards library
metadata
|
GLMETA
|
64 (62)
|
Standard-specific metadata
in global standards library and sample library
|
STDIQOQ
|
73 (30)
|
Standard-specific content
|
STD
|
23(8)
|
Check Macro
|
Number of Records
|
---|---|
%CSTCHECK_COLUMN
|
38
|
%CSTCHECK_COLUMNCOMPARE
|
50
|
%CSTCHECK_COMPAREDOMAINS
|
8
|
%CSTCHECK_DSMISMATCH
|
7
|
%CSTCHECK_NOTCONSISTENT
|
5
|
%CSTCHECK_NOTINCODELIST
|
2
|
%CSTCHECK_NOTUNIQUE
|
2
|
%CSTCHECK_RECMISMATCH
|
4
|
%CSTCHECK_RECNOTFOUND
|
11
|
%CSTCHECK_ZEROOBS
|
3
|
%CSTCHECKENTITYNOTFOUND
|
7
|
libname refcntl 'c:/cstGlobalLibrary/standards/cst-framework-1.7/validation/ control'; libname cstcntl 'c:/cstSampleLibrary/cst-framework-1.7/control';
proc sql; create view cstcntl.validation_control_glmeta as select * from cstrcntl.validation_master as a where upcase(a.checktype)="GLMETA"; create view cstcntl.validation_control_std as select * from cstrcntl.validation_master as a where upcase(a.checktype) in ("STD","STDIQOQ"); create view cstcntl.validation_control_stdiqoq as select * from cstrcntl.validation_master as a where upcase(a.checktype) in ("STDIQOQ"); quit;
Column
|
Value
|
Description
|
---|---|---|
checkid
|
CSTV026
|
Specifies the check
identifier used to return the correct message from the CST-FRAMEWORK
messages data set.
|
checkseverity
|
Error
|
Specifies that the condition
is deemed to be serious, which warrants an Error condition.
|
checktype
|
GLMETA
|
Indicates that this
check targets the global standards library metadata folder contents.
This check is included in the validation_control_glmeta SAS view.
|
codesource
|
cstcheck_columncompare
|
Indicates the check
macro to use for processing. All check macros can be found in the
primary SAS Clinical Standards Toolkit autocall library.
|
usesourcemetadata
|
N
|
Specifies that the check
macro should use work.reference_tables and work.reference_columns
to find the tablescope and columnscope values.
|
tablescope
|
glmeta.standards
|
Indicates the specific
data set of interest. The
SAS libref has been defined in the SASReferences data set (row 10
in Sample of Dynamically Derived work.reference_tables**)
and is included in work.reference_tables.
|
columnscope
|
[rootpath][standard]
|
Specifies the two columns
of primary interest in glmeta.standards. The syntax matches what is
expected by the %CSTCHECK_COLUMNCOMPARE check macro.
|
codelogic
|
%cstcheckutilcheckfolder;
|
Uses
a new check utility macro included in Autocall Macros That Support Internal Validation.
|