Could someone of you help me to know how can I find the output file (outfr14a,outfr14b,outfr14) location from the following code?
if agi ne agi_v
then do;
knkbty = '1';
knkatv = '' ;
knkath = '' ;
agiteg = agi;
link schrijfv;
knkbty = '2';
knkatv = '' ;
knkath = '' ;
agiteg = agi_v;
link schrijfh;
end;
end;
return;
schrijfh:
*schrijf weg met huidige gegevens;
p2kbrn='7';
if substr(khiref,1,1) = '1' then do;
file outfr14a noprint notitles;
link fr14outh;
end;
if substr(khiref,1,1) = '2' then do;
file outfr14b noprint notitles;
link fr14outh;
end;
else if substr(khiref,1,1) = '0' then do;
file outfr14 noprint notitles;
link fr14outh;
end;
return;
return;
schrijfv:
p2kbrn='7';
if substr(khiref,1,1) = '1' then do;
file outfr14a noprint notitles;
link fr14outv;
end;
else if substr(khiref,1,1) = '2' then do;
file outfr14b noprint notitles;
link fr14outv;
end;
else if substr(khiref,1,1) = '0' then do;
file outfr14 noprint notitles;
link fr14outv;
end;
* schrijf weg met huidige gegevens ;
return;
return;
... View more