Thanks.
Tried the below, SAS throwed an error.
data _null_;
set A;
file 'D:\final.txt' delimiter ='09'X ;
put 'acct'||'09'x||'scr';
put acct scr ;
run;
--
22
-----
200
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, arrayname,
#, (, +, /, //, ;, @, @@, OVERPRINT, _ALL_, _BLANKPAGE_, _ODS_, _PAGE_.
ERROR 200-322: The symbol is not recognized and will be ignored.
Also, If I just put put 'acct' in the first line, SAS is populating this btw each observation of data, something like
acct
123432133 323
acct
432233243 322
Regards