<?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 Error text !! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229694#M1010136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    types: BEGIN OF TY_T_TO_BE_SENT.
    types: externalid type dunsnr.
    types: accept_status type char4.
    types: END OF TY_T_TO_BE_SENT .

    types:    TY_TT_TO_BE_SENT type standard table of TY_T_TO_BE_SENT.

  methods SPLIT_DATA
    returning
      value(R_BELEGS_TO_SEND) type ty_tt_to_be_sent .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i am getting syntax error syaing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="green" __jive_macro_name="color"&gt;Type of returning parameters must be fully &lt;/SPAN&gt;specified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you think the reason behind this error?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Aug 2008 10:33:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-04T10:33:26Z</dc:date>
    <item>
      <title>Error text !!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229694#M1010136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    types: BEGIN OF TY_T_TO_BE_SENT.
    types: externalid type dunsnr.
    types: accept_status type char4.
    types: END OF TY_T_TO_BE_SENT .

    types:    TY_TT_TO_BE_SENT type standard table of TY_T_TO_BE_SENT.

  methods SPLIT_DATA
    returning
      value(R_BELEGS_TO_SEND) type ty_tt_to_be_sent .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i am getting syntax error syaing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="green" __jive_macro_name="color"&gt;Type of returning parameters must be fully &lt;/SPAN&gt;specified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you think the reason behind this error?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 10:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229694#M1010136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T10:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Error text !!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229695#M1010137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Trivenn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For returning parameter, the declaration should be complete... I.e. for table types, they should also contain the details of the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So try defining your table type as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types:    TY_TT_TO_BE_SENT type standard table of TY_T_TO_BE_SENT  &lt;STRONG&gt;with default key&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or define the non-unique key for the table depending upon your scenario...for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types:    TY_TT_TO_BE_SENT type standard table of TY_T_TO_BE_SENT  &lt;STRONG&gt;with NON-UNIQUE KEY externalid&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Piyush Patil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:34:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229695#M1010137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T11:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Error text !!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229696#M1010138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Trivenn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume that you have to put your TYPE definition into the &lt;STRONG&gt;public section&lt;/STRONG&gt; of your class otherwise you get this syntax error. In addition, you should define the KEY of your table type, e.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    types: BEGIN OF TY_T_TO_BE_SENT.
    types: externalid type dunsnr.
    types: accept_status type char4.
    types: END OF TY_T_TO_BE_SENT .
 
    types:    TY_TT_TO_BE_SENT type standard table of TY_T_TO_BE_SENT
                                                  WITH DEFAULT KEY.  " key definition
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229696#M1010138</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-08-04T11:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Error text !!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229697#M1010139</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;specify the internal table this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
     TY_TT_TO_BE_SENT type standard table of TY_T_TO_BE_SENT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;Narin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 11:49:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-text/m-p/4229697#M1010139</guid>
      <dc:creator>narin_nandivada3</dc:creator>
      <dc:date>2008-08-04T11:49:33Z</dc:date>
    </item>
  </channel>
</rss>

