1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-10 22:14:35 +00:00

fix: base_uri for mv_deletejes

This commit is contained in:
vrh
2020-09-03 16:29:21 +02:00
parent 2b683509ac
commit 1c873afe57
2 changed files with 4 additions and 4 deletions

View File

@@ -10703,7 +10703,7 @@ run;
libname &libref1 JSON fileref=&fname1;
data _null_;
set &libref1..links;
if rel='members' then call symputx('mref',quote(trim(href)),'l');
if rel='members' then call symputx('mref',quote("&base_uri"!!trim(href)),'l');
run;
/* get the children */
@@ -10725,7 +10725,7 @@ libname &libref1a JSON fileref=&fname1a;
data _null_;
set &libref1a..items;
if contenttype='jobDefinition' and upcase(name)="%upcase(&name)" then do;
call symputx('uri',uri,'l');
call symputx('uri',cats("&base_uri",uri),'l');
call symputx('found',1,'l');
end;
run;

View File

@@ -95,7 +95,7 @@ run;
libname &libref1 JSON fileref=&fname1;
data _null_;
set &libref1..links;
if rel='members' then call symputx('mref',quote(trim(href)),'l');
if rel='members' then call symputx('mref',quote("&base_uri"!!trim(href)),'l');
run;
/* get the children */
@@ -117,7 +117,7 @@ libname &libref1a JSON fileref=&fname1a;
data _null_;
set &libref1a..items;
if contenttype='jobDefinition' and upcase(name)="%upcase(&name)" then do;
call symputx('uri',uri,'l');
call symputx('uri',cats("&base_uri",uri),'l');
call symputx('found',1,'l');
end;
run;