How to Print Smartform with Multiple Pages in Single Spool SAP ABAP
How to Print Smartform with Multiple Pages in Single Spool SAP ABAP
Advertisements
R E P O RT T H I S A D
SAP ABAP
Belajar ABAP
Here’s the parameter you need to set when printing multiple page in one spool.
loop at t_data.
AT FIRST.
ssfctrlop-no_close = 'X'. "do not close spool
ENDAT.
AT LAST.
ssfctrlop-no_close = space. "close the spool at the end of data
ENDAT.
1 of 5 19/05/2021, 10:52
How to Print Smartform with Multiple Pages in Single Spool | SAP ABAP https://belajarabap.wordpress.com/2018/08/23/how-to-print-smartform-w...
output_options = ssfcompop
user_settings = tdbool
data = t_data
EXCEPTIONS
formatting_error = 1
internal_error = 2
send_error = 3
user_canceled = 4
OTHERS = 5.
Advertisements
Share this:
Like
Be the first to like this.
August 23, 2018 in ABAP. Tags: ABAP, form, multiple, print, smartforms, spool
Related posts
2 of 5 19/05/2021, 10:52
How to Print Smartform with Multiple Pages in Single Spool | SAP ABAP https://belajarabap.wordpress.com/2018/08/23/how-to-print-smartform-w...
Single Spool”
Reply
Hi Vani,
Yo can declare it using structure ssfctrlop:
data: SSFCTRLOP TYPE SSFCTRLOP.
Reply
Leave a Reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Advertisements
3 of 5 19/05/2021, 10:52
How to Print Smartform with Multiple Pages in Single Spool | SAP ABAP https://belajarabap.wordpress.com/2018/08/23/how-to-print-smartform-w...
Find
Search …
Archives
Select Month
Translate
Select Language
Powered by Translate
Recent Comments
4 of 5 19/05/2021, 10:52
How to Print Smartform with Multiple Pages in Single Spool | SAP ABAP https://belajarabap.wordpress.com/2018/08/23/how-to-print-smartform-w...
Advertisements
R E P O RT T H I S A D
5 of 5 19/05/2021, 10:52