<?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: Transfering file to application server in binary mode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162987#M1370497</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hello Reddy,
&amp;lt;li&amp;gt;Please provide some code where that binary data is being generated.

Thanks
venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Oct 2009 08:49:24 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2009-10-07T08:49:24Z</dc:date>
    <item>
      <title>Transfering file to application server in binary mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162986#M1370496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  I am transferring the data to application server in binary mode. I am getting the data which is delimited by # character by character as mentioned below.&lt;/P&gt;&lt;P&gt;              #1#0#0#0#2#B# # # #2#0#0#9#&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;               But it should come as ....... #100#02#B#2009&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              Can anyone tell me what would be the issue here?&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, 07 Oct 2009 08:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162986#M1370496</guid>
      <dc:creator>HussainKarnati</dc:creator>
      <dc:date>2009-10-07T08:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Transfering file to application server in binary mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162987#M1370497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hello Reddy,
&amp;lt;li&amp;gt;Please provide some code where that binary data is being generated.

Thanks
venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2009 08:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162987#M1370497</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-10-07T08:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Transfering file to application server in binary mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162988#M1370498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply venkat.&lt;/P&gt;&lt;P&gt;Actually that code is there in the standard program &lt;STRONG&gt;RKETREXT&lt;/STRONG&gt; which is used to export data from summarization level to File.&lt;/P&gt;&lt;P&gt;In that standard program, the code is written as mentioned below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       open dataset filename for output in binary mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      call function 'RKD_TR_LEVEL_READ'&lt;/P&gt;&lt;P&gt;        exporting&lt;/P&gt;&lt;P&gt;                applclass         = applclass&lt;/P&gt;&lt;P&gt;               subclass          = subclass&lt;/P&gt;&lt;P&gt;               tabname           = tabname&lt;/P&gt;&lt;P&gt;               trcatnr           = trcatnr&lt;/P&gt;&lt;P&gt;              s_form_name       = 'GET_DATA'&lt;/P&gt;&lt;P&gt;              s_program_name    = repid&lt;/P&gt;&lt;P&gt;              read_dirty        = ' '&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;               timestmp          = timestmp&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;             selection_table   = seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        they hv written the 'transfer' code in the dynamic form 'GET_DATA' which is there in the export parameter&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;         form get_data&lt;/P&gt;&lt;P&gt;                      tables ce0_tab&lt;/P&gt;&lt;P&gt;                      using  exit_flag like ceddb-flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            loop at ce0_tab.&lt;/P&gt;&lt;P&gt;                    transfer ce0_tab to filename.&lt;/P&gt;&lt;P&gt;                    add 1 to count.&lt;/P&gt;&lt;P&gt;            endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      endform.                 &lt;/P&gt;&lt;P&gt;&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, 07 Oct 2009 09:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162988#M1370498</guid>
      <dc:creator>HussainKarnati</dc:creator>
      <dc:date>2009-10-07T09:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Transfering file to application server in binary mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162989#M1370499</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;The file generated in binary with which tool can be viewed. I have not been able to open it correctly either with notepad++ or with excel.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 15:50:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfering-file-to-application-server-in-binary-mode/m-p/6162989#M1370499</guid>
      <dc:creator>apachon</dc:creator>
      <dc:date>2023-07-07T15:50:35Z</dc:date>
    </item>
  </channel>
</rss>

