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: 

To have the selection screen without any inputs

Former Member
0 Kudos
87

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.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
58

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

3 REPLIES 3

Former Member
0 Kudos
59

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

former_member555112
Active Contributor
0 Kudos
58

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

Former Member
0 Kudos
58

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.