From c6595c1f618803d9202cba1a1fe76986449cf2e2 Mon Sep 17 00:00:00 2001 From: Mihajlo Medjedovic Date: Tue, 26 Mar 2024 14:20:01 +0100 Subject: [PATCH] fix(sas): viewer versions fix --- sas/sasjs/services/public/viewdata.sas | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sas/sasjs/services/public/viewdata.sas b/sas/sasjs/services/public/viewdata.sas index c775e53..a59239f 100644 --- a/sas/sasjs/services/public/viewdata.sas +++ b/sas/sasjs/services/public/viewdata.sas @@ -85,13 +85,12 @@ data work.intest; length libds $41 filter_rk 8. searchval $100 searchtype $4; set work.SASCONTROLTABLE; - + call symputx('orig_libds',libds); /* validate filter_rk */ if filter_rk le 0 then filter_rk=-1; /* check if the request is for a format catalog */ if substr(cats(reverse(libds)),1,3)=:'CF-' then do; - call symputx('orig_libds',libds); libds=scan(libds,1,'-'); putlog "Format Catalog Captured"; call symputx('fmt_ind',1);