<?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: Regarding Report Display Format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494132#M1257123</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;You need to alter the internal table in the way you want to display. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example.&lt;/P&gt;&lt;P&gt;You have data in the internal table..&lt;/P&gt;&lt;P&gt;20 LNTP LSTP LNTP LTPS&lt;/P&gt;&lt;P&gt;40 LSTP PNTR PN26 P2C2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot achevie this passing the above table you need to do some alteration in the table data.&lt;/P&gt;&lt;P&gt;Take other internal table ans Convert the data in this way. and pass this to the ALV&lt;/P&gt;&lt;P&gt;Line no.&lt;/P&gt;&lt;P&gt;20 LNTP&lt;/P&gt;&lt;P&gt;LSTP&lt;/P&gt;&lt;P&gt;LNTP&lt;/P&gt;&lt;P&gt;LTPS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;40 LSTP&lt;/P&gt;&lt;P&gt;PNTR&lt;/P&gt;&lt;P&gt;PN26&lt;/P&gt;&lt;P&gt;P2C2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Apr 2009 04:12:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-11T04:12:19Z</dc:date>
    <item>
      <title>Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494129#M1257120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       In my report i have records in internal table like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Line no.    LAR01   LAR02   LAR03  LAR04&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        20          LNTP     LSTP     LNTP   LTPS&lt;/P&gt;&lt;P&gt;        40          LSTP     PNTR    PN26    P2C2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      I want these records should display like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      Line no.&lt;/P&gt;&lt;P&gt;       20            LNTP&lt;/P&gt;&lt;P&gt;                       LSTP&lt;/P&gt;&lt;P&gt;                       LNTP&lt;/P&gt;&lt;P&gt;                       LTPS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      40             LSTP&lt;/P&gt;&lt;P&gt;                      PNTR&lt;/P&gt;&lt;P&gt;                      PN26&lt;/P&gt;&lt;P&gt;                      P2C2&lt;/P&gt;&lt;P&gt;Can u pls give me any solution that how can i able to display records in my required format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shivam Pastagia.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 03:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494129#M1257120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T03:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494130#M1257121</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;Try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT ITAB.
WRITE:/ ITAB-LINENO, ITAB-FIELD1.
WRITE:/ ITAB_FIELD2.
WRITE:/ ITAB_FIELD3.
WRITE:/ ITAB_FIELD4.
SKIP.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 03:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494130#M1257121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T03:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494131#M1257122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but i am using ALV report so how can it wiil be possible in ALV report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 04:01:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494131#M1257122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T04:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494132#M1257123</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;You need to alter the internal table in the way you want to display. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example.&lt;/P&gt;&lt;P&gt;You have data in the internal table..&lt;/P&gt;&lt;P&gt;20 LNTP LSTP LNTP LTPS&lt;/P&gt;&lt;P&gt;40 LSTP PNTR PN26 P2C2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot achevie this passing the above table you need to do some alteration in the table data.&lt;/P&gt;&lt;P&gt;Take other internal table ans Convert the data in this way. and pass this to the ALV&lt;/P&gt;&lt;P&gt;Line no.&lt;/P&gt;&lt;P&gt;20 LNTP&lt;/P&gt;&lt;P&gt;LSTP&lt;/P&gt;&lt;P&gt;LNTP&lt;/P&gt;&lt;P&gt;LTPS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;40 LSTP&lt;/P&gt;&lt;P&gt;PNTR&lt;/P&gt;&lt;P&gt;PN26&lt;/P&gt;&lt;P&gt;P2C2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 04:12:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494132#M1257123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T04:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494133#M1257124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         I am not getting this reply so if you give me a details of how to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 04:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494133#M1257124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T04:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494134#M1257125</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;You have the data in internal as below format..if you pass this to alv it displays in the same foramt..which is not your requiremnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example.&lt;/P&gt;&lt;P&gt;You have data in the internal table..&lt;/P&gt;&lt;P&gt;20 LNTP LSTP LNTP LTPS&lt;/P&gt;&lt;P&gt;40 LSTP PNTR PN26 P2C2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you take another internal table with two fields and populate it as shown below and build the fieldcataog for this and pass to ALV&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Line no.  FIELD
20        LNTP
          LSTP
          LNTP
          LTPS
          
40        LSTP
          PNTR
          PN26
          P2C2&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 04:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494134#M1257125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T04:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494135#M1257126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab into wa.
write:/ wa-lineno.
write: wa-lar01.
write:/ wa-lar02.
write:/ wa-lar03.
write:/ wa-lar04.
write: / .
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the way to do !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 05:16:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494135#M1257126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T05:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494136#M1257127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont think you can do that in alv report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Apr 2009 05:19:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494136#M1257127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-11T05:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Report Display Format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494137#M1257128</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;You can do this using a hierarchical sequential ALV, Provided you have a definite relation among the Header &amp;amp; Detail ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Divide your Data among Header &amp;amp; Detail and then try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use FM 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Apr 2009 04:23:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-report-display-format/m-p/5494137#M1257128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-12T04:23:41Z</dc:date>
    </item>
  </channel>
</rss>

