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: 

LSMW

Former Member
0 Kudos

Hi all

how to call selection screen in LSMW and create selection options for user?

3 REPLIES 3

Former Member
0 Kudos

HI Ganesh,

Refer to this related thread

Former Member
0 Kudos

hi,

In global data declare the selction screen.

For example

SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME TITLE l_txt1.

SELECTION-SCREEN BEGIN OF LINE.

*radiobutton to select application server as target.

PARAMETERS p_appl RADIOBUTTON GROUP rad1 DEFAULT 'X' USER-COMMAND f1.

SELECTION-SCREEN COMMENT 5(20) l_txt2 FOR FIELD p_appl.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 5(20) l_txt4 FOR FIELD p_appfn.

*error filename for application server

PARAMETER p_appfn TYPE rlgrap-filename.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.

etc.. acc to ur requirement

and this screen will appear in the convert data step

Thanks,

Deepti

Former Member
0 Kudos

Hi Ganesh,

I am assuming that you are using Standard Batch Input Program in the LSMW.

In option "Maintain fixed values, translations, user-defined routines", you can define which fields you want as the selection screen and with Parameter or Select Option. Further you can give the values by default as well in this option.

Thanks & Regards,

Sandip Kamdar