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

Former Member
0 Likes
554

Hi all,

I'm creating a table control using internal table like the example below:

data: begin of itable occurs 0,

item like ztcn08-item,

name like ztcn04-name,

amount like ztcn08-amount,

price like ztcn08-price,

whs like ztcn10-whs,

end of itable.

What I would like to do is: when I select a "item" (for example using a search help), the "name" of the item automatically appear in the column name (this information is in the ztcn04).

I hope you understand what I mean.

Many thanks .

Cristina Neale

1 ACCEPTED SOLUTION
Read only

Manohar2u
Active Contributor
0 Likes
470

Create a search help for item and name with export list values as item (01) and name (02). And assign this search help to item.

Regds

Manohar

3 REPLIES 3
Read only

Manohar2u
Active Contributor
0 Likes
471

Create a search help for item and name with export list values as item (01) and name (02). And assign this search help to item.

Regds

Manohar

Read only

Laxmana_Appana_
Active Contributor
0 Likes
470

Hi,

use FM's :

F4IF_INT_TABLE_VALUE_REQUEST - to display item and name values in F4 help.

DYNP_VALUES_UPDATE- to update the name value for the selected item from F4 help.

check these links for sample code :

Regards

Appana

Read only

Former Member