‎2007 Sep 11 5:45 AM
Hi,
plz send me the code of interactive report using ABAP Objects .
Thanks,
T.Sreekanth.
‎2007 Sep 11 5:53 AM
Hi,
What do you mean by Interactive report in ABAP Objects?
You can create a Interactive report program using Program of type "Executable".
REPORT keyword.
Then there you can use CLASS keyword to write you classes.
Regards,
Sesh
‎2007 Sep 11 6:02 AM
Could u plz tell me how to handle At line-selection. Can write directly At line-selection event or is there any way to obatain this.
Thanks
T.Sreekanth
‎2007 Sep 11 6:19 AM
Hi,
It will be similar to what you do in normal report.
Here you may create an object instance and then call some method on the object.
AT LINE-SELECTION.
create object obj.
CALL METHOD obj->method1
IMPORTING
text = im_text.
write: im_text.
Regards,
Sesh