‎2010 Apr 02 5:38 PM
Hi All -
I have created report program and create 2 transaction codes with different short description. I want to display the Tcodes decriptions instead of program attributes title.
Can anyone pls tell me how to do this?
Thanks,
Kannan
‎2010 Apr 02 7:02 PM
Hi Kannan,
define 2 titlebars t1 and t2 for the report. In report initialization,
IF sy-tcode = 't1'
SET TITLE t1.
ELSE.
SET TITLE t2.
ENDIF.Regards,
Clemens
‎2010 Apr 04 12:50 PM
Hi,
You can create 2 GUI title for the report. You the below logic.
if sy-tcode = 'A1'.
SET TITLEBAR 'A1'.
else.
SET TITLEBAR 'A2'.
endif.