fix(sas): viewer versions fix
Build / Build-and-ng-test (pull_request) Failing after 46s Details

This commit is contained in:
Mihajlo Medjedovic 2024-03-26 14:20:01 +01:00
parent a267666e99
commit c6595c1f61
1 changed files with 1 additions and 2 deletions

View File

@ -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);