Application Development and Automation 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: 
Read only

export parameter in search help

Former Member
0 Likes
357

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
318

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

2 REPLIES 2
Read only

Former Member
0 Likes
319

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

Read only

Former Member
0 Likes
318

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.