<?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: ArchiveLink buffer issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111979#M1509868</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;I've found the following solution in our systems, i hope you'll find something useful in it (I don't know is it working or not &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Please check out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: ls_conn TYPE toav0.
      CLEAR ls_conn.

      ls_conn-archiv_id  = ls_borid-objkey(2) .
      ls_conn-arc_doc_id = ls_borid-objkey+2(40).
      ls_conn-sap_object = gs_object-objtype.
      ls_conn-object_id  = gs_object-objkey.
      CALL METHOD lo_bor_object-&amp;gt;get_attribute
        EXPORTING ip_name = 'AR_OBJECT'
        IMPORTING ep_value = lp_value
        EXCEPTIONS OTHERS = 1.
      ls_conn-ar_object = lp_value.

      CALL FUNCTION 'ARCHIVOBJECT_DISPLAY'
           EXPORTING
                archiv_doc_id            = ls_conn-arc_doc_id
                archiv_id                = ls_conn-archiv_id
                objecttype               = ls_conn-sap_object
                object_id                = ls_conn-object_id
                ar_object                = ls_conn-ar_object
           EXCEPTIONS
                error_archiv             = 1
                error_communicationtable = 2
                error_kernel             = 3
                OTHERS                   = 4.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Jul 2010 14:12:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-27T14:12:35Z</dc:date>
    <item>
      <title>ArchiveLink buffer issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111978#M1509867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using ArchiveLink to retreive the scanned image file (for invoices) from content server. This file we are attaching to the work item that the approver uses to verify while approving the document in the invoice creation process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using FM ARCHIVOBJECT_DISPLAY to display the associated file. However, when back scanned, this FM displays the same image for both workitems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Workflow log confirms that Archive Doc ID is different in both the work items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when user logs off and logs in again into SAP, the correct image gets displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there and buffer setting related to ArchiveLink that displays the already downloaded file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can be the reason?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;G@urav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 13:59:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111978#M1509867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-27T13:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: ArchiveLink buffer issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111979#M1509868</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;I've found the following solution in our systems, i hope you'll find something useful in it (I don't know is it working or not &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Please check out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: ls_conn TYPE toav0.
      CLEAR ls_conn.

      ls_conn-archiv_id  = ls_borid-objkey(2) .
      ls_conn-arc_doc_id = ls_borid-objkey+2(40).
      ls_conn-sap_object = gs_object-objtype.
      ls_conn-object_id  = gs_object-objkey.
      CALL METHOD lo_bor_object-&amp;gt;get_attribute
        EXPORTING ip_name = 'AR_OBJECT'
        IMPORTING ep_value = lp_value
        EXCEPTIONS OTHERS = 1.
      ls_conn-ar_object = lp_value.

      CALL FUNCTION 'ARCHIVOBJECT_DISPLAY'
           EXPORTING
                archiv_doc_id            = ls_conn-arc_doc_id
                archiv_id                = ls_conn-archiv_id
                objecttype               = ls_conn-sap_object
                object_id                = ls_conn-object_id
                ar_object                = ls_conn-ar_object
           EXCEPTIONS
                error_archiv             = 1
                error_communicationtable = 2
                error_kernel             = 3
                OTHERS                   = 4.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jul 2010 14:12:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111979#M1509868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-27T14:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: ArchiveLink buffer issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111980#M1509869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply Tamás!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how to use this FM. The problem is what I have described in my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;G@urav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 07:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111980#M1509869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-28T07:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: ArchiveLink buffer issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111981#M1509870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems that there is some buffer issue with SAP business workplace.  Bacause when user comes out and goes in into business worplace, correct image is getting displayed.&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;G@urav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Aug 2010 13:12:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111981#M1509870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-02T13:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: ArchiveLink buffer issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111982#M1509871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gaurav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you able to resolve this issue?&lt;/P&gt;&lt;P&gt;I have same problem with function module 'ARCHIVOBJECT_DISPLAY'. Custom transaction is called from SAP Business Workplace. USer is unable to open the scanned invoice 2nd time. They need to logout and login back to reopen the scanned image from inbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Subha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 22:22:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/archivelink-buffer-issue/m-p/7111982#M1509871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-24T22:22:14Z</dc:date>
    </item>
  </channel>
</rss>

