2007 Jan 10 9:49 AM
2007 Jan 10 9:51 AM
HI,
you can maintain a title by using 'ATTRIBUTES' of the report.
or by using
SET TITLEBAR 'ABC'.
2007 Jan 10 9:50 AM
2007 Jan 10 9:51 AM
HI,
you can maintain a title by using 'ATTRIBUTES' of the report.
or by using
SET TITLEBAR 'ABC'.
2007 Jan 10 9:52 AM
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
2007 Jan 10 9:52 AM
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
2007 Jan 10 9:52 AM
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
2007 Jan 10 9:53 AM
2007 Jan 10 9:56 AM
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.
2007 Jan 10 10:01 AM
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.