cancel
Showing results for 
Search instead for 
Did you mean: 

Enter Issue in Select options

nishantbansal91
Active Contributor
0 Kudos

Hi,

We have faced one issue. We have created 4 select-option in web dynpro using component wdr_select_options.

On selection screen When i enter some value in selection field and click on search button value is not coming in select option range table. Here we have to press Enter to get the updated value. Without pressing enter we get the old value, Is there any parameter that we need pass.

Regards,

Nishant Bansal

Accepted Solutions (0)

Answers (1)

Answers (1)

nishantbansal91
Active Contributor
0 Kudos

Hi,

Solved. I would like to add the share.

I called this method getting the selection screen items.

I think issue was in this method. When i get the fields one by one i will get the updated value.

  wd_this->M_HANDLER->get_selection_screen_items(

     IMPORTING et_selection_screen_items = lt_sel_item ).

So before this method i wrote the below lines.

  lr_Dummy_data = wd_this->m_handler->GET_RANGE_TABLE_OF_SEL_FIELD( I_id = 'TRANSFER_NO' ).

   lr_Dummy_data = wd_this->m_handler->GET_RANGE_TABLE_OF_SEL_FIELD( I_id = 'EMP_PERNR' ).

   lr_Dummy_data = wd_this->m_handler->GET_RANGE_TABLE_OF_SEL_FIELD( I_id = 'EMP_GRADE' ).

  wd_this->M_HANDLER->get_selection_screen_items(

     IMPORTING et_selection_screen_items = lt_sel_item ).



Now i got the updated value in this table.


Regards,

Nishant Bansal