‎2006 Sep 05 9:19 AM
Hello Forum,
I have a new tab with a customiza search with some zfields..I use a selection method a zeta view, which is made with three tables, it works prefectly.
Well, but when i am going to select an item of my hit list this is not export to the main screen, i dont know why or is is a problem of the selection method i choose...
Any suggestion??
Thanks in advance and regards,
MON
‎2006 Sep 05 9:48 AM
Hi,
In you search help check, whether you have selected EXP(in SE11) for the particular field for which you want to select value.
BR,
Swagatika
‎2006 Sep 05 9:48 AM
Hi,
In you search help check, whether you have selected EXP(in SE11) for the particular field for which you want to select value.
BR,
Swagatika
‎2006 Sep 05 10:09 AM
Check if retfield and dynprofield parameter are given correctly in your program as for eg.
wl_dynpro_fld = pw_field.(screen field name)
wl_ret_fld = 'ERSBA'. ( data type)
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = wl_ret_fld
dynpprog = sy-cprog
dynpnr = sy-dynnr
dynprofield = wl_dynpro_fld
value_org = 'S'
TABLES
value_tab = tl_value
EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.