Application Development 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: 

How to call Report from SAP Script

Former Member
0 Kudos

Hi,

I want to know how can we call a report from a SAPscript .

Regards,

Ramanji

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

You cannot call Rport from script. But you can pass values usnign perform statement from sap script to driver Program and do the manipulations.

Regards,

Ram

3 REPLIES 3

Former Member
0 Kudos

Hi,

You cannot call Rport from script. But you can pass values usnign perform statement from sap script to driver Program and do the manipulations.

Regards,

Ram

Former Member
0 Kudos

hi,

u need to write a subroutine and call in script form using perform statement

kiran kumar

Former Member
0 Kudos

the best u can do is

write a perform

perform sub_XXX in program ZXXX.

endperform.

se38...

report zXXX.

form sub_XXX.

submit ZXXX1.

endform.

santhosh