‎2008 May 22 6:46 AM
what is difference between interactive list and interactive reports?
‎2008 May 22 6:51 AM
Hi,
I think REPORT is a program and LIST is the output of the program. INTERACTIVE report is the DETAILED report also known as DRILL DOWN report.
Reward if helpful.
Thanks.
‎2008 May 22 6:52 AM
Hi,
Interactive reports generate the interactive lists.
The Report which give an output so as to generate interactive lists is called
an interactive report.
Regards,
Jagadish
‎2008 May 22 8:36 AM
hi,
Interactive report allows the user to participate actively in retrieving and presenting the data during the session.
Instead of one extensive list and detailed list, with interactive reporting. you can create a condensed basic list from which the user can call detailed information by postioning the cursor and entering commands.
interactive reporting thus reduces information retrieval to data actually required. report itself generates list.
Edited by: Rajyalakshmi Attili on May 22, 2008 1:07 PM
‎2008 May 22 8:47 AM
hi check this..
interactive report/list means any input(double click or single click or user command ) on the screen will results a new screen with the corresponding fields....this is upto 20 levels only check this..
report .
start-of-selection.
write:/ 'this is the source list'.
at line-selection .
if sy-lsind = 1 .
write:/ ' this is the 1st list'.
elseif.
if sy-lsind = 2 .
write:/ ' this is the 2 list'.
if sy-lsind = 3 .
write:/ ' this is the 3 list'.
if sy-lsind = 4 .
write:/ ' this is the 4 list'.
if sy-lsind = 5 .
write:/ ' this is the 5 list'.
if sy-lsind = 6 .
write:/ ' this is the 6 list'.
if sy-lsind = 7 .
write:/ ' this is the 7 list'.
if sy-lsind = 8.
write:/ ' this is the 8 list'.
if sy-lsind = 9 .
write:/ ' this is the 9 list'.
if sy-lsind = 10 .
write:/ ' this is the 10 list'.
endif.
regards,
venkat