I have this weird situation.
I use this data step to run macros:
data _null_;
set all_include_Stornos ;
IF TREATMENT_IND in (4) AND DDS_ROW_IND NE 1 THEN DO;
CALL EXECUTE ('%HAKPAA ('||POLICY_RK||','||POLICY_VERSION||');');
call execute ('%UPDATE(HAKPAA_CUMULATE);');
END;
run;
First macro I call (%HAKPAA) runs pretty good. The other macro (%UPDATE) , doesn't seem to run at all. When I run it manually , not inside the data Null, just call it - it works fine.
I tried to call it from the first macro too (%HAKPAA) but still - the program doesn't get to it.
Does anybody knows why?
options mprint macrogen symbolgen;
to get some details in the log. – BellevueBob