select flagid, abortyn, flagtype, flag_descr, sum(count) as count format=comma15. informat=comma15.
/*-------------------------------------------------------------------------------------*\
| scdm_data_qa_review-level2.sas |
|---------------------------------------------------------------------------------------|
| The purpose of the program is to perform critical level 2 data quality checks |
| on all applicable tables. |
|---------------------------------------------------------------------------------------|
| see 00.0_scdm_mil_data_qa_review_master_file.sas |
|---------------------------------------------------------------------------------------|
| Sentinel Coordinating Center |
| info@sentinelsystem.org |
\*-------------------------------------------------------------------------------------*/
*-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-;
* PLEASE DO NOT EDIT BELOW WITHOUT CONTACTING THE SENTINEL OPERATIONS CENTER ;
*-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-;
%timestamp(&module._start);
/*-------------------------------------------------------------------------------------*/
/* START Level 2 Macro */
/*-------------------------------------------------------------------------------------*/
/* All macros called from level2_abort are found in 00.1_scdm_standard_macros.sas */
/*-------------------------------------------------------------------------------------*/
%macro level2_abort (level=2);
/* Create the list of tables to to include for Level 2 Checks */
into :tabidlist separated by ' '
, :sql_tabidlist separated by ','
from msoc.control_flow_3 (where=(execute_flag='y' and cc_table ne 'X'))
/*-------------------------------------------------------------------------------------*/
/* 1 - Perform L2 1.intra-table and 2.cross-table datachecks where AbortYN='y' for */
/*-------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* 1.1 - Create temporary lookup table */
/*-----------------------------------------------------------------------------------*/
/*1:indicates no crosstable, and abort=y only*/
%l2_lkp_table (abortyn=, crosstable=n);
%else %if &l.=2 %then %do;
%l2_lkp_table (abortyn=y, crosstable=y);
/*-----------------------------------------------------------------------------------*/
/* 1.2 - Create a macro variable with list of unique CheckIds from temporary lookup */
/*-----------------------------------------------------------------------------------*/
, count(distinct checkid)