Files
dc/sas/sasjs/services/validations/mpe_x_test.some_num.sas
T
allan 9b18a45d35
Build / Build-and-ng-test (pull_request) Successful in 3m54s
Build / Build-and-test-development (pull_request) Successful in 9m39s
Lighthouse Checks / lighthouse (pull_request) Successful in 17m49s
fix: removing display_value in SAS code
2026-06-25 17:24:35 +01:00

34 lines
648 B
SAS

/**
@file
@brief Generic validator for libraries
@details The input table is simply one row from the target table in table
called "work.source_row".
Available macro variables:
@li DC_LIBREF - The DC control library
@li LIBDS - The library.dataset being filtered
@li VARIABLE_NM - The column being filtered
<h4> Service Outputs </h4>
Output should be a single table called "work.dynamic_values" in the format
below.
|RAW_VALUE:??|
|---|
|44|
<h4> SAS Macros </h4>
@li dc_getlibs.sas
**/
proc sql;
create table work.DYNAMIC_VALUES as
select distinct some_num as raw_value
from &libds
order by 1;