<?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: Attachments: Read comments (Personal notes) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401945#M535133</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It´s done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer is the table :SRGBTBREL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;God bless the traces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you aRs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2007 08:54:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-14T08:54:57Z</dc:date>
    <item>
      <title>Attachments: Read comments (Personal notes)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401942#M535130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to extract the personal notes attached to an employee. I mean:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to PB30; insert a pernr; then you have a little icon just down the tick of the transactions bar; click on the arrow and then click on "List of attachments" (Or something like that... I´m using the spanish version). Now you get a list of the attachments and you can click on one of them and read it. I need that to write them down into a SmartForm, so I need to extract them with code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´ve been able to input them with SO_OBJECT_INSERT and BINARY_RELATION_CREATE but I´m not able to output them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 17:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401942#M535130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-13T17:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments: Read comments (Personal notes)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401943#M535131</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;Please check the following method to get binary data from GOS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
is_object-instid = v_bo_id.
is_object-typeid = v_botype.
is_object-catid = 'BO'.
 
try.
call method cl_binary_relation=&amp;gt;read_links_of_binrel
exporting
is_object = is_object
ip_relation = 'NOTE'   " &amp;lt;&amp;lt; I think it will NOTE or  MESSAGE i am confused
importing
et_links = et_links.
 
 
then use
 
call function 'SREL_GET_NEXT_RELATIONS'
  exporting
    object               = lo_is_object_a
     ROLETYPE             =
      relationtype         = p_reltyp
     MAX_HOPS             = 1
     INCL_APPLRELS        = ' '
     EXCL_ROLES           =
     EXCL_RELATIONS       =
    tables
      links                = lt_links
     ROLES                =
     APPLLINKS            =
   exceptions
     internal_error       = 1
     no_logsys            = 2
     others               = 3
 
 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not worked then try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fm  BDS_BUSINESSDOCUMENT_GET_TAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also check the following link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/abap" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/abap&lt;/A&gt;&lt;EM&gt;-&lt;/EM&gt;Sending&lt;EM&gt;GOS&lt;/EM&gt;attachments&lt;EM&gt;to&lt;/EM&gt;an&lt;EM&gt;email&lt;/EM&gt;address&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2007 18:54:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401943#M535131</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-06-13T18:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments: Read comments (Personal notes)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401944#M535132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very interesting... But I need a bit more, do you mind??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the link, you gave me a report to get an object and do whatever I want with it, but I need to get the objects attached to a PERNR. The notes of a certain person.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me?? Thank you very much.&lt;/P&gt;&lt;P&gt;Points in their way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 07:21:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401944#M535132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T07:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments: Read comments (Personal notes)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401945#M535133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It´s done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer is the table :SRGBTBREL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;God bless the traces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you aRs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2007 08:54:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401945#M535133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-14T08:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: Attachments: Read comments (Personal notes)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401946#M535134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bad Answer To correct Question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2011 16:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/attachments-read-comments-personal-notes/m-p/2401946#M535134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-11T16:11:13Z</dc:date>
    </item>
  </channel>
</rss>

