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: 

f4 search help value not appearing in the selection-option field

former_member211992
Active Participant
0 Kudos

Dear all

I have done a dialog prog , in that i have defined subscreen to pass select options . i have done search help for that select options field . i can get f4 help for that but when when i selecting any value in that help (pop up window) that not appearing in the select option field (s_bwtar) , help me to rectify this

 

AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_BWTAR-LOW.

 

 

DATA : BEGIN OF IT_HELP OCCURS 0,

BWTAR TYPE MBEW-BWTAR,

END OF IT_HELP.

SELECT DISTINCT

bwtar

FROM MBEW

INTO CORRESPONDING FIELDS OF TABLE it_help.

 

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING

retfield = 'S_BWTAR'

dynpprog = sy-repid

dynpnr = '400'

window_title = 'Year' " #EC NOTEXT

value_org = 'S'

DISPLAY = 'F'

TABLES

value_tab = IT_HELP

 

* return_tab = lt_select_values

 

EXCEPTIONS

parameter_error = 1

no_values_found = 2

OTHERS = 3.

1 ACCEPTED SOLUTION

laurent_fournier2
Contributor
0 Kudos

As far I can see, you have commented the return_tab parameter.

Uncomment the line, loop at return tab and move fieldval to s_bwtar-low.

Regards.

2 REPLIES 2

laurent_fournier2
Contributor
0 Kudos

As far I can see, you have commented the return_tab parameter.

Uncomment the line, loop at return tab and move fieldval to s_bwtar-low.

Regards.

0 Kudos

Thanks laurent , i got it