<?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 we print two internal table simultaneously in smartforms ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674381#M29796</link>
    <description>&lt;P&gt;if your itab1 and itab2 dont have master-detail relationship, its mean for line 1 of table 1 you also display line 1 of table 2, i suggest to use program line. so basically you create a table for itab1, inside main area add program lines (right click in cell, create/flow logic/program lines) into row cell in order to read table 2, after that add a text to display both itab1 and itab2.&lt;/P&gt;&lt;P&gt;if its master-detail, you add a loop inside row cell (same path as above), add condition in conditions tab, create template in side loop.&lt;/P&gt;&lt;P&gt;I believe that there are many example you could find on internet about this. &lt;/P&gt;</description>
    <pubDate>Wed, 12 Dec 2018 00:37:30 GMT</pubDate>
    <dc:creator>DoanManhQuynh</dc:creator>
    <dc:date>2018-12-12T00:37:30Z</dc:date>
    <item>
      <title>Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674375#M29790</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt;
  &lt;P&gt;I want to print two internal table in smartforms. But table should be print simultaneously.&lt;BR /&gt;Like : &lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;ITAB1-ROW1
  ITAB2-ROW1
ITAB1-ROW2
  ITAB2-ROW2&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Thanks in advanced.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 12:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674375#M29790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-12-11T12:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674376#M29791</link>
      <description>&lt;P&gt;How about combining ITAB1 and ITAB2 into ITAB3 the way you want, and sending ITAB3 to the SmartForms function?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 12:37:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674376#M29791</guid>
      <dc:creator>keremkoseoglu</dc:creator>
      <dc:date>2018-12-11T12:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674377#M29792</link>
      <description>&lt;P&gt;Thanks Kerem for reply. But i don't want to combine two table&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:06:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674377#M29792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-12-11T15:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674378#M29793</link>
      <description>&lt;P&gt;I think looping on basis of table index (sy-tabix) may fulfill your requirement.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:10:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674378#M29793</guid>
      <dc:creator>former_member596005</dc:creator>
      <dc:date>2018-12-11T15:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674379#M29794</link>
      <description>&lt;P&gt;You can &lt;A href="https://help.sap.com/SAPhelp_nw70/helpdata/en/b8/b60cd42cb611d5b692006094192fe3/content.htm?no_cache=true"&gt;combine Loops and Tables&lt;/A&gt; in SmartForms, or you can add a code node in a Loop or Table to read the second internal table (if relation one to one between tables)&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674379#M29794</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-12-11T15:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674380#M29795</link>
      <description>&lt;P&gt;Hi Raymond thanks for reply, could you please be specific cause i'm new for smartforms. If any link is there its good.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674380#M29795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-12-11T15:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674381#M29796</link>
      <description>&lt;P&gt;if your itab1 and itab2 dont have master-detail relationship, its mean for line 1 of table 1 you also display line 1 of table 2, i suggest to use program line. so basically you create a table for itab1, inside main area add program lines (right click in cell, create/flow logic/program lines) into row cell in order to read table 2, after that add a text to display both itab1 and itab2.&lt;/P&gt;&lt;P&gt;if its master-detail, you add a loop inside row cell (same path as above), add condition in conditions tab, create template in side loop.&lt;/P&gt;&lt;P&gt;I believe that there are many example you could find on internet about this. &lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 00:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674381#M29796</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-12-12T00:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can we print two internal table simultaneously in smartforms ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674382#M29797</link>
      <description>&lt;P&gt;Dear Harshal&lt;/P&gt;&lt;P&gt;Please google for how to create loops and tables in smartform to get a detailed idea. You will find good number of links/tutorials on the same.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;nabheet&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 07:11:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-we-print-two-internal-table-simultaneously-in-smartforms/m-p/674382#M29797</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2018-12-12T07:11:24Z</dc:date>
    </item>
  </channel>
</rss>

