2009 Jan 17 10:02 AM
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
2009 Jan 17 10:14 AM
Hi,
This can be done with the help of GET CURSOR
for furthur details
press F1 on GET CURSORThanks & Regards
Hi,
This can be done with the help of GET CURSOR
for furthur details
press F1 on GET CURSORThanks & Regards
2009 Jan 17 10:14 AM
Hi,
This can be done with the help of GET CURSOR
for furthur details
press F1 on GET CURSORThanks & Regards
2009 Jan 17 10:29 AM
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 .
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |