Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Pre-defined header in report

Former Member
0 Likes
509

Hi All,

Maybe a stupid question but ... when we create a new ABAP (se38->create) in our system, a report header (lines and pre-defined fields) is already in there. It's not an existing pattern in the system (no entries in TSE05).

Can anyone tell me where this header in the ABAP is coming from and how we can change it ?

Thanks,

Rob Makelaar.

3 REPLIES 3
Read only

Former Member
0 Likes
459

Hi,

If you use the NO STANDARD PAGE HEADING with the REPORT <Report name>, then you won't get these headers

Regards

Sudheer

Read only

former_member194669
Active Contributor
0 Likes
459

Hi,

Check this example code


PROGRAM ZARS NO STANDARD PAGE HEADING. 

START-OF-SELECTION. 
  WRITE: / 'line 1'. 
  WRITE: / 'line 2'. 
  WRITE: / 'line 3'. 

TOP-OF-PAGE. 
  WRITE: / 'Heading'. 
  ULINE. 

a®

Read only

Former Member
0 Likes
459

It's not the output on the report, i'm talking about when you're creating an ABAP with the SE38. When he opens the file, a header (author, date, purpose etc) is already there. I want to change this. Any idea's ?