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: 

Title of the report

Former Member
0 Kudos
161

Hi,

How can I write a title in my report?

1 ACCEPTED SOLUTION

dani_mn
Active Contributor
0 Kudos
110

HI,

you can maintain a title by using 'ATTRIBUTES' of the report.

or by using

SET TITLEBAR 'ABC'.

8 REPLIES 8

anversha_s
Active Contributor

dani_mn
Active Contributor
0 Kudos
111

HI,

you can maintain a title by using 'ATTRIBUTES' of the report.

or by using

SET TITLEBAR 'ABC'.

Former Member
0 Kudos
110

It you want to change the title of your report, go to se38, input you report name, choos 'Attributes' in the 'Subobjects', click 'change', popup a windows, you can change title there. When finish the change, save it, and compile the application

Former Member
0 Kudos
110
initialization.

SET TITLEBAR 'TEST'.

option 1

DATA PROG LIKE SY-REPID.

PROG = 'TESTPROG'.

SET TITLEBAR 'ABC' OF PROGRAM PROG.

This example sets the title 'ABC'for program 'TESTPROG'.

option 2

DATA: PAR1(4) VALUE 'par1',

PAR2(4) VALUE 'par2'.

SET TITLEBAR 'ABC' WITH PAR1 PAR2 'par3'.

Message was edited by:

Chandrasekhar Jagarlamudi

Former Member
0 Kudos
110

title means in title bar ?

use

set titlebar 'ZSPD'.

click on ZSPD give the title for your title bar below one button with all entries will come click that and activate the title.

regards

shiba dutta

Former Member
0 Kudos
110

u have give the title for reports only in Attributes .

Former Member
0 Kudos
110

Which title u mean.

*If you want to change the Report title u can change in Attributes of teh Program

  • In SET TITLEBAR 'ZTITLE' double click on ZTITLE u can create ur own title

  • U can specify the Title in ALV

  • U can specify in TOP-OF-PAGE too.

Former Member
0 Kudos
110

HI,

go through this link

http://help.sap.com/saphelp_nw04/helpdata/en/d2/cb415f455611d189710000e8322d00/content.htm

or

SET TITLEBAR 'TITLE1'

remember title should be always in capital letter.