<?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: Find logo from binary or hex string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665371#M1446960</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;S P	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what i use to read attch from VA02 and its works just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get table with HEX and i want to do test and see the logo after the conversion .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how i can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. i read the link to hex with the logic you write but how convert the opposite again -&amp;gt;get the logo again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 28 Feb 2010 22:19:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-28T22:19:19Z</dc:date>
    <item>
      <title>Find logo from binary or hex string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665369#M1446958</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 file 2 strings one with HEX and one binary this to string is contain the value &lt;/P&gt;&lt;P&gt;for attachment (logo) ,which FM or method i should use to see the logo, the picture itself  ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: James Herb on Feb 28, 2010 5:32 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 15:21:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665369#M1446958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T15:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Find logo from binary or hex string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665370#M1446959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;This methods and function modules should work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL METHOD cl_binary_relation=&amp;gt;read_links_of_binrel&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          is_object   = is_object&lt;/P&gt;&lt;P&gt;          ip_relation = 'ATTA'&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          et_links    = et_links.&lt;/P&gt;&lt;P&gt;    catch&lt;/P&gt;&lt;P&gt;    cx_obl_parameter_error into icx_obl_parameter_error.&lt;/P&gt;&lt;P&gt;      exception_string = icx_obl_parameter_error-&amp;gt;get_longtext( ).&lt;/P&gt;&lt;P&gt;    catch cx_obl_internal_error into icx_obl_internal_error .&lt;/P&gt;&lt;P&gt;      exception_string = icx_obl_internal_error-&amp;gt;get_longtext( ).&lt;/P&gt;&lt;P&gt;    catch&lt;/P&gt;&lt;P&gt;    cx_obl_model_error into icx_obl_model_error.&lt;/P&gt;&lt;P&gt;      exception_string = icx_obl_model_error-&amp;gt;get_longtext( ).&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT et_links BY utctime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT et_links INTO et_links_s.&lt;/P&gt;&lt;P&gt;    v_tbx       = sy-tabix.&lt;/P&gt;&lt;P&gt;    document_id = et_links_s-instid_b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'SO_DOCUMENT_READ_API1'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        DOCUMENT_ID                      = document_id&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FILTER                           = 'X '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;        DOCUMENT_DATA                    = document_data&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;        OBJECT_HEADER                    = object_header&lt;/P&gt;&lt;P&gt;        OBJECT_CONTENT                   = object_content&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      OBJECT_PARA                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      OBJECT_PARB                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ATTACHMENT_LIST                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      RECEIVER_LIST                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CONTENTS_HEX                     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;        DOCUMENT_ID_NOT_EXIST            = 1&lt;/P&gt;&lt;P&gt;        OPERATION_NO_AUTHORIZATION       = 2&lt;/P&gt;&lt;P&gt;        X_ERROR                          = 3&lt;/P&gt;&lt;P&gt;        OTHERS                           = 4.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 18:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665370#M1446959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T18:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Find logo from binary or hex string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665371#M1446960</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;S P	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what i use to read attch from VA02 and its works just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get table with HEX and i want to do test and see the logo after the conversion .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how i can do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e. i read the link to hex with the logic you write but how convert the opposite again -&amp;gt;get the logo again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Feb 2010 22:19:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665371#M1446960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-28T22:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Find logo from binary or hex string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665372#M1446961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the function SO_DYNP_DOCUMENT_DISPLAY for converting the Binary format to the Logo display&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Mar 2010 16:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/find-logo-from-binary-or-hex-string/m-p/6665372#M1446961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-01T16:17:17Z</dc:date>
    </item>
  </channel>
</rss>

