From 5f5fb0116a5954fd84c8c228a913912e039587d5 Mon Sep 17 00:00:00 2001 From: 4gl <@> Date: Wed, 13 May 2026 14:04:13 +0100 Subject: [PATCH] fix: adding weboutBEGIN/END when exectask=true --- viya/mv_webout.sas | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/viya/mv_webout.sas b/viya/mv_webout.sas index 1bce696..a188f6e 100644 --- a/viya/mv_webout.sas +++ b/viya/mv_webout.sas @@ -158,6 +158,9 @@ /* setup json */ data _null_;file &fref; + %if %str(&_debug) ge 131 and &_EXECUTIONTASKS=true %then %do; + put '>>weboutBEGIN<<'; + %end; put '{"SYSDATE" : "' "&SYSDATE" '"'; put ',"SYSTIME" : "' "&SYSTIME" '"'; run; @@ -270,7 +273,9 @@ memsize=quote(cats(memsize)); put ',"MEMSIZE" : ' memsize; put "}"; - + %if %str(&_debug) ge 131 and &_EXECUTIONTASKS=true %then %do; + put '>>weboutEND<<'; + %end; %if %upcase(&fref) ne _WEBOUT and &stream=Y %then %do; data _null_; rc=fcopy("&fref","_webout");run; %end;