‎2006 Nov 24 12:20 AM
Hi
I have data in binary format in an internal table and I want to send this data to printer. Please let me know how this can be done.
Thank you
‎2006 Nov 24 7:59 AM
Hi,
here's a sample:
NEW-PAGE NO-TITLE
PRINT ON LINE-COUNT '65'
LINE-SIZE '80'
IMMEDIATELY 'X'
KEEP IN SPOOL ' '
LAYOUT 'X_65_80'.
SET BLANK LINES ON.
WRITE: / SY-DATUM, SY-UZEIT, 30 TEXT-H01, 79 SY-PAGNO.
SKIP 2.
WRITE: / HEADER1.
SKIP.
WRITE: / TEXT-H02.
ULINE.
WRITE: / 'Vortrag', 58 RF42B-UMSAV CURRENCY RF42B-RTCUR.
LOOP AT ZEILE .
WRITE: / ZEILE.
ENDLOOP.
SET BLANK LINES OFF.
NEW-PAGE PRINT OFF.A.
‎2006 Nov 24 8:21 AM
just select the table in se16n and print the output. you can even change the layout and define a selection.
‎2006 Nov 24 10:12 PM
Hi
Thanks for your reply.
What I need to do is, I have PDF file data in an internal table. I have to either print this or append to a SAPscript.
I converted PDF format to BIN format and wondering how can I send this to printer.
If you can guide on this or appending this data to Script that will be really helpful.
Thanks