1
0
mirror of https://github.com/sasjs/core.git synced 2026-04-09 18:13:14 +00:00

Merge pull request #413 from sasjs/issue412

fix: adding uri to length statement in mv_deletejes

Closes #412
This commit is contained in:
Allan Bowe
2026-02-09 23:07:11 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -26427,7 +26427,7 @@ libname &libref1a JSON fileref=&fname1a;
%let found=0;
/* %put Getting object uri from &libref1a..items; */
data _null_;
length contenttype name $1000;
length contenttype name uri $1000;
call missing(of _all_);
set &libref1a..items;
if contenttype='jobDefinition' and upcase(name)="%upcase(&name)" then do;

View File

@@ -117,7 +117,7 @@ libname &libref1a JSON fileref=&fname1a;
%let found=0;
/* %put Getting object uri from &libref1a..items; */
data _null_;
length contenttype name $1000;
length contenttype name uri $1000;
call missing(of _all_);
set &libref1a..items;
if contenttype='jobDefinition' and upcase(name)="%upcase(&name)" then do;