‎2016 Jul 29 1:53 PM
Hi All,
PDF converted from smartform contains system information as 'PDF producer' ( via properties, under description ->advance). Is there a way to hide these information?
Regards,
cady
‎2016 Jul 29 4:58 PM
unfortunately, if you are using the standard FM 'CONVERT_OTF' the properties are basically hardcoded into logic of a subroutine (at the end of writing the hex string for the contents of the PDF file)
the Function Module 'CONVERT_OTF' makes some calls to subroutines in program RSTXCPDF
the subroutine of interest here can be found by the chain of calls listed below:-
program RSTXCPDF
form CONVERT_OTF2PDF_END
==> form PDF_WRITE_INFODICT (properties of PDF are determined and written here)
excerpt of code from the subroutine PDF_WRITE_INFODICT
there's another way of generating the PDF file which offers more programming flexibility in the creation process but it requires Adobe Document Services setup and running. see the link below if you would like to have a go at it.