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