Hi All,
Not 100% sure about this question as only know a little bit about what happens when you rsubmit things...
Below code:-
Will create a file called Macro_Runs.SAS in my File Name=/home/username/ Area on the Unix box..
Is there any way to delete that file once it has been used? As we dont have access to see the unix area.
Ta
Robbie
Not 100% sure about this question as only know a little bit about what happens when you rsubmit things...
Below code:-
Code:
rsubmit;
filename Runcode "Macro_Runs.SAS";
Data t1;
set Product_Links;
File Runcode;
Length SubStr $200;
If Franchise NE "All" Then
SubStr = '%Create_Product_Data(FTitle='||TranWrd(trim(Left(Franchise)), " ","_")||',Franchise='||Trim(Left(Franchise))||');';
PUT SubStr;
run;
endrsubmit;
Will create a file called Macro_Runs.SAS in my File Name=/home/username/ Area on the Unix box..
Is there any way to delete that file once it has been used? As we dont have access to see the unix area.
Ta
Robbie