<?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: Process data from 'XI provided proxy structure' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296294#M1533443</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please provide your responses from ABAp program's point of view.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Sep 2010 09:52:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-23T09:52:12Z</dc:date>
    <item>
      <title>Process data from 'XI provided proxy structure'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296292#M1533441</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;In this scenario XI will populate proxy structure (suppose zproxy) with company code, account num, amount.&lt;/P&gt;&lt;P&gt;How can I receive and process those data in my function module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide your suggestions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Anirban.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 09:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296292#M1533441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T09:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Process data from 'XI provided proxy structure'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296293#M1533442</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;data sent by XI will be available for you inside the Proxy method. &lt;/P&gt;&lt;P&gt;Generate the proxy in sproxy transaction and right the required logic inside proxy method sproxy transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 09:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296293#M1533442</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2010-09-23T09:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Process data from 'XI provided proxy structure'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296294#M1533443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please provide your responses from ABAp program's point of view.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 09:52:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296294#M1533443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T09:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Process data from 'XI provided proxy structure'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296295#M1533444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anirban,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r using PI 7.1 then the name of the proxy and name of the inbound proxy name are the same..... u need to wite the reqd. code within that method. The parameter name is input for the method. All the data are present in the INPUT parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

METHOD zii_image_link_ib~image_link_ib.

  DATA: l_ar_date  TYPE datum,  "Holds converted date
        l_del_date TYPE datum.  "Holds converted date

  CONSTANTS: c_success(52) TYPE c
  VALUE 'Link in the Content Repository created successfully'.
  "For Success message

l_ar_date  = input-ar_date.
l_del_date = input-del_date.
*FM called to get the data for OUTPUT
  CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'
    EXPORTING
      archiv_id             = input-archiv_id
      arc_doc_id            = input-arc_doc_id
      ar_date               = l_ar_date
      ar_object             = input-ar_object
      del_date              = l_del_date
      mandant               = input-mandant
      object_id             = input-object_id
      sap_object            = input-sap_object
      doc_type              = input-doc_type
      barcode               = input-barcode
    EXCEPTIONS
      error_connectiontable = 1
      OTHERS                = 2.
  IF sy-subrc = 0."Successful

    output-archiv_connection_insert_respo = c_success.
    "Send a success message

  ELSE.

    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                INTO output-archiv_connection_insert_respo.
    "Send a error message

  ENDIF." CALL FUNCTION 'ARCHIV_CONNECTION_INSERT'


ENDMETHOD. "ZII_IMAGE_LINK_IB~IMAGE_LINK_IB
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amitava&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-data-from-xi-provided-proxy-structure/m-p/7296295#M1533444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T10:29:35Z</dc:date>
    </item>
  </channel>
</rss>

