‎2009 Feb 18 8:44 AM
Hi friends,
I am using selection screen push button which displays push buttons on screen,
But unable to see the text on the button.I was able to see if i execute the program.But i was not able to see when i execute the transaction in the ecc 6 system.But i was able to see the text in sap 4.7 system.here is my code.
In top Include.
SELECTION-SCREEN PUSHBUTTON /5(18) p_audit USER-COMMAND aud.
SELECTION-SCREEN PUSHBUTTON 30(18) p_detail USER-COMMAND det.
In the report
*-- Initialization Part
INITIALIZATION.
*-- pushbuttons
p_audit = text-t01.
p_detail = text-t02.
p_copy = text-t03.
p_master = text-t04.
Thanks & regards.
Manoj Kumar
‎2009 Feb 18 8:58 AM
Hi,
Did you add the Text elements? If you have added, then, it will be visible.
Check the menu path Goto -> Text Elements -> Text Symbols.
If you haven't added text-t01 or text-t02, then please add it. If you have already added it, then, the code must look like the following:
INITIALIZATION. " OR AT Selection-screen OUTPUT
p_audit = text-t01.
p_detail = text-t02.
Best Regards,
Suresh
‎2009 Feb 18 9:07 AM
just check whether u have declared text-t01 and text-t02 in the text-symbols of the main program and not in any other includes.
‎2009 Feb 18 9:15 AM
I have done every thing.when i execute the transaction the text is not coming.when i execute the report the text is coming
‎2009 Feb 18 9:51 AM
hi ,
can you do the following :
AT SELECTION-SCREEN OUTPUT.
TIT = 'Four Buttons'.
BUT1 = text-t01.
BUT3 = text-t02.
it will work
‎2009 Feb 18 10:00 AM
SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE TEXT-T03.
SELECTION-SCREEN PUSHBUTTON 33(17) PUBX USER-COMMAND US04.
SELECTION-SCREEN END OF BLOCK B4.
SELECTION-SCREEN FUNCTION KEY 1. "button on the application toolbar
INITIALIZATION.
MOVE '@1S@ Email Ids' TO PUBU.
MOVE '@47@ Cover Note' TO PUBX.
MOVE 'Mail History' TO SSCRFIELDS-FUNCTXT_01.
DYN-ICON_ID = '@1S@'.
DYN-QUICKINFO = 'History of E-Mails'.
DYN-ICON_TEXT = 'Mail History'.
SSCRFIELDS-FUNCTXT_01 = DYN.
DYN-ICON_ID = '@1S@'.
‎2009 Feb 18 9:58 AM
Hi,
Check whether you have correctly created your transaction code. The trnx type: report transaction and 3 check boxes for GUI support are checked.
Regards.
‎2009 Feb 18 10:06 AM
hi!
Check for the text elements being declared and hope that u have activated them.....
b'coz otherwise it will work....