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

report

Former Member
0 Likes
1,012

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
988

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
Read only

former_member673464
Active Contributor
0 Likes
988

hi..

Use settitle bar 'TITLE'.

Message was edited by:

veereshbabu ponnada

Read only

Former Member
0 Likes
988

Goto->Attributes

Enter title in the 'Title' field

Read only

Former Member
0 Likes
988

just enter into the program and click on Goto attributes.

Here you can change the title of the report.

Regards,

Ram

Read only

Former Member
0 Likes
989

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

Read only

Former Member
0 Likes
988

Hi Murugan ,

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

Regs ,

Narayana Murthy

Read only

Former Member
0 Likes
988

hi,

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

it will be titil.

Rgds

Reshma

Read only

Former Member
0 Likes
988

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

Read only

Former Member
0 Likes
988

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

Read only

Former Member
0 Likes
988

THANKS TO ALL

Read only

Former Member
0 Likes
988

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.

Read only

Former Member
0 Likes
988

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....