sample_xlmap_data_postapprove.sas
Go to the documentation of this file.
1 /**
2  @file
3  @brief Sample XLMAP Data hook program (sample_xlmap_data_postapprove)
4  @details This hook script should NOT be modified in place, as the changes
5  would be lost in your next Data Controller deployment.
6  Instead, create a copy of this hook script and place it OUTSIDE the
7  Data Controller metadata folder.
8 
9  Available macro variables:
10  @li LOAD_REF - The Load Reference (unique upload id)
11  @li ORIG_LIBDS - The target library.dataset that was just loaded
12 
13 **/
14 
15 
16 data _null_;
17  set work.staging_ds;
18  putlog 'load ref is in the staged data: ' load_ref;
19  stop;
20 run;
21 
22 %put the unique identifier (LOAD_REF) is also a macro variable: &LOAD_REF;