<?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: header in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646716#M1093630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi aks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;write: / (no. of columns after you want to write your header)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnxs and regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sachin sharma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;njoy day!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Oct 2008 05:46:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-17T05:46:24Z</dc:date>
    <item>
      <title>header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646713#M1093627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii,&lt;/P&gt;&lt;P&gt;how to align the heading of output.&lt;/P&gt;&lt;P&gt;i want the heading in center.&lt;/P&gt;&lt;P&gt;i used SLIS_T_LISTHEADER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 05:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646713#M1093627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T05:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646714#M1093628</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;if the line size of ur report is 80 (say) , then u can use the wtite statement in top of list as write (40) 'header'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reggards,&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 05:29:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646714#M1093628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T05:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646715#M1093629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u should use it only in this order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Report title&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear t_heading[].&lt;/P&gt;&lt;P&gt;  clear x_heading.&lt;/P&gt;&lt;P&gt;  x_heading-typ = 'H'.&lt;/P&gt;&lt;P&gt;  x_heading-info = 'AKBOSS'(001).&lt;/P&gt;&lt;P&gt;  append x_heading to t_heading.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Program name&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear x_heading.&lt;/P&gt;&lt;P&gt;  x_heading-typ = 'S'.&lt;/P&gt;&lt;P&gt;  x_heading-key = 'Program: '.&lt;/P&gt;&lt;P&gt;  x_heading-info = sy-repid.&lt;/P&gt;&lt;P&gt;  append x_heading to t_heading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;User who is running the report&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear x_heading.&lt;/P&gt;&lt;P&gt;  x_heading-typ = 'A'.&lt;/P&gt;&lt;P&gt;    x_heading-info = sy-uname.&lt;/P&gt;&lt;P&gt;  append x_heading to t_heading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u replace the order also, only header will trigger first. so it is not possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 05:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646715#M1093629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T05:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646716#M1093630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi aks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;write: / (no. of columns after you want to write your header)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnxs and regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sachin sharma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;njoy day!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 05:46:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646716#M1093630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T05:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646717#M1093631</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; To get heading in center use html_top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code will be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM html_top_of_page USING top TYPE REF TO cl_dd_document.

  DATA: l_text(255) TYPE c.
  DATA: text1(255)  TYPE c.
  DATA: t_header TYPE REF TO cl_dd_table_element ,
        wa_header TYPE REF TO cl_dd_table_area.

  CALL METHOD top-&amp;gt;add_gap ---&amp;gt;USED TO GIVE THE DESIRED GAP
    EXPORTING
      width = 10.


  CALL METHOD top-&amp;gt;add_text
    EXPORTING
      text          = '&amp;lt;YOUR TEXT GOES HERE&amp;gt;'
*    text_table    = wa_header
*    fix_lines     =
      sap_style     = 'HEADING'
      sap_color     = cl_dd_document=&amp;gt;list_heading_int
      sap_fontsize  = 'MEDIUM'
      sap_fontstyle = 'ARIAL'
      sap_emphasis  = cl_dd_document=&amp;gt;strong.
*    style_class   =
*  CHANGING
*    document      =
   ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND PASS IT TO :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
*   I_INTERFACE_CHECK                 = ' '
*   I_BYPASSING_BUFFER                = ' '
*   I_BUFFER_ACTIVE                   = ' '
  i_callback_program                = sy-repid
   i_callback_pf_status_set          = 'SET_STANDARD'
   i_callback_user_command           = 'USER_COMMAND'
*   I_CALLBACK_TOP_OF_PAGE            = ' '
   i_callback_html_top_of_page       = 'HTML_TOP_OF_PAGE'
.
.
.
.
.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 05:48:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646717#M1093631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T05:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646718#M1093632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi shan,&lt;/P&gt;&lt;P&gt;wats this (001)  do in your code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks all of u..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: aks on Oct 17, 2008 2:24 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: aks on Oct 17, 2008 2:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2008 06:24:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header/m-p/4646718#M1093632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-17T06:24:31Z</dc:date>
    </item>
  </channel>
</rss>

