2019 Aug 17 11:19 AM
Hello
i want merging multiple spools into a single PDF . with "CONVERT_ABAPSPOOLJOB_2_PDF" but i have two problem first all spool file not merge in one pdf .
second when send and image in spoole it is not print truly . it has garbage .
thank you
2019 Aug 19 1:10 PM
Only use CONVERT_ABAPSPOOLJOB_2_PDF for Abap spool not for OTF:
CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
EXPORTING
authority = 'SP01'
client = tsp01-rqclient
name = tsp01-rqo1name
part = 1
IMPORTING
type = type
objtype = objtype
EXCEPTIONS
fb_error = 1
fb_rsts_other = 2
no_object = 3
no_permission = 4.
IF objtype(3) = 'OTF'. "OTF
CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
" ...
ELSE. " Abap
CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
" ...
ENDIF.
Comments on some recently released notes:
2019 Aug 19 1:34 PM
thank you Raymond
i use 'convert_abapspooljob_2_pdf' . but for image file it does not work probably
the PDF file has garbage code
2019 Aug 19 1:53 PM
2019 Aug 19 2:22 PM
2019 Aug 19 2:39 PM