Application Development 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: 

report

Former Member
0 Kudos

How can i change / give the title for a ABAP report ?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

HI Murugan,

Please open the report in the change mode in SE38 then..

GOTO -> ATTRIBUTS..... here you will be able to change the title and other attributes..

Regards,

Jayant

Please award if helpful

11 REPLIES 11

former_member673464
Active Contributor
0 Kudos

hi..

Use settitle bar 'TITLE'.

Message was edited by:

veereshbabu ponnada

Former Member
0 Kudos

Goto->Attributes

Enter title in the 'Title' field

Former Member
0 Kudos

just enter into the program and click on Goto attributes.

Here you can change the title of the report.

Regards,

Ram

Former Member
0 Kudos

HI Murugan,

Please open the report in the change mode in SE38 then..

GOTO -> ATTRIBUTS..... here you will be able to change the title and other attributes..

Regards,

Jayant

Please award if helpful

Former Member
0 Kudos

Hi Murugan ,

we can define Title by using statement SET TITLE BAR WITH SE41 Tcode ..

Regs ,

Narayana Murthy

Former Member
0 Kudos

hi,

click Goto -> Attributes -> fill the first text box

it will be titil.

Rgds

Reshma

Former Member
0 Kudos

Hi

If you don't give any specific title by default the report Description what you give in the attributes is printed.

But when you give NO STANDARD PAGE HEADing along with the report name and when you write in TOP OF PAGE a report title that will be printed.

Or can use SEt TITLE BAR 'AAA" in Screens.

Reward points if useful

Regards

Anji

Former Member
0 Kudos

Hi Murugan,

In Report goto

Menu bar Goto--->Attributes.

enter the title in title field ,whatever u want to enter & save.

Reward points if helpful.

Regards,

Hemant

Former Member
0 Kudos

THANKS TO ALL

Former Member
0 Kudos

Hi

there are 2 ways of giving title to our ABAP Report,

1)Give the name of the report in Top-Of-Page

In REUSE_GRID_DISPLAY_ALV,you have an option Top-Of-Page= 'TOPOFPAGE'

form TOPOFPAGE

//declaration part

data :wa_header type slis_listheader,

t_header type slis_t_listheader.

wa_header-type='H'.

wa_header-info='name of the report'.

append wa_header to t_header.

clear wa_header.

endform.

Former Member
0 Kudos

Hi

there are 2 ways of giving title to our ABAP Report,

1)Give the name of the report in Top-Of-Page

In REUSE_GRID_DISPLAY_ALV,you have an option Top-Of-Page= 'TOPOFPAGE'

form TOPOFPAGE

//declaration part

data :wa_header type slis_listheader,

t_header type slis_t_listheader.

wa_header-type='H'.

wa_header-info='name of the report'.

append wa_header to t_header.

clear wa_header.

endform.

2)goto attributes->title and give the title to your ABAP Program

Plz REWARD....