Nithi,
I'm sure there is probably an even easier way to do what you need, but the following would do it:
[pre]
data have;
input id x y z;
cards;
001 1 2 3
002 4 5 6
;
data _null_;
file "c:\want.txt";
set have;
put @1 id @;
put @4 x @;
put @5 y @;
put @6 z;
run;
[/pre]
i.e., simply define, with put statements, where you want data written and use the @ modifier to determine whether to end the record.
Art
-----------
> Hi ,
> Thanks for your response.I am new to SAS.I m doing
> it for a assignment.I am not going to work with the
> file in real time.Can you please let me know the
> proc for writing it in text file without
> delimiter,.
>
> Thanks,
> nithi