2008 Aug 13 7:31 AM
hi friends ı want to render select-option section.
what do I do?
2008 Aug 13 7:33 AM
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
2008 Aug 13 7:35 AM
2008 Aug 13 7:36 AM
Hi
I cannot get you exactly what is your requirement?
Mention clearly
Regards
Pavan
2008 Aug 13 7:43 AM
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.
2008 Aug 13 7:37 AM
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..
2008 Aug 13 8:01 AM
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
2008 Aug 13 8:22 AM