<?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: can someone explain the tables tab under function parameter declaration ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901740#M376395</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hasan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can give explaination in detail... Only thing stops me doing that is people gets the answer and they donot rewards us for our efforts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So pl. consider our efforts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. We are using Tables as an Interface... I.e we can pass value to FM and Receive from FM using TABLES... It can work both way... So If u are defining table like DRAW... It will give u access to PASS valuet To &amp;amp; From to this FM using Tables.&lt;/P&gt;&lt;P&gt;2. It can not get data of Draw into it automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is enough... For more details on FM and RFC u can write to me... or send an email to me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DARSHAN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Feb 2007 19:18:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-21T19:18:27Z</dc:date>
    <item>
      <title>can someone explain the tables tab under function parameter declaration ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901737#M376392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;when declaring a function, part of its parameter interface is the tables tab. So if in FUNCTION1 i  declare a table: tdraw like draw  (optional)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what does that mean ? does this mean that tdraw will be a table of type draw and at the same time it will be filled up with the same contents as draw has ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then how can other function (func2) use FUNCTION1 and its table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if inside func2  i also have an internal table AA like draw :&lt;/P&gt;&lt;P&gt;so inside func2 i say:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function1&lt;/P&gt;&lt;P&gt;tables:tdraw = AA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does this mean that it will assign the result tdraw table of function1 to AA ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone explain details of internal tables and passing them as parameters ?&lt;/P&gt;&lt;P&gt;and which table is assigned to which ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 17:40:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901737#M376392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T17:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: can someone explain the tables tab under function parameter declaration ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901738#M376393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi hassan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are talking about the tables parameter in SE37, when you declare a table tdraw like draw it only means you are declaring an internal table of type draw but the contents are not filled into it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the source code of the program you have to write the code to fetch the data to tdraw and do the manipulations accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, the tables you are declaring can be like the input table or can be used for output table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose u have 2 tables tab1 and tab2, tab1 you are going to input the values to it and the calculated values have to be in another table, you can use tab2 as the result table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps.&lt;/P&gt;&lt;P&gt;award points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 18:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901738#M376393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T18:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: can someone explain the tables tab under function parameter declaration ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901739#M376394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tables parameters is an optional parameters while creating FM using SE37. it is used when u want to pass ur ITAB alongwith its contents to FM. But while declaring Tables parameters, one thing u need to be sure of ... the structure which tables parameters will refer to should be in DDIC. so first declare a structure and then go ahead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bbye tac care&lt;/P&gt;&lt;P&gt;Ashwani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 18:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901739#M376394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T18:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: can someone explain the tables tab under function parameter declaration ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901740#M376395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hasan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can give explaination in detail... Only thing stops me doing that is people gets the answer and they donot rewards us for our efforts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So pl. consider our efforts...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. We are using Tables as an Interface... I.e we can pass value to FM and Receive from FM using TABLES... It can work both way... So If u are defining table like DRAW... It will give u access to PASS valuet To &amp;amp; From to this FM using Tables.&lt;/P&gt;&lt;P&gt;2. It can not get data of Draw into it automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is enough... For more details on FM and RFC u can write to me... or send an email to me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DARSHAN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 19:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-someone-explain-the-tables-tab-under-function-parameter-declaration/m-p/1901740#M376395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T19:18:27Z</dc:date>
    </item>
  </channel>
</rss>

