<?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: TABLES parameter obsolete in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914421#M380463</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;got this from help.sap.com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The interface parameters can be typed. You can do so either by referring to ABAP Dictionary types or elementary ABAP types. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means that you can only use global types for your parameters, and none you defined in your top. Kinda makes sence, if you consider the fact that you will also need the type when you implement the fm to pass the parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is where I found it.&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db98ef35c111d1829f0000e829fbfe/content.htm"&amp;gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db98ef35c111d1829f0000e829fbfe/content.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Feb 2007 12:05:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-06T12:05:26Z</dc:date>
    <item>
      <title>TABLES parameter obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914417#M380459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed that in SAP ECC 6.0 the tables parameter is obsolete (warning about it).&lt;/P&gt;&lt;P&gt;After trying some things out and reading on the forum, i found that u can pass an internal table as a changing parameter for example, but the parameter has to be of type tabletype, as in.&lt;/P&gt;&lt;P&gt;CHANGING mytab type mytabletype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to define the mytabletype in a function group, or does it have to be defined in the dictionary?&lt;/P&gt;&lt;P&gt;apparantly you cant use changing mytab type mara if u want to pass an internal table with the same structure as mara.&lt;/P&gt;&lt;P&gt;So can i define in an include of the function group?&lt;/P&gt;&lt;P&gt;Types: mytabletype type mara. ( or something like that)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or is it possible to define in my function module interface:&lt;/P&gt;&lt;P&gt;CHANGING mytab type standard table mara (or something like that)   So i can make use of the tables allready in the dictionary...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Joren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 11:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914417#M380459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T11:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES parameter obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914418#M380460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can do that , it will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 11:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914418#M380460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T11:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES parameter obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914419#M380461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joren,&lt;/P&gt;&lt;P&gt; I think you have to create a table type in se11 only. If you are trying to create a table type for standard structures, just check if there is a standard table type already existing (IN SE11).&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 11:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914419#M380461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T11:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES parameter obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914420#M380462</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;thx for the replies. When i use a type from the dictionary it is working in the following way:&lt;/P&gt;&lt;P&gt;CHANGING mytab type tabletypefromdictionary.&lt;/P&gt;&lt;P&gt;It seems it doesnt work using  'type standard table of mara' in the function module interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i define in the top include of my fuction pool the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of my_type,&lt;/P&gt;&lt;P&gt;            myfield type i,&lt;/P&gt;&lt;P&gt;          end of my_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cant use it in my function module like this:&lt;/P&gt;&lt;P&gt;CHANGING mytab type my_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is the only way the first method i mention (with type from the dictionary) or am i doing something wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;J.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 11:21:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914420#M380462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T11:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES parameter obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914421#M380463</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;got this from help.sap.com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The interface parameters can be typed. You can do so either by referring to ABAP Dictionary types or elementary ABAP types. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this means that you can only use global types for your parameters, and none you defined in your top. Kinda makes sence, if you consider the fact that you will also need the type when you implement the fm to pass the parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is where I found it.&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db98ef35c111d1829f0000e829fbfe/content.htm"&amp;gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db98ef35c111d1829f0000e829fbfe/content.htm&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 12:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914421#M380463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T12:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES parameter obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914422#M380464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Joren ,&lt;/P&gt;&lt;P&gt;As per ur post , i suggest u to do following things&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of my_type,&lt;/P&gt;&lt;P&gt;myfield type i,&lt;/P&gt;&lt;P&gt;end of my_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data mytype type my_type occurs 0 with header line.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then pass these 'mytype' in the changing filed , it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this wud solve ur problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 12:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914422#M380464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T12:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES parameter obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914423#M380465</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 think kevin is right, you cant make use of types that are not defined in the dictionary.&lt;/P&gt;&lt;P&gt;It makes sense indeed that the types have to be defined, because others have to use the types too when they create data to pass to the function module. (only exception when working with a generic table, you define the type standard table then)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;J.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2007 13:12:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/1914423#M380465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-06T13:12:18Z</dc:date>
    </item>
  </channel>
</rss>

