<?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: Saving Hexadecimal data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850619#M46151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;the basic idea is this. I have a PDF file available on my machine. I want to transfer the file into the database, so anyone can get access to it.&lt;/P&gt;&lt;P&gt;I have got the data from the file in Hex format using the upload function mentioned. I need to know how to store this data into a database table.&lt;/P&gt;&lt;P&gt;The upload function is working fine. From the database I would then call a method of the document viewer to display the file. This works fine as well.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Mar 2005 07:38:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-03-31T07:38:28Z</dc:date>
    <item>
      <title>Saving Hexadecimal data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850616#M46148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a hexadecimal file , which I have in an internal table. The contents of the Iternal table are from a PDF file on my local machine, by calling:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want to do is save this information in a database table, so that any user can then get access to it from their machine. What is the easiest way of doing this - I tried creatin a Database table with data type raw, but it always gives me the double number of digits I need.&lt;/P&gt;&lt;P&gt;The iternal table for the function above , is defined as &lt;/P&gt;&lt;P&gt;DATA: mycontent_table LIKE bapiconten OCCURS 1. This uses the data element type SDOK_SDATX , which it does not let me use for the field definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a simple way of doing this?&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, 30 Mar 2005 23:40:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850616#M46148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-30T23:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Hexadecimal data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850617#M46149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could try EXPORT TO INDX instead of using a database table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2005 04:34:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850617#M46149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-31T04:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Hexadecimal data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850618#M46150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sims,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sorry I did not quite understand the situation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Are you successful in uploading the data to the internal table ? Or is this where you find the trouble ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. What are you referring to by &amp;lt;i&amp;gt;"a certain database table"&amp;lt;/i&amp;gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;lt;a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=zwcc%2fwm4ups%3d"&amp;gt;anand Mandalika&amp;lt;/a&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2005 05:03:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850618#M46150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-31T05:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Saving Hexadecimal data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850619#M46151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;the basic idea is this. I have a PDF file available on my machine. I want to transfer the file into the database, so anyone can get access to it.&lt;/P&gt;&lt;P&gt;I have got the data from the file in Hex format using the upload function mentioned. I need to know how to store this data into a database table.&lt;/P&gt;&lt;P&gt;The upload function is working fine. From the database I would then call a method of the document viewer to display the file. This works fine as well.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Mar 2005 07:38:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-hexadecimal-data/m-p/850619#M46151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-03-31T07:38:28Z</dc:date>
    </item>
  </channel>
</rss>

