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: 

Table control with dictionary search help

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

Hi Rebeca,

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

regards,

Archer

venuarun
Active Participant
0 Kudos

Hi Reol,

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

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

With regards

Arun VS

former_member202818
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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