<?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: fbl5n in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbl5n/m-p/1819986#M350569</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 you need to add some info in Header of FBL5n, then you will need to modify the FM FI_ITEMS_DISPLAY bcos that is where the FMs REUSE_ALV_LIST_DISPLAY and REUSE_ALV_GRID_DISPLAY are used. you should do that in the TOP_OF_PAGE subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 28 Jan 2007 04:27:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-28T04:27:44Z</dc:date>
    <item>
      <title>fbl5n</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbl5n/m-p/1819985#M350568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to add header data in std pgm(z copy) lke fbl5n&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Jan 2007 03:10:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbl5n/m-p/1819985#M350568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-28T03:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: fbl5n</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbl5n/m-p/1819986#M350569</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 you need to add some info in Header of FBL5n, then you will need to modify the FM FI_ITEMS_DISPLAY bcos that is where the FMs REUSE_ALV_LIST_DISPLAY and REUSE_ALV_GRID_DISPLAY are used. you should do that in the TOP_OF_PAGE subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Jan 2007 04:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbl5n/m-p/1819986#M350569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-28T04:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: fbl5n</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fbl5n/m-p/1819987#M350570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi mahesh &lt;/P&gt;&lt;P&gt;i have modified the fm u have specified and i have added the code as&lt;/P&gt;&lt;P&gt;DATA: ls_listheader TYPE SLIS_LISTHEADER,&lt;/P&gt;&lt;P&gt;lt_listheader TYPE SLIS_T_LISTHEADER.&lt;/P&gt;&lt;P&gt;*it_h_kna1      type tpit_t_vkna1 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_kna1_1 like kna1 occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*select regio telf1 telfx from kna1 into corresponding fields of table&lt;/P&gt;&lt;P&gt;*h_kna1 where kunnr = it_items-kunnr.&lt;/P&gt;&lt;P&gt;select * from kna1 into corresponding fields of table it_kna1_1 where&lt;/P&gt;&lt;P&gt;kunnr = it_items-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_kna1_1.&lt;/P&gt;&lt;P&gt;read table it_kna1_1 with key kunnr = it_items-kunnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_listheader-KEY  = 'state'.&lt;/P&gt;&lt;P&gt;  LS_listheader-INFO =  it_kna1_1-regio.&lt;/P&gt;&lt;P&gt;  APPEND LS_listheader TO lt_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LS_listheader-KEY  = 'phone'.&lt;/P&gt;&lt;P&gt;  LS_listheader-INFO =  it_kna1_1-telf1.&lt;/P&gt;&lt;P&gt;  APPEND LS_listheader TO lt_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LS_listheader-KEY  = 'telfx'.&lt;/P&gt;&lt;P&gt;  LS_listheader-INFO =  it_kna1_1-telfx.&lt;/P&gt;&lt;P&gt;  APPEND LS_listheader TO lt_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even thn it s not displaying in the report&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 28 Jan 2007 04:55:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fbl5n/m-p/1819987#M350570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-28T04:55:38Z</dc:date>
    </item>
  </channel>
</rss>

