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 reports in abap objects

Former Member
0 Likes
419

Hi,

plz send me the code of interactive report using ABAP Objects .

Thanks,

T.Sreekanth.

3 REPLIES 3
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
400

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

Read only

0 Likes
400

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

Read only

0 Likes
400

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