Loading...
Searching...
No Matches
mpe_x_test.some_num.sas
Go to the documentation of this file.
1/**
2 @file
3 @brief Generic validator for libraries
4 @details The input table is simply one row from the target table in table
5 called "work.source_row".
6
7 Available macro variables:
8 @li DC_LIBREF - The DC control library
9 @li LIBDS - The library.dataset being filtered
10 @li VARIABLE_NM - The column being filtered
11
12
13 <h4> Service Outputs </h4>
14 Output should be a single table called "work.dynamic_values" in the format
15 below.
16
17 |RAW_VALUE:??|
18 |---|
19 |44|
20
21 <h4> SAS Macros </h4>
22 @li dc_getlibs.sas
23
24
25**/
26
27proc sql;
28create table work.DYNAMIC_VALUES as
29 select distinct some_num as raw_value
30 from &libds
31 order by 1;
32
33