‎2007 Aug 12 4:09 AM
Hi experts,
How do you call SAP script in reports & reports in SAP script?
regards
rajarao
‎2007 Aug 12 5:14 AM
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
‎2007 Aug 12 6:23 AM
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
‎2007 Aug 12 8:59 AM
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.