<?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/4207995#M1005615</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem is sorted out.&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;Archana W.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Mar 2009 04:34:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-26T04:34:54Z</dc:date>
    <item>
      <title>Tables Parameter Obsolete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207989#M1005609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru's ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to take the data from R/3 to BI using generic data extraction using Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After refering SDN i got some details stating to create the copy of the standard FM   'RSAX_BIW_GET_DATA_SIMPLE'  and change the name of the extract structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to take credit limit and credit exposure of the customer to BI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created my Z structure "Zcredit_Exposure".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i try o change the name of the of the structure in the tables parameter (associated type) in the copy of FM  " zrsax_biw_get_data_simple_1"   from   "Sflight " to "Zcredit_Exposure"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives me message "TABLES PARAMETER OBSOLETE" and i have to come out of that session..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me if my procedure is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also i have to call the standard FM " Credit_Exposure" in the above z FM created and i have to tranfer the values from this function module to the zstructure.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please suggest.&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;Archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 04:42:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207989#M1005609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T04:42:35Z</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/4207990#M1005610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do one thing, do not give the associated type in the TABLES parameter as ECC 6 says its obsolete .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if u give only the parameter name and not the associated type it wont throw an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when u call this func module the parameter against the &lt;/P&gt;&lt;P&gt;tables parameter give the parameter in the TABLES its structure (dynamic).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg: In the FM   TABLES tab u r having &lt;/P&gt;&lt;P&gt;  parameter: it_ekko  (do not give associated type )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in calling program&lt;/P&gt;&lt;P&gt;data:t_ekko type table of ekko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION FM&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;TABLES&lt;/P&gt;&lt;P&gt;  it_ekko = t_ekko &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here it_ekko gets the structure of t_ekko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resloves ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 04:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207990#M1005610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T04:56:06Z</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/4207991#M1005611</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 tried with ur solution but when i write the statement it_ekk0  = t_ekk0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives a error stating " EXPECTED "." after it_ekk0".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means it is not accepting any value after "it_ekk0".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried for it_ekk0[] = t_ekko[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know if i am wrong.&lt;/P&gt;&lt;P&gt;&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;Archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 05:14:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207991#M1005611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T05:14:56Z</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/4207992#M1005612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check by giving LIKE instead of TYPE for table parameters.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 05:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207992#M1005612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T05:20:22Z</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/4207993#M1005613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i also tried to define the int table in the global data but it is also not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab type table of zstructure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did the syntax check it gave an error stating " itab is either not active or does not exist."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell me whats wrong?&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;Archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 05:35:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207993#M1005613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T05:35:59Z</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/4207994#M1005614</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 have created the zstructure in the global data of the FM and defined the inetrnal table thr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this ok?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the statement tables is not required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope i have done correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reg,&lt;/P&gt;&lt;P&gt;archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 06:12:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207994#M1005614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T06:12:51Z</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/4207995#M1005615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem is sorted out.&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;Archana W.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2009 04:34:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-parameter-obsolete/m-p/4207995#M1005615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-26T04:34:54Z</dc:date>
    </item>
  </channel>
</rss>

