Hi!
I used PROC ASTORE to score new data with a model built using Model Studio. I used the following code, that runs with no errors and it shows me the output table.
proc astore;
score data=SRCRCTS.Dados_PFR_BL
rstore=Models._1UWO0QEF9FQWIMWAQU43SNBFY_AST
epcode='/sasdata/SRC/RCTS/dmcas_epscorecode.sas'
out=SRCRCTS.LEGADO_PROCESSADO;
run;
quit;
My problem is that now I want to use the table LEGADO_PROCESSADO on the VA, but it's not on the lib SRCRCTS. I used VA to try to open the data but it does not appear there and then I tried to use PROC CASUTIL to try to promote the table but when I say the name of the table and the lib it returns me an error that the table does not exist. I really don't know what is happening and hope someone can help me.