<?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: Calling a proxy from ABAP report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-proxy-from-abap-report/m-p/6064114#M1354435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;{ &lt;/P&gt;&lt;P&gt;REPORT  Z_TEST_111.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*PARAMETER: p_isbn(100) TYPE c OBLIGATORY.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Reference variables for proxy and exception class&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  lo_clientproxy     TYPE REF TO ZES_CO_ZWS_MATNR,&lt;/P&gt;&lt;P&gt;  lo_sys_exception   TYPE REF TO cx_ai_system_fault,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Structures to set and get message content&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   ls_request         TYPE ZES_ZTEST_WS,&lt;/P&gt;&lt;P&gt;   ls_response        TYPE ZES_ZTEST_WS_RESPONSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****Set the input parameter ISBN into the Request of the SOAP Object&lt;/P&gt;&lt;P&gt;ls_request-matnr = '100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****Create the Proxy and Clall it.&lt;/P&gt;&lt;P&gt;CREATE OBJECT lo_clientproxy&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;     LOGICAL_PORT_NAME =  'ZWS_TEST'.&lt;/P&gt;&lt;P&gt;TRY.&lt;/P&gt;&lt;P&gt;    CALL METHOD lo_clientproxy-&amp;gt;ZTEST_WS&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = ls_request&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = ls_response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CATCH cx_ai_system_fault INTO lo_sys_exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Error handling&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDTRY.&lt;/P&gt;&lt;P&gt;COMMIT WORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Sep 2009 10:19:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-01T10:19:48Z</dc:date>
    <item>
      <title>Calling a proxy from ABAP report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-proxy-from-abap-report/m-p/6064113#M1354434</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;Can any one gimme some idea about calling a XI proxy from ABAP Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to gather data in my internal table and after that i need to trigger a proxy which is going to do a outbound processing.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tnx,&lt;/P&gt;&lt;P&gt;Joe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2009 04:43:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-proxy-from-abap-report/m-p/6064113#M1354434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-01T04:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calling a proxy from ABAP report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-proxy-from-abap-report/m-p/6064114#M1354435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;{ &lt;/P&gt;&lt;P&gt;REPORT  Z_TEST_111.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*PARAMETER: p_isbn(100) TYPE c OBLIGATORY.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Reference variables for proxy and exception class&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  lo_clientproxy     TYPE REF TO ZES_CO_ZWS_MATNR,&lt;/P&gt;&lt;P&gt;  lo_sys_exception   TYPE REF TO cx_ai_system_fault,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Structures to set and get message content&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   ls_request         TYPE ZES_ZTEST_WS,&lt;/P&gt;&lt;P&gt;   ls_response        TYPE ZES_ZTEST_WS_RESPONSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****Set the input parameter ISBN into the Request of the SOAP Object&lt;/P&gt;&lt;P&gt;ls_request-matnr = '100'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****Create the Proxy and Clall it.&lt;/P&gt;&lt;P&gt;CREATE OBJECT lo_clientproxy&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;     LOGICAL_PORT_NAME =  'ZWS_TEST'.&lt;/P&gt;&lt;P&gt;TRY.&lt;/P&gt;&lt;P&gt;    CALL METHOD lo_clientproxy-&amp;gt;ZTEST_WS&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = ls_request&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = ls_response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CATCH cx_ai_system_fault INTO lo_sys_exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Error handling&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDTRY.&lt;/P&gt;&lt;P&gt;COMMIT WORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2009 10:19:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-a-proxy-from-abap-report/m-p/6064114#M1354435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-01T10:19:48Z</dc:date>
    </item>
  </channel>
</rss>

