<?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 ALV HEADER in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2793687#M651927</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Experts!!&lt;/P&gt;&lt;P&gt;Is it possible to have a header in grid alv but the header wud be the value of that field??&lt;/P&gt;&lt;P&gt;example::&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;name&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;shine&lt;/P&gt;&lt;P&gt;jastine&lt;/P&gt;&lt;P&gt;raphael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shine , jastine , raphael would be my header in alv instead of using the fieldname.&lt;/P&gt;&lt;P&gt;could you help me guys on how to do this.&lt;/P&gt;&lt;P&gt;many points...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Sep 2007 02:40:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-17T02:40:01Z</dc:date>
    <item>
      <title>ALV HEADER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2793687#M651927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Experts!!&lt;/P&gt;&lt;P&gt;Is it possible to have a header in grid alv but the header wud be the value of that field??&lt;/P&gt;&lt;P&gt;example::&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;name&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;shine&lt;/P&gt;&lt;P&gt;jastine&lt;/P&gt;&lt;P&gt;raphael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shine , jastine , raphael would be my header in alv instead of using the fieldname.&lt;/P&gt;&lt;P&gt;could you help me guys on how to do this.&lt;/P&gt;&lt;P&gt;many points...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 02:40:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2793687#M651927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T02:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: ALV HEADER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2793688#M651928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya it is possible to give Grid name as field name&lt;/P&gt;&lt;P&gt;you can pass your field value to local variable and then send to grid object (heading)&lt;/P&gt;&lt;P&gt;check below code here in grid title we are printing :- &lt;/P&gt;&lt;P&gt;text-033 Program name&lt;/P&gt;&lt;P&gt;text-034  Date &lt;/P&gt;&lt;P&gt;text-035  Time &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM sub_set_table_display .&lt;/P&gt;&lt;P&gt;  DATA: lv_date TYPE c LENGTH 10 ,&lt;/P&gt;&lt;P&gt;        lv_time TYPE c LENGTH 8 ,&lt;/P&gt;&lt;P&gt;        lv_text TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Set table for First Display&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  &amp;lt;b&amp;gt;WRITE sy-datum TO lv_date DD/MM/YYYY.&lt;/P&gt;&lt;P&gt;  WRITE sy-uzeit TO lv_time USING EDIT MASK '__:__:__'.&lt;/P&gt;&lt;P&gt;  CONCATENATE text-033 text-034 lv_date text-035 lv_time INTO lv_text RESPECTING BLANKS.&lt;/P&gt;&lt;P&gt;  gs_layo-grid_title = lv_text.&lt;/P&gt;&lt;P&gt;  gs_layo-smalltitle = gc_flag .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF gs_variant-report IS INITIAL.&lt;/P&gt;&lt;P&gt;    gs_variant-report = sy-repid.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF NOT p_layout IS INITIAL.&lt;/P&gt;&lt;P&gt;    gs_variant-variant = p_layout.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD go_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      is_variant      = gs_variant&lt;/P&gt;&lt;P&gt;      i_save          = gc_save&lt;/P&gt;&lt;P&gt;      i_default       = abap_true&lt;/P&gt;&lt;P&gt;      is_layout       = gs_layo&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      it_outtab       = gt_final[]&lt;/P&gt;&lt;P&gt;      it_fieldcatalog = gt_fcat.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " sub_set_table_display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more detail check BCALV * OR RSDEMO * in SE38&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Minal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 02:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2793688#M651928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T02:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: ALV HEADER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2793689#M651929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi could you give me other sample.Assume that we dont know the expected value of that field.Meaning if i have field amount we dont know yet its value. then again its value would be my header in alv..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be rewarded...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 02:57:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-header/m-p/2793689#M651929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T02:57:03Z</dc:date>
    </item>
  </channel>
</rss>

