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: 

how to declare and work with select-option in screen painter?

Former Member
0 Kudos

hello there,

can anybody plz suggest me ,how to declare and work with select-option in screen painter?

neon

1 ACCEPTED SOLUTION

Former Member
0 Kudos

As far as i know this is not possible directly..

What you can do is declare a selection screen as subscreen in your module pool. Use select options in this screen. And then include this selection screen on your dialog screen as a subscreen in a subscreen area..

For declarin a selection screen as subscreen you can use the syntax.

SELECTION-SCREEN BEGIN OF SCREEN 1001 AS SUBSCREEN.

SELECT-OPTIONS LV_SEL FOR xxxx.

SELECTION-SCREEN END OF SCREEN 1001 AS SUBSCREEN.

~Piyush Patil

5 REPLIES 5

Former Member
0 Kudos

As far as i know this is not possible directly..

What you can do is declare a selection screen as subscreen in your module pool. Use select options in this screen. And then include this selection screen on your dialog screen as a subscreen in a subscreen area..

For declarin a selection screen as subscreen you can use the syntax.

SELECTION-SCREEN BEGIN OF SCREEN 1001 AS SUBSCREEN.

SELECT-OPTIONS LV_SEL FOR xxxx.

SELECTION-SCREEN END OF SCREEN 1001 AS SUBSCREEN.

~Piyush Patil

narin_nandivada3
Active Contributor
0 Kudos

Hi Blue,

Please check these threads which will help you a lot..

Good luck

Narin

Former Member
0 Kudos

Hi,

create a screen with the Input/Output field with ranges(in the properties) and refer the database table filed here for this input field which ever you want select options.

hope this way you can work.

Thanks & Regards,

Madhavi.

Mohamed_Mukhtar
Active Contributor
0 Kudos

hi Neon ,

See below thread , Same subject

With Regards..

Former Member
0 Kudos

Dear

Try this .

Concept: In module pool programming's screen, we call a subscreen. That subscreen is made in SE38 report. We pass the values of select-options in memory variable so as to keep the values intact for the use in module pool programming

with call function 'COMPLEX_SELECTIONS_DIALOG'

-Maharshi