Hello,
I want to convert a SAP Standard Report to PDF and display it in an ABAP Webdynpro application.
With the function CONVERT_ABAPSPOOLJOB_2_PDF I receive the result of the report as PDF, but this PDF is stored in a field of type STRING. Unfortunatly, this STRING contains already the binary data of the PDF file.
So any function or class for convertion to move the STRING to the XSTRING field changes the content of the STRING, that is already an XSTRING.
The only way to move the data without changes, is to write the STRING to filesystem in binary mode and then open it again and read it in the XSTRING field in binary mode.
But the users of this application should not be access to filesystem granted.
How can I get the content of the STRING field to the XSTRING field without any conversion, because the STRING field is already a XSTRING?
Thanks in advance for any replies