<?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 ITAB problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380405#M185801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mukesh,&lt;/P&gt;&lt;P&gt;I have defined it_list_type in the Global definitions types like you said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program lines  i have itab like this..and it is having the data...&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF ITAB OCCURS 10,&lt;/P&gt;&lt;P&gt;       DESC(80),&lt;/P&gt;&lt;P&gt;     END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u tell me how to pass ITAB data into it_list_type.&lt;/P&gt;&lt;P&gt;I should be able to pass this table into smartforms loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 05:36:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-29T05:36:34Z</dc:date>
    <item>
      <title>smartforms ITAB problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380401#M185797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;Iam working on smartforms to display INVOICE using &lt;/P&gt;&lt;P&gt;VF02&lt;DEL&gt;&amp;gt;Billing document&lt;/DEL&gt;&amp;gt;Issue_Output to....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i need to display Material sales text.I got it into ITAB using Read text in the program lines.&lt;/P&gt;&lt;P&gt;Now, may problem is how to define ITAB globally &amp;lt;b&amp;gt;with header line?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;So that i can loop it and display the data.Any suggestions pls....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward guaranteed,&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 03:55:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380401#M185797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T03:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms ITAB problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380402#M185798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You do not have to read the text into ITAB and print it in Smartform. You can create a text module node to print material sales text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See help for more details...&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/d2/69a14ecd8b11d3b563006094192fe3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/d2/69a14ecd8b11d3b563006094192fe3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shashi Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 04:10:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380402#M185798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T04:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms ITAB problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380403#M185799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use it in the types of the smartform&lt;/P&gt;&lt;P&gt;types: begin of it_list_type,&lt;/P&gt;&lt;P&gt;       field1 type fieldtype,&lt;/P&gt;&lt;P&gt;       end of it_list_type. &lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;it_list_table type it_list_type OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this it_list_table for your associate type of internal table in global data of the smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 04:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380403#M185799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T04:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms ITAB problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380404#M185800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In global definition, you can go the "Types" tab and there you can define a structure of your internal table and then create an internal table with header line and of that structure type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 04:59:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380404#M185800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T04:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms ITAB problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380405#M185801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mukesh,&lt;/P&gt;&lt;P&gt;I have defined it_list_type in the Global definitions types like you said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program lines  i have itab like this..and it is having the data...&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF ITAB OCCURS 10,&lt;/P&gt;&lt;P&gt;       DESC(80),&lt;/P&gt;&lt;P&gt;     END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u tell me how to pass ITAB data into it_list_type.&lt;/P&gt;&lt;P&gt;I should be able to pass this table into smartforms loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 05:36:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380405#M185801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T05:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms ITAB problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380406#M185802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using a program to pass value to smartform, you cannot use internal table with header line. For that you have to go to Interface and there in the tables tab, give the name of the internal table. Now define a structure in the Global Definitions.Now in the tables node (or in the loop node) ,loop internal table into structure. Now use this structure for displaying the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not using a program, then you can use an internal table with header line as explained in the previous post. Now create the structure in the Global definitions . Now in the global definitions, go to Initialization tab and give the select statement to pass the value into the structure. NOw in the table node(or in the loop node), loop internal table into structure and use the structure to display the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer to this link and view my post for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="155152"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my point is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sylendra Prasad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 06:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-itab-problem/m-p/1380406#M185802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T06:04:59Z</dc:date>
    </item>
  </channel>
</rss>

