2014 Oct 13 3:29 PM
Dear experts,
I've a table control into an internal table with strcture table A. I've created a search help between the field "Units" of table A to "Code" of table B, the search help also returns the field description (A) -> code_description (B)
Table A:
Client, units, description, values.....
Table B.
Client, Code, code_description, values...
There's an internal table created in my table control for the table A. The value "Units" is being displayed correctly with the search help, but, the field "descrtiption" is not filled, can anybody know why?
Could you please guide me with this?
Thanks in advance,
Regards,
Rebeca
2014 Oct 14 10:14 AM
Dear Experts,
Thanks a lot for your support, finally I've created the following:
loop at internal_table.
chain.
FIELD field_1 module get_field2 on request.
FIELD field_2.
endchain.
endloop.
With the module get_field2 of the "on request" I can read the value for field 2 and works correctly.
Thanks for your help
Regards,
Rebeca
2014 Oct 14 2:58 AM
Hi Rebeca,
Please try using FM 'dynp_value_update' to update value to screen.
regards,
Archer
2014 Oct 14 5:02 AM
Hi Reol,
Please check this link . I think this may solve your issue.
http://scn.sap.com/thread/1343734
With regards
Arun VS
2014 Oct 14 5:25 AM
Hi Reol,
Is this search help working perfectly in se11?
Then you can map your table control fields directly to table fields..
For that ..
1. TABLES : ZTABLE1.
2.Drag fields from table ZTABLE1 to table control.
3.Ensure this for all fields
4.Use ZTABLE1 as work area for table control.
Or..................
Use F4IF_INT_TABLE_VALUE_REQUEST with parameter dynpfld_mapping.
Regards
Sreekanth
2014 Oct 14 10:14 AM
Dear Experts,
Thanks a lot for your support, finally I've created the following:
loop at internal_table.
chain.
FIELD field_1 module get_field2 on request.
FIELD field_2.
endchain.
endloop.
With the module get_field2 of the "on request" I can read the value for field 2 and works correctly.
Thanks for your help
Regards,
Rebeca