Loading...
Searching...
No Matches
dc_createdataset.sas
Go to the documentation of this file.
1/**
2 @file dc_createdataset.sas
3
4 <h4> SAS Macros </h4>
5
6 @version 9.3
7 @author 4GL Apps Ltd
8 @copyright 4GL Apps Ltd. This code may only be used within Data Controller
9 and may not be re-distributed or re-sold without the express permission of
10 4GL Apps Ltd.
11**/
12
13%macro dc_createdataset(libds=mm_getlibs);
14data viewdata;
15 var1='Table';
16 var2="&libds";
17 var3="does not exist!";
18run;
19
20%mend dc_createdataset;