<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573610#M860188</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 driver program use loop and &lt;/P&gt;&lt;P&gt;use at vendor and call the form within that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will create a separate page for each vendor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Mar 2008 06:06:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-26T06:06:59Z</dc:date>
    <item>
      <title>smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573609#M860187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    i am printing wct certificates through smartforms.&lt;/P&gt;&lt;P&gt;on the basis of range of posting date on selection screen, i am getting multiple vendors. so my requirement is to print certificates for each vendors. means for each vendor there will be header info on first page and line items information on second page.&lt;/P&gt;&lt;P&gt;i have to fetch correct data in my smartforms but not able to separate them.&lt;/P&gt;&lt;P&gt;means all line item is printing on second page for all vendors.&lt;/P&gt;&lt;P&gt;and only first vendor header information is coming.&lt;/P&gt;&lt;P&gt;please suggest me how i should proceed so that i can print each vendor header and line items .&lt;/P&gt;&lt;P&gt;means loop should go to on first page after printing first line item information of vendor.&lt;/P&gt;&lt;P&gt;and how i will seperate the vendor line item information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;marks will be surely awarded for each helpfull answer*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 06:02:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573609#M860187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T06:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573610#M860188</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 driver program use loop and &lt;/P&gt;&lt;P&gt;use at vendor and call the form within that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will create a separate page for each vendor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 06:06:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573610#M860188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T06:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573611#M860189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually there is a loop existing in the smartforms,so you can add some code to start a new page when a new vendor appears:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*LOOP AT IT_TABLE.&lt;/P&gt;&lt;P&gt;  AT NEW LIFNR.&lt;/P&gt;&lt;P&gt;      NEW-PAGE.    &lt;/P&gt;&lt;P&gt;  ENDAT.&lt;/P&gt;&lt;P&gt;*ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS:YOU NEED TO SORT THE VENDOR AT FIRST &lt;/P&gt;&lt;P&gt;      SORT IT_TABLE BY LIFNR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 06:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573611#M860189</guid>
      <dc:creator>daixiong_jiang3</dc:creator>
      <dc:date>2008-03-26T06:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573612#M860190</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 driver program u can call ur smartform for every vendor using loop at vendor. collect ur vendor line item info in the seperate internal table in the same loop and pass this to ur smartform and display it on the next page in ur smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 06:16:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms/m-p/3573612#M860190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T06:16:12Z</dc:date>
    </item>
  </channel>
</rss>

