<?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 I_tabs in function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567461#M858554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use a table of a self-made structure in a function module? And how do you do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: My main program uses internal able datafields. Is it possible to pass this to the function module, and how do I do that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF datafields_struc.&lt;/P&gt;&lt;P&gt;DATA: infotype(4),&lt;/P&gt;&lt;P&gt;      index TYPE i,&lt;/P&gt;&lt;P&gt;      field_name(30),&lt;/P&gt;&lt;P&gt;      field_roll(20),&lt;/P&gt;&lt;P&gt;      field_length TYPE i,&lt;/P&gt;&lt;P&gt;      field_start TYPE i.&lt;/P&gt;&lt;P&gt;DATA : END OF datafields_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: datafields LIKE datafields_struc OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Mar 2008 08:33:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-27T08:33:54Z</dc:date>
    <item>
      <title>I_tabs in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567461#M858554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use a table of a self-made structure in a function module? And how do you do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: My main program uses internal able datafields. Is it possible to pass this to the function module, and how do I do that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF datafields_struc.&lt;/P&gt;&lt;P&gt;DATA: infotype(4),&lt;/P&gt;&lt;P&gt;      index TYPE i,&lt;/P&gt;&lt;P&gt;      field_name(30),&lt;/P&gt;&lt;P&gt;      field_roll(20),&lt;/P&gt;&lt;P&gt;      field_length TYPE i,&lt;/P&gt;&lt;P&gt;      field_start TYPE i.&lt;/P&gt;&lt;P&gt;DATA : END OF datafields_struc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: datafields LIKE datafields_struc OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:33:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567461#M858554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: I_tabs in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567462#M858555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U have to create a structure in se11 with the fields and then &lt;/P&gt;&lt;P&gt;give the structure in the TABLES Declaration in FM... in order &lt;/P&gt;&lt;P&gt;to use the structure ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;infotype(4),&lt;/P&gt;&lt;P&gt;index TYPE i,&lt;/P&gt;&lt;P&gt;field_name(30),&lt;/P&gt;&lt;P&gt;field_roll(20),&lt;/P&gt;&lt;P&gt;field_length TYPE i,&lt;/P&gt;&lt;P&gt;field_start TYPE i.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567462#M858555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: I_tabs in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567463#M858556</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;        there are  &lt;/P&gt;&lt;P&gt;import &lt;/P&gt;&lt;P&gt;export&lt;/P&gt;&lt;P&gt;changing&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;exception&lt;/P&gt;&lt;P&gt;source code    in any function module  &lt;/P&gt;&lt;P&gt;so u can use ur  internal  table  in the table block  of  the  fmm&lt;/P&gt;&lt;P&gt;bt the types of  both the  tables  means  ur table  and the table  defined in the  table block of   fm must  be  the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567463#M858556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: I_tabs in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567464#M858557</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;declare youre structure in the data dictionary, in that way it is accessible object wide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And avoid tables with header lines. They should be used no more. In OO context they are not allowed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:41:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567464#M858557</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2008-03-27T08:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: I_tabs in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567465#M858558</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;There is the possibilty that you can use i_tabs as the functionmodule  ... wht u need to do is intially create a structure in se11 and declare all the fileds which u will be declaring in the internal table and declare that structure name in the tcode se37 there we can find the tab as tables and u declare in it..  &lt;/P&gt;&lt;P&gt;Now u can declare the fileds in the inernal table or call the function module and use it .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this hope u can solve it !&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sana.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward with points if found helpful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 08:49:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567465#M858558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T08:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: I_tabs in function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567466#M858559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks it works!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 09:00:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-tabs-in-function-module/m-p/3567466#M858559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T09:00:25Z</dc:date>
    </item>
  </channel>
</rss>

