‎2010 Mar 10 2:33 PM
Hi All,
I have a requirement to display the details in table control and if we say double click on any of the table control line item, I need to display one more report (like interactive report).
I have searched the forum, but not suiting my requirement.
Can anyone tell me the procedure, how can we do it.
Thanks a lot.
Regards
Ramesh.
‎2010 Mar 10 2:45 PM
You will need to activate the SELECT event (shortcut is F2) and then control this in the user command section of the code.
After that you will need to get the row table selected and i supose you want to submit a report with data depending on the row selected, so something like this.
GET CURSOR LINE linha.
linha = linha + tc_85-top_line - 1.
READ TABLE t_85 INTO wt_85 INDEX linha.
This will get you the selected row, then it is a simple submit report with the via selection screen with the data from that row.
‎2010 Mar 10 2:45 PM
You will need to activate the SELECT event (shortcut is F2) and then control this in the user command section of the code.
After that you will need to get the row table selected and i supose you want to submit a report with data depending on the row selected, so something like this.
GET CURSOR LINE linha.
linha = linha + tc_85-top_line - 1.
READ TABLE t_85 INTO wt_85 INDEX linha.
This will get you the selected row, then it is a simple submit report with the via selection screen with the data from that row.
‎2010 Mar 10 3:04 PM
Hi, <li>Check the below thread. <b><u></b></u> Thanks Venkat.O
‎2010 Mar 10 6:31 PM