<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Converting PDF file contents to base64Binary format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490686#M1557303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your answer. Please let me know any function moudles avliabe for converting PDF form contents to XSTRING format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Dec 2010 15:30:45 GMT</pubDate>
    <dc:creator>santhosh_sontha2</dc:creator>
    <dc:date>2010-12-21T15:30:45Z</dc:date>
    <item>
      <title>Converting PDF file contents to base64Binary format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490684#M1557301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where I need to convert PDF form contents to base64Binary format and call the webservice to send it to outside world. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Detail Description:&lt;/P&gt;&lt;P&gt; I have two buttons on my application one "DISPLAY" &amp;amp; another "SEND". If user clicks on 'DISPLAY' then PDF form will be opened and printed. If user clicks "SEND" button then PDF form contents should be converted to base64Binary format and proxy class will be called to send to PI server.  Please let me know any function modules or codes for converting PDF form contents to base64Binary format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your inputs on this will be highly appericiated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: santhosh sontha on Dec 21, 2010 12:23 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 11:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490684#M1557301</guid>
      <dc:creator>santhosh_sontha2</dc:creator>
      <dc:date>2010-12-21T11:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Converting PDF file contents to base64Binary format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490685#M1557302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use fm SSFC_BASE64_ENCODE.  You'll need to convert the data to XSTRING format first.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 15:14:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490685#M1557302</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-12-21T15:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Converting PDF file contents to base64Binary format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490686#M1557303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your answer. Please let me know any function moudles avliabe for converting PDF form contents to XSTRING format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 15:30:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490686#M1557303</guid>
      <dc:creator>santhosh_sontha2</dc:creator>
      <dc:date>2010-12-21T15:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Converting PDF file contents to base64Binary format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490687#M1557304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try one of the functions in function group SCMS_CONV (or search for others in SE37).  My standard process uses older code which still works with SX_TABLE_LINE_WIDTH_CHANGE, then SO_SOLITAB_TO_SOLIXTAB, then &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* Convert to XSTRING format
  LOOP AT gt_pdf_255x INTO gs_pdf_255x.
    ASSIGN gs_pdf_255x TO &amp;lt;fs_line&amp;gt; CASTING TYPE x.
    CONCATENATE e_pdfout &amp;lt;fs_line&amp;gt; INTO e_pdfout IN BYTE MODE.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 16:07:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490687#M1557304</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-12-21T16:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Converting PDF file contents to base64Binary format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490688#M1557305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI my requirement is not to send PDF document as attachment. Instead I need to call the webservice in which "File contents" should be sent in one of the field of type &amp;lt; XSD: base64Binary&amp;gt;. Sorry I am very much new to PDF forms, please let me know how to pass file contents as input to SX_TABLE_LINE_WIDTH_CHANGE function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks...........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Dec 2010 10:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490688#M1557305</guid>
      <dc:creator>santhosh_sontha2</dc:creator>
      <dc:date>2010-12-22T10:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Converting PDF file contents to base64Binary format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490689#M1557306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I never said anything about attachments - the process I gave you was for converting binary PDF from the function to XSTRING format so that it can be base64 encoded.  The actual code should be obvious from the functions - I will not spoon feed you that code.  You need to try to figure it out yourself first.  You don't seem to be making any effort on your own yet...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Dec 2010 14:56:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-pdf-file-contents-to-base64binary-format/m-p/7490689#M1557306</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2010-12-22T14:56:55Z</dc:date>
    </item>
  </channel>
</rss>

