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

Process on value request for table control

Former Member
0 Likes
1,169

I have 10 rows in a table control,when a F4 for

a particular column in a row is called,process on value request is called here i call a customized F4 based on the structure mapped to the row,but unfortunaletly unlike the screen the mapped structure is not populated,so is

there a way of getting the structure mapped to the row.

4 REPLIES 4
Read only

Former Member
0 Likes
898

If possible post your F4 code .

Regards

Venkat

Read only

Former Member
0 Likes
898

what does it mean posting F4 code

Read only

0 Likes
898

Sorry it is code written for F4

Regards

Venkat

Read only

ssimsekler
Product and Topic Expert
Product and Topic Expert
0 Likes
898

Hi Kaushik

As I guess solution would be reading the row into the structure which the F4 screen uses.

<u><b>e.g.</b></u>

GET CURSOR LINE lv_linno .
lv_linno = lv_linno + <table_control_name>-top_line - 1 .
READ TABLE <itab> INTO <screen_structure> INDEX lv_linno.

If this is not the case, then posting your POV coding will be better to analyze your code.

*--Serdar