<?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: classical report layout in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443989#M827103</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;  check with the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        bukrs type bsis-bukrs,  "company code&lt;/P&gt;&lt;P&gt;        hkont type bsis-hkont,  "General Ledger Account&lt;/P&gt;&lt;P&gt;        zuonr type bsis-zuonr,   "Assignment number&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: index type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select bukrs hkont zuonr from bsis into table itab up to 100 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new zuonr.&lt;/P&gt;&lt;P&gt;index = index + 1.&lt;/P&gt;&lt;P&gt;write:/2 index,15 itab-bukrs,25 itab-hkont,40 itab-zuonr.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;write:/40 itab-zuonr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 10:13:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-13T10:13:23Z</dc:date>
    <item>
      <title>classical report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443987#M827101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i need to print the layout in this form&lt;/P&gt;&lt;P&gt;1 &lt;DEL&gt;-23445&lt;/DEL&gt;-111111------8888888&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt; 222222&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------" /&gt;&lt;P&gt;333333&lt;/P&gt;&lt;P&gt;code will be usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 08:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443987#M827101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T08:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: classical report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443988#M827102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys i need to print the classical layout in the form of &lt;/P&gt;&lt;P&gt;sl no.   material    item no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so for one material there may be many line items, so i need to print sl no 1 and material no as 23444 and item no as 5 nos so for other items nos there should be only 1 material and serial no, how to do it in classical reporting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 09:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443988#M827102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T09:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: classical report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443989#M827103</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;  check with the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        bukrs type bsis-bukrs,  "company code&lt;/P&gt;&lt;P&gt;        hkont type bsis-hkont,  "General Ledger Account&lt;/P&gt;&lt;P&gt;        zuonr type bsis-zuonr,   "Assignment number&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: index type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select bukrs hkont zuonr from bsis into table itab up to 100 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new zuonr.&lt;/P&gt;&lt;P&gt;index = index + 1.&lt;/P&gt;&lt;P&gt;write:/2 index,15 itab-bukrs,25 itab-hkont,40 itab-zuonr.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;write:/40 itab-zuonr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443989#M827103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T10:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: classical report layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443990#M827104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT vbeln posnr FROM vbap INTO TABLE i_itab&lt;/P&gt;&lt;P&gt;                        WHERE vbeln = '0000004974'.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  LOOP AT i_itab INTO wa_temp .&lt;/P&gt;&lt;P&gt;    MOVE  wa_temp-posnr TO wa_temp1-posnr1.&lt;/P&gt;&lt;P&gt;    AT NEW vbeln.&lt;/P&gt;&lt;P&gt;        index = index + 1.&lt;/P&gt;&lt;P&gt;        WRITE:/2 index, 15 wa_temp-vbeln,25 wa_temp1-posnr1.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have written this logic for the serial no , material , items&lt;/P&gt;&lt;P&gt;but this is printing only one ling but other 3 items are not printing becaue at new is executing only once in side its block if it also need to display the other materials what i need to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2008 06:21:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classical-report-layout/m-p/3443990#M827104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-14T06:21:21Z</dc:date>
    </item>
  </channel>
</rss>

