mpe_xlmap_rules_postedit.sas
Go to the documentation of this file.
1 /**
2  @file
3  @brief Post Edit Hook script for the MPE_XLMAP_RULES table
4  @details Post edit hooks provide additional backend validation for user
5  provided data. The incoming dataset is named `work.staging_ds` and is
6  provided in mpe_loader.sas.
7 
8  Available macro variables:
9  @li DC_LIBREF - The DC control library
10  @li LIBREF - The library of the dataset being edited (is assigned)
11  @li DS - The dataset being edited
12 
13 
14 **/
15 
16 data work.staging_ds;
17  set work.staging_ds;
18 
19  /* ensure uppercasing */
20  XLMAP_ID=upcase(XLMAP_ID);
21 
22 run;
23