<?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 &amp; data flow in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-data-flow/m-p/5255397#M1214028</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;there are 2 ways&lt;/P&gt;&lt;P&gt;1. just strink the window size upto 1 row in 1st page and the proper size in 2nd page&lt;/P&gt;&lt;P&gt;2.  select the new page  with condition/ counter is eqaul to 1 in the 1st page.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Feb 2009 10:28:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-20T10:28:25Z</dc:date>
    <item>
      <title>smartforms &amp; data flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-data-flow/m-p/5255395#M1214026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i have to flow data in a smartform in say header,main area &amp;amp; footer for only 1st row in 1st page &amp;amp; remaining rows in next page on one on one new page how can i do so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ketan&lt;/P&gt;&lt;P&gt;ABAP Consultant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 08:49:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-data-flow/m-p/5255395#M1214026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T08:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms &amp; data flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-data-flow/m-p/5255396#M1214027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ketan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have not stated your problem precisely. However, I guess you have an Internal table (ITAB).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then try this.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;At first page&lt;/STRONG&gt; (Header, Main etc). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab into wa.&lt;/P&gt;&lt;P&gt;case sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 1.&lt;/P&gt;&lt;P&gt;output variable = input variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when others.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;At nextpage.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab into wa.&lt;/P&gt;&lt;P&gt;case sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output variable = input variable.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can create text elements in each page accordingly and output the out variable in the text &lt;/P&gt;&lt;P&gt;elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also consider the option of using the &lt;STRONG&gt;CONDITIONS&lt;/STRONG&gt; (And additional Events) of the text elements. Here you can define the contions at which the text element should be printed and on which page etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ys,&lt;/P&gt;&lt;P&gt;Blacky.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 10:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-data-flow/m-p/5255396#M1214027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T10:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms &amp; data flow</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-data-flow/m-p/5255397#M1214028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;there are 2 ways&lt;/P&gt;&lt;P&gt;1. just strink the window size upto 1 row in 1st page and the proper size in 2nd page&lt;/P&gt;&lt;P&gt;2.  select the new page  with condition/ counter is eqaul to 1 in the 1st page.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2009 10:28:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-data-flow/m-p/5255397#M1214028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-20T10:28:25Z</dc:date>
    </item>
  </channel>
</rss>

