2009 Jun 24 8:14 AM
Hi,
Can any one please let me know how to display only the comment in the selection screen without any inputs. It is for a table updation program. Once the T. Code is executed the user should be displayed with the selection screen that the so and so users only are to execute this program and then if the user is authorized then execution should happend.
thanks in advance.
2009 Jun 24 8:32 AM
Hi,
Try this
SELECTION-SCREEN BEGIN OF SCREEN 200.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) comm.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF SCREEN 200.
INITIALIZATION.
comm ='Testing'.
start-of-selection.
call selection-screen 200.
Regards
2009 Jun 24 8:32 AM
Hi,
Try this
SELECTION-SCREEN BEGIN OF SCREEN 200.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) comm.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF SCREEN 200.
INITIALIZATION.
comm ='Testing'.
start-of-selection.
call selection-screen 200.
Regards
2009 Jun 24 8:33 AM
Hi,
Instead of a blank selection screen why not use POPUP_TO_CONFIRM FM.
Incase user selects YES then proceed with the update else do not.
Regards,
Ankur Parab
2009 Jun 24 12:52 PM
Hi,
As Ravi suggested i implemented the logic for the selection screen. but, when i go for a message display the message is getting displayed in the SAP easy access screen. Please suggest to display the message in the same screen 200.
thanks in advance.