Hi, I am trying to promote a session scope CAS table. The table needs to be global scope but in CAS only. Here is my code: cas Public sessopts=(caslib='Public' timeout=1800 locale="en_US"); /* Create SAS librefs for existing caslibs so that they are visible in the SAS Studio Libraries tree. */ /* Recommend to use the 'Public' as the libname */ libname Public cas caslib ='Public'; PROC CASUTIL; droptable casdata='GL_PERIODS_inCas' incaslib="Public" quiet; promote casdata='GL_PERIODS' incaslib="PUBLIC" casout = 'GL_PERIODS_inCas' outcaslib="PUBLIC"; quit; The above code generates the following error: ERROR: There is no session-scope table GL_PERIODS in caslib Public of Cloud Analytic Services. ERROR: The action stopped due to errors. Please let me know what would be the fix. Much Thanks!
... View more