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

sap script

Former Member
0 Likes
348

Hi experts,

How do you call SAP script in reports & reports in SAP script?

regards

rajarao

3 REPLIES 3
Read only

Former Member
0 Likes
329

Hi,

You can call a script in report using OPEN_FORM, WRITE_FORM, CLOSE_FORM.

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

<b>Regards,</b>

ASHOK KUMAR

Read only

Former Member
0 Likes
329

hi raja,

in case u need to call a script in report u need to use following function modules:

OPEN_FORM

CLOSE_FORM

u can also use START_FORM & END_FORM

please reward incase useful...

regards,

prashant

Read only

kiran_k8
Active Contributor
0 Likes
329

Raja,

If it is only one script.

open_form

write_form

close_form

If it is multiple scripts

start_form

open_form

write_form

close_form.

end_form

K.Kiran.