cancel
Showing results for 
Search instead for 
Did you mean: 

initializu00EDng select options field with default values and with NO INTERVALS

Former Member
0 Kudos

Dear All,

I have used WDR_SELECT_OPTIONS technology within WD Abap.

I also have added the fields which have to be taken into consideration.

lt_range_table =

wd_this->m_handler->create_range_table(

i_typename = 'PLANT' ).

wd_this->m_handler->add_selection_field(

i_id = 'PLANT'

it_result = lt_range_table

i_read_only = read_only ).

Can I assign two values to this field 'PLANT' whereby the user may take only these values.

I mean kind of pre initializíng of this select options field with default values.

Due to this handling it should be prevented that the user can give other values

except this values.

Additonally it should be fine whether it is possible to disable the second input field

of this select options field like NO INTERVALS .

.

Regard

sas

Regard

sas

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos
wd_this->m_handler->add_selection_field(
i_id = 'PLANT'
it_result = lt_range_table
I_NO_INTERVALS = 'X'
i_read_only = read_only ).

Pls check 'WDR_TEST_SELECT_OPTIONS' web dynpro component

Answers (0)