Hi,
Check out this Tech Support note. Generally speaking, you need to specify ROW=FLOAT when you are suppressing headers, as described here:
http://support.sas.com/faq/011/FAQ01127.html
Also, you have to be aware that whether ROW=FLOAT works, depends on the level of SAS that you are running. For example, in SAS 8, ROW=FLOAT did NOT work with ODS destinations (only LISTING), but according to this Tech Support note,
http://support.sas.com/techsup/unotes/SN/000/000498.html
you should find that ROW=FLOAT works, starting with SAS 9.1.
So your modified TABLE statement options would be:[pre]
table
/ row=float rts=48 misstext='0';
[/pre]
cynthia