dc_getusers.sas
Go to the documentation of this file.
1 /**
2  @file dc_getusers.sas
3  @brief Gets all available libraries
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  <h4> SAS Macros </h4>
8  @li mv_getusers.sas
9 
10  @version 3.5
11  @author 4GL Apps Ltd
12  @copyright 4GL Apps Ltd. This code may only be used within Data Controller
13  and may not be re-distributed or re-sold without the express permission of
14  4GL Apps Ltd.
15 **/
16 
17 %macro dc_getusers(outds=mm_getlibs);
18  %mv_getusers(outds=&outds)
19  proc sort data=&outds(rename=(id=uri)) out=&outds(keep=uri name);
20  by name;
21  run;
22 %mend dc_getusers;