dc_gettableid.sas
Go to the documentation of this file.
1 /**
2  @file dc_gettableid.sas
3  @brief Gets the table id
4  @details There are two versions of this macro - a META and a VIYA version (in
5  different folders). The interfaces is the same. This version is VIYA.
6 
7 
8  @version 9.3
9  @author 4GL Apps Ltd
10  @copyright 4GL Apps Ltd. This code may only be used within Data Controller
11  and may not be re-distributed or re-sold without the express permission of
12  4GL Apps Ltd.
13 **/
14 
15 %macro dc_gettableid(libref=
16  ,ds=
17  ,outds=);
18 
19 data &outds;
20  tableuri='';
21  tablename="&ds";
22 run;
23 
24 %mend dc_gettableid;