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

interactive report for displaying customer information

Former Member
0 Likes
493

hi,

how to create an interactive report for displaying customer information based on selection smade ,and corresponding bank details.

hi,

how to create an interactive report for displaying customer information based on selection smade ,and corresponding bank details.

2 REPLIES 2
Read only

Former Member
0 Likes
446

Use KNa1 and KNBK Table to get output

Read only

Former Member
0 Likes
446

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.