‎2007 Mar 01 8:43 AM
Hi
How can i notice a report by viewing that it is an intractive or a clasical report..
Thanks,
Srik
‎2007 Mar 01 8:45 AM
hi,
a classical report is a static report if you dbl click on any line it will not navigate, whereas interactive report is not static and can be navigated
‎2007 Mar 01 8:47 AM
Hi,
just execute it.
if u can move further to other lists,its interactive else if it is standalone list thats classical
‎2007 Mar 01 8:47 AM
One point is check if there are interactive events in the report like
AT LINE-SELECTION .
AT USER-COMMAND.
‎2007 Mar 01 8:49 AM
goto the program
press ctr + f ...type at line-selection
if it isw found.. then it is an interactive report
‎2007 Mar 01 8:52 AM
No boss not like that....
By just seeing that output list can we judge that.....
Thanks,
srik
‎2007 Mar 01 8:54 AM
in interractive report u will get one ICON which is for LINE selections.
Regards
Prabhu
‎2007 Mar 01 8:55 AM
HI,
CLASSICAL REPORT: iTS NOT INTERACTIVE(WHEN EXECUTED PRODUCES
ONLY SINGLE RESULT).ie
for ex: start-of-selection.
tables: mara.
select * from mara where matnr = 900.
write:/ mara-werks.
endselect.
when you execute this report: india(when you double click on it,there it will be no result).
INTERACTIVE REPORT: WHEN YOU DOUBLE CLICK,SECONDARY LIST IS PRODUCED.
write :/'this is basic list.
at line-selection.
write :/'this is first secondary list'.
elseif sy-lsind = 2.
write : /'this is second list'.
endif.
when you execute it.
basic list is produced ie (this is a basic list).
when you double click on it ,it will produce
this is first secondary list,again double click on it
produces this is second secondary list.
hope this helps you
sri
‎2007 Mar 01 8:57 AM