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: 

select-options passive ?

Former Member
0 Kudos
121

hi friends ı want to render select-option section.

what do I do?

7 REPLIES 7

bpawanchand
Active Contributor
0 Kudos
70

HI

TABLES :

spfli.

SELECT-OPTIONS:

s_carrid FOR spfli-carrid,

s_connid FOR spfli-connid.

for select-options you cannot give ABAp data types reference but you need to refer to the any of the dictionary or global type

Regards

Pavan

Former Member
0 Kudos
70

what do I do ?:)

0 Kudos
70

Hi

I cannot get you exactly what is your requirement?

Mention clearly

Regards

Pavan

0 Kudos
70

Hello Emrah,

rendering the select-options are not in our hands. It is left to End users according to their selction criteria. We dont have nothing to render anything untill and unless customer asks you to provide some default values in selct-options. You can provide default values in the select-options using INITIALIZATION event. And you can validate the select-options using AT SELECTION-SCREEN on <select-option> event.

Best Regards,

Sasidhar Reddy Matli.

former_member188685
Active Contributor
0 Kudos
70

this code will disable the select options.

tables: mara.

select-options: s_matnr for mara-matnr.

at selection-screen output.

loop at screen.

if screen-name cs 'S_MATNR'.
 screen-input = 0.
modify screen.
endif.
endloop.

is that you are expecting..or some thing else..

former_member787646
Contributor
0 Kudos
70

Hi,

you can provide the value to the SELECT-OPTION object in the INITIALIZATION event.

Eg.

so-option = 'I'.

so-sign = 'BT'.

so-low = '100'.

so-high = '999'.

Append so.

Hope it helps.

Murthy

Former Member
0 Kudos
70

thank you very much friends:)))