<?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: web service missing output data! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932068#M1485886</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) You forgot to use the 'code' tags, which makes your post unreadable.&lt;/P&gt;&lt;P&gt;2) I don't mean to judge, but it seems that you've been on SDN since 2007 and have 250 posts but 0 points. Which means that you have neither helped anyone nor rewarded anyone for answering your questions (you get 1 point yourself for giving points).  So how do you think this makes others feel about helping you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 May 2010 18:01:03 GMT</pubDate>
    <dc:creator>Jelena_Perfiljeva</dc:creator>
    <dc:date>2010-05-18T18:01:03Z</dc:date>
    <item>
      <title>web service missing output data!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932067#M1485885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi expert!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i create RFC TO convert web service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and calling web service using proxy object,return data will miss TABLES Parameter info&lt;/P&gt;&lt;P&gt;BUT using HTTP trought browser this TABLES Parameter is ok!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;rfc function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION ZWEBSERVICE1.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"  IMPORTING
*"     VALUE(INPUT) TYPE  CHAR40 DEFAULT ' '
*"  EXPORTING
*"     VALUE(OUTPUT) TYPE  CHAR40
*"  TABLES
*"      TDATA STRUCTURE  TEXTL OPTIONAL
*"----------------------------------------------------------------------


  if input is initial or input = ' '.
    output = 'initial'.
  else.
    concatenate 'value:' input into output.
  endif.

  do 10 times.
    TDATA-LINE = SY-INDEX.
    CONDENSE TDATA-LINE.

    CONCATENATE 'LINE' TDATA-LINE ':' INPUT INTO TDATA-LINE.
    APPEND TDATA.

  enddo.

ENDFUNCTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and calling report：&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZCALLWEBSERIVE1
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT  ZCALLWEBSERIVE1.

DATA: proxy TYPE REF TO ZWDBSERVICE1CO_ZWEBSERVICE1,
      org_IN TYPE ZWDBSERVICE1ZWEBSERVICE1,
      ORG_OUT TYPE ZWDBSERVICE1ZWEBSERVICE1RESPON,
      tdata type ZWDBSERVICE1TABLE_OF_TEXTL,
      item_tab type ZWDBSERVICE1TEXTL_TAB,
      ITEM type ZWDBSERVICE1TEXTL,
           error type REF TO cx_ai_system_fault.

org_in-INPUT = 'SORG.1000'.


TRY.
    CREATE OBJECT proxy
* EXPORTING
*    LOGICAL_PORT_NAME =
        .

*                        TRY.
    CALL METHOD proxy-&amp;gt;ZWEBSERVICE1
      EXPORTING
        INPUT  = org_in
      IMPORTING
        OUTPUT = ORG_OUT.
*                         CATCH CX_AI_SYSTEM_FAULT .
*                         CATCH CX_AI_APPLICATION_FAULT .
*                        ENDTRY.

  CATCH cx_ai_system_fault INTO error.
    WRITE /1 error-&amp;gt;ERRORTEXT.
ENDTRY.

COMMIT WORK.

WRITE: AT /1 org_in-input,
          /1 org_out-output.


*loop at org_out-TDATA-ITEM into ITEM.
*  write:/ ITEM-LINE.
*endloop.

item_tab = org_out-TDATA-ITEM.

*loop at item_tab into item.*
  *write:/ ITEM-LINE.*
*endloop.*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no data in inter table ITEM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on May 18, 2010 7:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 06:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932067#M1485885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T06:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: web service missing output data!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932068#M1485886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) You forgot to use the 'code' tags, which makes your post unreadable.&lt;/P&gt;&lt;P&gt;2) I don't mean to judge, but it seems that you've been on SDN since 2007 and have 250 posts but 0 points. Which means that you have neither helped anyone nor rewarded anyone for answering your questions (you get 1 point yourself for giving points).  So how do you think this makes others feel about helping you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 18:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932068#M1485886</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2010-05-18T18:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: web service missing output data!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932069#M1485887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you call the method Proxy, you are declaring exporting and importing areas, but no tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 May 2010 18:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932069#M1485887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-18T18:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: web service missing output data!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932070#M1485888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have resolve it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 May 2010 00:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/web-service-missing-output-data/m-p/6932070#M1485888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-19T00:53:19Z</dc:date>
    </item>
  </channel>
</rss>

