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

Table control with dictionary search help

Former Member
0 Likes
1,238

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,124

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

4 REPLIES 4
Read only

Former Member
0 Likes
1,124

Hi Rebeca,

Please try using FM 'dynp_value_update' to update value to screen.

regards,

Archer

Read only

venuarun
Active Participant
0 Likes
1,124

Hi Reol,

Please check this link . I think this may solve your issue.

http://scn.sap.com/thread/1343734

With regards

Arun VS

Read only

former_member202818
Active Contributor
0 Likes
1,124

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

Read only

Former Member
0 Likes
1,125

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