Hi Experts!
We are trying to check the scope of the table if it's a global or session scope table. I found this article that recommends to use table.exists... but my question is how can I save the result to a macro variable? So far the results are only referred to under proc cas, but i need to use it for other code sections outside of proc cas.
This was the code that we were trying:
proc cas;
table.tableexists result=r/ caslibe = caslib, name = table;
run;
coming from this post:
https://communities.sas.com/t5/SAS-Communities-Library/An-alternative-approach-to-check-the-scope-of...
would greatly appreciate any recommendations! thank you!