<?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: internal table (smartforms) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548454#M579961</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can pass data to smartforms either through a print program or directly within smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to pass int.table (not of standard table type) , you can do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) In the Form Interface ,create a variable &lt;/P&gt;&lt;P&gt;ITAB LIKE ZSHAIL_T1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) In the Global definition, create a structure&lt;/P&gt;&lt;P&gt;STRUCT LIKE ZSHAIL_T1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)Create a Table Node and in the DATA tab, give it as &lt;/P&gt;&lt;P&gt;ITAB to STRUCT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) You can switch on the Field list (Ctrl&lt;EM&gt;shift&lt;/EM&gt;f4) and drag and drop your text(&amp;amp;struct-field_name&amp;amp;) wherever you want it to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) From the main program, call the FM SSF_FUNCTION_MODULE_NAME to get the FM name and then call the generated FM name and pass the internal table name in the tables parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear for you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhay Singh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jul 2007 10:09:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-18T10:09:48Z</dc:date>
    <item>
      <title>internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548446#M579953</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;How can define an internal table within smartforms ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ilhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:05:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548446#M579953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548447#M579954</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;Go to global defination.&lt;/P&gt;&lt;P&gt;In TYPES tab ..create your user defined type for internal table.&lt;/P&gt;&lt;P&gt;that create as many internal table u want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Azad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548447#M579954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548448#M579955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a structure and table type in SE11...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then In the form interface of the smartforms..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the importing parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB TYPE 'Your table type name'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the form interface of the smartforms..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the tables tab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB LIKE 'Your structure name'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;rewards point for useful answer....&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:08:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548448#M579955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548449#M579956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In global declaration &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab      like     table of ekko.&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;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548449#M579956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548450#M579957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Yes u can define internal table in Smartforms.&lt;/P&gt;&lt;P&gt;You can define it in Global Definitions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:09:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548450#M579957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548451#M579958</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;Here is a sample program in which used two internal tables in smart forms: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT YPRINTPRG_SMARTFORM1 . &lt;/P&gt;&lt;P&gt;DATA : ITKNA1 LIKE KNA1, &lt;/P&gt;&lt;P&gt;             ITVBAK LIKE VBAK OCCURS 0 WITH HEADER LINE. &lt;/P&gt;&lt;P&gt;PARAMETERS : PKUNNR LIKE KNA1-KUNNR. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO ITKNA1 &lt;/P&gt;&lt;P&gt;   WHERE KUNNR = PKUNNR. &lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM VBAK &lt;/P&gt;&lt;P&gt;    INTO TABLE ITVBAK &lt;/P&gt;&lt;P&gt;   WHERE KUNNR = PKUNNR. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000011' &amp;#147;THIS FUNCTION MODULE CALLS THE  &lt;/P&gt;&lt;P&gt;                                      SMART FORM WE WILL GET THIS AT MENU ENVIRONEMENT &amp;#148; &lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;  ITKNA1                     = ITKNA1 &lt;/P&gt;&lt;P&gt;  TABLES &lt;/P&gt;&lt;P&gt;      ITVBAK                = ITVBAK. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN SMART FORM  &lt;/P&gt;&lt;P&gt;FORM INERFACE----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;IMPORT (TAB)  &lt;/P&gt;&lt;P&gt;  Parameter name      Type assignment    Reference type      Default value  &lt;/P&gt;&lt;P&gt;  ITKNA1                     LIKE                      KNA1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM INERFACE----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;TABLES (TAB) &lt;/P&gt;&lt;P&gt;  ITVBAK                     LIKE                       VBAK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAGES &amp;amp; WINDOWS--&lt;DEL&gt;- MAIN WINDOW&lt;/DEL&gt;&lt;DEL&gt;-LOOP 1&lt;/DEL&gt;--DATA(TAB) &lt;/P&gt;&lt;P&gt;  ITVBAK         INTO               ITVBAK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAGES &amp;amp; WINDOWS----&lt;DEL&gt;-MAIN WINDOW&lt;/DEL&gt;--&lt;DEL&gt;LOOP 1&lt;/DEL&gt;---TEXT 3(EDITOR)  &lt;/P&gt;&lt;P&gt;  &amp;amp;ITVBAK-VBELN&amp;amp;   &amp;amp;ITVBAK-ERDAT&amp;amp;  &amp;amp;ITVBAK-ERNAM&amp;amp;  &amp;amp;ITVBAK-NETWR&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAGES &amp;amp; WINDOWS----&lt;DEL&gt;-HEADER WINDOW&lt;/DEL&gt;---TEXT 2(EDITOR) &lt;/P&gt;&lt;P&gt;  Customer No. &amp;amp;itkna1-kunnr&amp;amp;        CustomerName :&amp;amp;itkna1-name1&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:09:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548451#M579958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548452#M579959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the form interface,there is a tab called 'TYPES'.&lt;/P&gt;&lt;P&gt;In that write like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty_mara,&lt;/P&gt;&lt;P&gt;matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;end of ty_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the form interface , there is a tab called 'GLOBAL DATA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that declare as below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa type ty_mara "for work area&lt;/P&gt;&lt;P&gt;itab type standard table of ty_mara "for internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of doubts, get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;rewards point for helpful answwer....&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks ..&lt;/P&gt;&lt;P&gt;Abhay SIingh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:09:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548452#M579959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548453#M579960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     Define looping process for internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pages and windows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First Page -&amp;gt; Header Window (Cursor at First Page then click Edit -&amp;gt; Node -&amp;gt; Create)&lt;/P&gt;&lt;P&gt;Here, you can specify your title and page numbering&lt;/P&gt;&lt;P&gt;&amp;amp;SFSY-PAGE&amp;amp; (Page 1) of &amp;amp;SFSY-FORMPAGES(Z4.0)&amp;amp; (Total Page)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main windows -&amp;gt; TABLE -&amp;gt; DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Loop section, tick Internal table and fill in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB1 (table in ABAP SMARTFORM calling function) INTO ITAB2&lt;/P&gt;&lt;P&gt;3. Define table in smartforms&lt;/P&gt;&lt;P&gt;Global settings :&lt;/P&gt;&lt;P&gt;Form interface&lt;/P&gt;&lt;P&gt;Variable name Type assignment Reference type&lt;/P&gt;&lt;P&gt;ITAB1 TYPE Table Structure&lt;/P&gt;&lt;P&gt;global definitions&lt;/P&gt;&lt;P&gt;Variable name Type assignment Reference type&lt;/P&gt;&lt;P&gt;ITAB2 TYPE Table Structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/smartforms.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/smartforms.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:09:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548453#M579960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548454#M579961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can pass data to smartforms either through a print program or directly within smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to pass int.table (not of standard table type) , you can do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) In the Form Interface ,create a variable &lt;/P&gt;&lt;P&gt;ITAB LIKE ZSHAIL_T1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) In the Global definition, create a structure&lt;/P&gt;&lt;P&gt;STRUCT LIKE ZSHAIL_T1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)Create a Table Node and in the DATA tab, give it as &lt;/P&gt;&lt;P&gt;ITAB to STRUCT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) You can switch on the Field list (Ctrl&lt;EM&gt;shift&lt;/EM&gt;f4) and drag and drop your text(&amp;amp;struct-field_name&amp;amp;) wherever you want it to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) From the main program, call the FM SSF_FUNCTION_MODULE_NAME to get the FM name and then call the generated FM name and pass the internal table name in the tables parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear for you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhay Singh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:09:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548454#M579961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548455#M579962</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;is it not possible to say directly ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_BWPOS_IT TYPE TABLE OF /DCA/P000_BWPOS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ilhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548455#M579962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548456#M579963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Under Global settings&lt;/P&gt;&lt;P&gt;a) Form Interface   &lt;/P&gt;&lt;P&gt;    Table Tab&lt;/P&gt;&lt;P&gt;   ITAB LIKE EKPO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sairam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548456#M579963</guid>
      <dc:creator>former_member196280</dc:creator>
      <dc:date>2007-07-18T10:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548457#M579964</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;in the global declaration of smartform in table tab write the internal table name.&lt;/P&gt;&lt;P&gt;if this internal table consists of fields from different table ,there before enter the table name in smartform create a structure of that internal table type through transaction se11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Debjani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548457#M579964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548458#M579965</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;click on  form interface . select tables. &lt;/P&gt;&lt;P&gt;now u can specify parameter name = internal table name &lt;/P&gt;&lt;P&gt; type assignment = type\like  &lt;/P&gt;&lt;P&gt;associated type = DB table name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;similarly in global definitions u can specify the work area.&lt;/P&gt;&lt;P&gt;ex:variable name = work area name.&lt;/P&gt;&lt;P&gt;type assignment -like&lt;/P&gt;&lt;P&gt;associated type - DB table name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to use work area fields in the form\windows click on icon(field list on \off) left to form painter..&lt;/P&gt;&lt;P&gt;it will list all int tables and work areas..&lt;/P&gt;&lt;P&gt;drag fields into windows and proceed..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548458#M579965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548459#M579966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;prabhu jayaraman  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;it is only possible to write &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIKE&lt;/P&gt;&lt;P&gt;TYPE&lt;/P&gt;&lt;P&gt;TYPE REF TO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I write it like your suggestion with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab like table of ekko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagards&lt;/P&gt;&lt;P&gt;Ilhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:14:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548459#M579966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: internal table (smartforms)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548460#M579967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ilhan Ertas,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes it is possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u will find three columns varialble name, type assignment and associated type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( LS_BWPOS_IT  ,   LIKE  and  TABLE OF /DCA/P000_BWPOS ) respectively.&lt;/P&gt;&lt;P&gt;&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;Prabhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:17:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-smartforms/m-p/2548460#M579967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:17:00Z</dc:date>
    </item>
  </channel>
</rss>

