Files
dc/sas/sasjs/targets/viya/macros_viya/dc_createdataset.sas
zver 7740d2ac86
Some checks failed
Build / Build-and-ng-test (pull_request) Successful in 3m36s
Build / Build-and-test-development (pull_request) Successful in 9m2s
Lighthouse Checks / lighthouse (24.5.0) (pull_request) Failing after 3h13m50s
fix: updates to demodata to enable auto CAS promote
2026-02-07 20:02:14 +00:00

18 lines
397 B
SAS

/**
@file dc_createdataset.sas
@author 4GL Apps Ltd
@copyright 4GL Apps Ltd. This code may only be used within Data Controller
and may not be re-distributed or re-sold without the express permission of
4GL Apps Ltd.
**/
%macro dc_createdataset(libds=mm_getlibs,outds=viewdata);
data &outds;
var1='Table';
var2="&libds";
var3="does not exist!";
run;
%mend dc_createdataset;