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 with interactive reporting facility

Former Member
0 Likes
559

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.

1 ACCEPTED SOLUTION
Read only

PedroGuarita
Active Contributor
0 Likes
460

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.

3 REPLIES 3
Read only

PedroGuarita
Active Contributor
0 Likes
461

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.

Read only

venkat_o
Active Contributor
0 Likes
460

Hi, <li>Check the below thread. <b><u></b></u> Thanks Venkat.O

Read only

Former Member
0 Likes
460

Resolved.

Thanks.