<?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: Smartforms - Displaying internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184566#M126755</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;If it is not passed through program,you can declare the types in Global Definitions-&amp;gt;Types as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty,&lt;/P&gt;&lt;P&gt;        matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;        end of ty.&lt;/P&gt;&lt;P&gt;In Global Definitions-&amp;gt;Global Data,declare internal table and work area as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab type standard table of ty&lt;/P&gt;&lt;P&gt;wa type ty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in program logic,you can use itab and wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you are passing the internal table thro' program,as far I know,you need to define satructure in SE11 for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KIndly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Feb 2006 08:31:27 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2006-02-10T08:31:27Z</dc:date>
    <item>
      <title>Smartforms - Displaying internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184561#M126750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to display the contents of the internal table in a smartform whose structure is not defined in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points guaranteed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2006 07:09:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184561#M126750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-10T07:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - Displaying internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184562#M126751</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;Even i got the same problem. I think we should use Field Symbols for doing this or using DATA reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello Abapers if any one have solution for this question plz post it.&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;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2006 07:54:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184562#M126751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-10T07:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - Displaying internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184563#M126752</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;describe the table has type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;describe an internal table with the good structure in the smartforms, and copy the type any to the describe into the smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can pass the info with a table containing only characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2006 08:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184563#M126752</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-02-10T08:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - Displaying internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184564#M126753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frédéric Girod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My internal table has the follwing structure,&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF itab,&lt;/P&gt;&lt;P&gt;     VKORG LIKE  VBAK-VKORG,&lt;/P&gt;&lt;P&gt;     VTWEG LIKE  VBAK-VTWEG,&lt;/P&gt;&lt;P&gt;     POSNR LIKE  VBAP-POSNR,&lt;/P&gt;&lt;P&gt;     MATNR LIKE  VBAP-MATNR.&lt;/P&gt;&lt;P&gt;    END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not clear on your answer. Can you please tell me the procedure for displaying it in smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2006 08:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184564#M126753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-10T08:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - Displaying internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184565#M126754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I have right understand your problem, you have this internal table in your program. And you would like to export it into the smartforms and display the content ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, the most simple, is to describe a structure like this internal table.&lt;/P&gt;&lt;P&gt;In your smartforms, set a table with the structure that you just create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the function module to send the table into the smartforms (the function module generate by the smartforms)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the smartforms, create a table, loop into this table into a structure (describe in the global variable, a structure like the structure you have create into the dictionnary).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2006 08:22:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184565#M126754</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-02-10T08:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Smartforms - Displaying internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184566#M126755</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;If it is not passed through program,you can declare the types in Global Definitions-&amp;gt;Types as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty,&lt;/P&gt;&lt;P&gt;        matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;        end of ty.&lt;/P&gt;&lt;P&gt;In Global Definitions-&amp;gt;Global Data,declare internal table and work area as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab type standard table of ty&lt;/P&gt;&lt;P&gt;wa type ty&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in program logic,you can use itab and wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you are passing the internal table thro' program,as far I know,you need to define satructure in SE11 for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KIndly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Feb 2006 08:31:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-displaying-internal-table/m-p/1184566#M126755</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-10T08:31:27Z</dc:date>
    </item>
  </channel>
</rss>

