Application Development 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: 

Interactive Report

Former Member
0 Kudos

hi,

how to make possible to click only on the first column values of every screen?..

for example,if i want to see the detailed list of channel wise sales report when i select any of sales organization..i want to restrict the end user selection only on the organzation values,not any where else,what is the logic for this?...

Thanks,

Sri

1 ACCEPTED SOLUTION

Mohamed_Mukhtar
Active Contributor
0 Kudos

Hi,

This can be done with the help of GET CURSOR


for furthur details
press F1 on GET CURSOR

Thanks & Regards

2 REPLIES 2

Mohamed_Mukhtar
Active Contributor
0 Kudos

Hi,

This can be done with the help of GET CURSOR


for furthur details
press F1 on GET CURSOR

Thanks & Regards

Former Member
0 Kudos

HI, hope this is your requirement .

For selecting the row in a report you have to declare a variable box type c in your main internal table .

and in the layout assign (layout-box_fieldname = 'BOX'.) .

this will put a flag when the user select a row or more that one row .

now in your internal table the the box field will be marked as X if the row is selected by the end user .

main internal table values will be

BOX F1 F2 F3

a b c

x d e f

g h i

temp_table = main internal table .

now the temp_i_table will have the values of the internal table .

and now

temp[] = itab_main[].

DELETE temp_i_table WHERE box NE 'X'.

now you will get the rows which the end user is selected .

now write your select query according to your requirement .

regards

chinnaiya .