‎2007 Jul 19 10:01 AM
hi guru's,
after creation of report , how would we print it. is there any FM's available for this?,is it ABAPers work or end users work to print a report?
regards,
surendraa
‎2007 Jul 19 10:04 AM
hi...
You can use the following function to print a report
CALL FUNCTION 'PRINT_REPORT'
EXPORTING
NO_DIALOG = ' '
REPORT = L_REPID
EXCEPTIONS
ARCHIVE_INFO_NOT_FOUND = 1
OTHERS = 2.
check if it is working for ya!
all the best.
<b>rewards point for helpful answer.</b>
‎2007 Jul 19 10:02 AM
‎2007 Jul 19 10:03 AM
Hello,
Exectute the report in background. A spool will be created for the report.
Check in SP01 and print the output there.
If useful reward,
Vasanth
‎2007 Jul 19 10:03 AM
Just click on the print button in the top row menu to print that report
end user will take out the print out by clicking on the print button....
‎2007 Jul 19 10:04 AM
hi...
You can use the following function to print a report
CALL FUNCTION 'PRINT_REPORT'
EXPORTING
NO_DIALOG = ' '
REPORT = L_REPID
EXCEPTIONS
ARCHIVE_INFO_NOT_FOUND = 1
OTHERS = 2.
check if it is working for ya!
all the best.
<b>rewards point for helpful answer.</b>
‎2007 Jul 19 10:04 AM
try this function module SET_PRINT_PARAMETERS.
<b>rewrads point for useful answer.</b>