‎2004 Oct 28 6:10 AM
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.
‎2004 Oct 28 8:04 AM
‎2004 Oct 28 8:37 AM
‎2004 Oct 28 8:58 AM
‎2004 Oct 28 11:38 AM
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