<?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: Convert Binary Format to Text Format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988393#M1162102</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCMS_BINARY_TO_TEXT&lt;/P&gt;&lt;P&gt;SRET_BINARY_TO_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Jan 2009 12:23:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-19T12:23:15Z</dc:date>
    <item>
      <title>Convert Binary Format to Text Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988392#M1162101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a binary file (format 0 and 1) and I need to convert it to a text format.&lt;/P&gt;&lt;P&gt;I surch this forum and I tryed some solutions and I didn't have good results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, in the bin file I have  '00110001 00110010 00110011' and I should return '123'... but I am not to obtain the expected result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me, please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Joana Leitner Gaspar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 12:20:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988392#M1162101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T12:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Binary Format to Text Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988393#M1162102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCMS_BINARY_TO_TEXT&lt;/P&gt;&lt;P&gt;SRET_BINARY_TO_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 12:23:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988393#M1162102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T12:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Binary Format to Text Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988394#M1162103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA rec TYPE string.
CALL FUNCTION 'SCMS_BINARY_TO_STRING'
EXPORTING
input_length = 32000
FIRST_LINE = 1
LAST_LINE = 28

MIMETYPE = ' ' 
IMPORTING
text_buffer = rec

OUTPUT_LENGTH = 
TABLES
binary_tab = l_pdf
EXCEPTIONS 
FAILED = 1 
OTHERS = 2 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this may useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 12:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988394#M1162103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T12:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Binary Format to Text Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988395#M1162104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To convert Binary format to text use the Function Module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCMS_BINARY_TO_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Radhika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 13:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988395#M1162104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T13:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Binary Format to Text Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988396#M1162105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1645862"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 13:12:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988396#M1162105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T13:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Binary Format to Text Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988397#M1162106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for your help... But... using your ideas I don't obtain correct values.&lt;/P&gt;&lt;P&gt;Any ideas? I'm going to be crazy with this!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Joana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 14:35:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988397#M1162106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T14:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Binary Format to Text Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988398#M1162107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using &lt;STRONG&gt;cg3y&lt;/STRONG&gt; and &lt;STRONG&gt;cg3z&lt;/STRONG&gt; tr. use appropriate formats BIN and ASC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 14:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/convert-binary-format-to-text-format/m-p/4988398#M1162107</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-01-19T14:38:45Z</dc:date>
    </item>
  </channel>
</rss>

