<?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: ALV Header in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308211#M792314</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and finally you should use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            it_list_commentary = lt_header&lt;/P&gt;&lt;P&gt;in the top-of-page-form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the ample documentation for this function module or see the where-used-list especially for B* programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Jan 2008 14:18:14 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2008-01-25T14:18:14Z</dc:date>
    <item>
      <title>ALV Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308208#M792311</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;I want title in the list display of an alv report.&lt;/P&gt;&lt;P&gt;i got it in the grid display but not in list display.&lt;/P&gt;&lt;P&gt;can anybody help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 13:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308208#M792311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T13:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308209#M792312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you want to display a header in a ALV output. the req is that i have to display it in a single line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the line contains a standard text (typ S) and also a field value (typ A).&lt;/P&gt;&lt;P&gt;example, Pay results from 01.01.2007 to 31.01.2007.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this i give one idea try like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take an varible as string and concatenate standrade text and date and print it on header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********************************************************&lt;/P&gt;&lt;P&gt;concatenater standred text datefielld into v_vari seperated by space&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;here (standred text datefielld) are the fields you are using&lt;/STRONG&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LISTHEAD-TYP = 'H'.&lt;/P&gt;&lt;P&gt;LISTHEAD-INFO = v_vari.&lt;/P&gt;&lt;P&gt;APPEND LISTHEAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********************************************************&lt;/P&gt;&lt;P&gt;try like this this may be help full to you .&lt;/P&gt;&lt;P&gt;reward points if help full .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 13:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308209#M792312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T13:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308210#M792313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try follwong code hope it will be helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA_listheader TYPE slis_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH p_i_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR WA_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_listheader-typ = 'H'.   "Header&lt;/P&gt;&lt;P&gt;  WA_listheader-info = 'company name'&lt;/P&gt;&lt;P&gt;  APPEND WA_listheader TO p_i_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_listheader-typ = 'S'.&lt;/P&gt;&lt;P&gt;  WA_listheader-key = 'DATE'.&lt;/P&gt;&lt;P&gt;  WA_listheader-info = sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND WA_listheader TO p_i_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WA_listheader-typ = 'S'.&lt;/P&gt;&lt;P&gt;  WA_listheader-key = 'PAGE NO.'.&lt;/P&gt;&lt;P&gt;  WA_listheader-info = sy-pagno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND WA_listheader TO p_i_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then just use wa_layout in import parameters of ur grid display FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keep rockin&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vivek gaur on Jan 25, 2008 2:13 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 13:09:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308210#M792313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T13:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308211#M792314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and finally you should use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            it_list_commentary = lt_header&lt;/P&gt;&lt;P&gt;in the top-of-page-form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the ample documentation for this function module or see the where-used-list especially for B* programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 14:18:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308211#M792314</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2008-01-25T14:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308212#M792315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all&lt;/P&gt;&lt;P&gt;anyway, i got the solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2008 14:01:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/3308212#M792315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-28T14:01:47Z</dc:date>
    </item>
  </channel>
</rss>

