Loading...
Searching...
No Matches
refreshcatalog.sas
Go to the documentation of this file.
1/**
2 @file refreshcatalog.sas
3 @brief Refreshes the library data catalog
4 @details A library may be passed in a LIBREF url param.
5
6 <h4> SAS Macros </h4>
7 @li mpeinit.sas
8 @li dc_refreshcatalog.sas
9 @li mpeterm.sas
10
11 @version 9.3
12 @author 4GL Apps Ltd
13 @copyright 4GL Apps Ltd. This code may only be used within Data Controller
14 and may not be re-distributed or re-sold without the express permission of
15 4GL Apps Ltd.
16
17**/
18%global libref;
19%mpeinit()
20
21%dc_refreshcatalog(&libref)
22
23
24data sasparams;
25 length msg $64;
26 msg='Catalog Refresh Complete';
27run;
28
29%webout(OPEN)
30%webout(OBJ,sasparams)
31%webout(CLOSE)
32
33%mpeterm()