Hi:
The statement that takes away the procedure titles is:
ODS NOPTITLE;
There are a couple of different ways to specify this ODS Statement. One way would be to change the EG options so that the statement was issued before EVERY task and the other method would be to remember to add it as custom code only for those tasks that you know have procedure titles that you want to get rid of.
If you ever wanted to turn the procedure titles back on, the statement is:
ODS PTITLE;
Although almost everybody I talk to wants the procedure titles off and not on. Please note that the correct syntax for the statement includes the semi-colon at the end of the statement.
Hi:
A null TITLE statement will remove the SAS titles. The default SAS title is "The SAS System". However, a null TITLE statement will NOT remove the procedure title, such as "The Freq Procedure" or "The Means Procedure". To remove the procedure titles (which sit at the top of some, but not all procedures), you have to use ODS NOPTITLE; statement.