2007 May 17 5:44 PM
hi,
how to create an interactive report for displaying customer information based on selection smade ,and corresponding bank details.
2007 May 17 5:58 PM
2007 May 17 6:08 PM
pls check the sample code
Use the tables Kna1 and knbk to get the customer details.
***extract the data into internal table
select * from dbtab into itab.
*In the loop hide the field you want to trigger the interactive list.
loop at itab.
write: / itab-kunnr, itab-name1.
Hide itab-kunnr.
endloop.
use at line selecton to get desired output based on the condition
at line-selection.
select * fro dbab into itab where field = itab-kunnr.
awards points if help ful.