<?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 Printing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724583#M316038</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;TOP_OF_LIST is work at screen and is printed as you say, but I still having a problem... I need to make two different columns at the header and I don't know if it's possible with this type of header. If it's possible, how can I do it? If not, what can I do then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Nov 2006 12:55:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-07T12:55:35Z</dc:date>
    <item>
      <title>ALV Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724579#M316034</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;I've an ALV report with header and detail. When I print it, only shows the detail. Until now I used &amp;lt;i&amp;gt;i_callback_html_top_of_page&amp;lt;/i&amp;gt; parameter at function REUSE_ALV_GRID_DISPLAY, but if I change to parameter &amp;lt;i&amp;gt;i_callback_top_of_page&amp;lt;/i&amp;gt;, it shows me the header also when I print...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, I want to know differences between these two types of parameters and benefits from use one or another. I saw that html type works with objects and the other not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oscar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 14:52:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724579#M316034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T14:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724580#M316035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I_CALLBACK_HTML_TOP_OF_PAGE is used when we want to show the text in HTML format or Online.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If function module REUSE_ALV_COMMENTARY_WRITE is not used in the form for I_CALLBACK_TOP_OF_PAGE, the form routine must be passed in parameter I_CALLBACK_HTML_TOP_OF_PAGE for the online mode. The form should then have the following format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form top_of_page using cl_dd type ref to cl_dd_document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the form, you can, for example, use methods of class CL_DD_DOCUMENT to display text in HTML format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 05:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724580#M316035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T05:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724581#M316036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what says at help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that I used I_CALLBACK_HTML_TOP_OF_PAGE because in header I put 2 different columns, but when I try to list it, it not shows the header. Instead, if I use &lt;U&gt;CALLBACK&lt;/U&gt;TOP_OF_PAGE I don't know if it is possible to format header to allow put text in columns... Is it possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 07:27:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724581#M316036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T07:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724582#M316037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oscar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write the header also in event 'TOP_OF_LIST' in ALV.&lt;/P&gt;&lt;P&gt;The contents that you have written in this event will not be displayed on the screen but will get printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way your contents in I_CALLBACK_HTML_TOP_OF_PAGE will be displayed on the screen but not printed. And the contents in the event 'TOP_OF_LIST' will not be displayed on screen but will get printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had also faced this problem and had done this to resolve the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;P&gt;*Mark all helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Nov 2006 09:36:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724582#M316037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-01T09:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724583#M316038</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;TOP_OF_LIST is work at screen and is printed as you say, but I still having a problem... I need to make two different columns at the header and I don't know if it's possible with this type of header. If it's possible, how can I do it? If not, what can I do then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Nov 2006 12:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-printing/m-p/1724583#M316038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-07T12:55:35Z</dc:date>
    </item>
  </channel>
</rss>

