Application Development and Automation 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: 
Read only

select-options passive ?

Former Member
0 Likes
978

hi friends ı want to render select-option section.

what do I do?

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

7 REPLIES 7
Read only

bpawanchand
Active Contributor
0 Likes
927

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

Read only

Former Member
0 Likes
927

what do I do ?:)

Read only

0 Likes
927

Hi

I cannot get you exactly what is your requirement?

Mention clearly

Regards

Pavan

Read only

0 Likes
927

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.

Read only

Former Member
0 Likes
927

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..

Read only

former_member787646
Contributor
0 Likes
927

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

Read only

Former Member
0 Likes
927

thank you very much friends:)))