<?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: How do I insert a logo in ALV using Function Modules? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199570#M130682</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi raghavendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it solved ur problem,&lt;/P&gt;&lt;P&gt;pls reward the points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jan 2006 09:40:33 GMT</pubDate>
    <dc:creator>hymavathi_oruganti</dc:creator>
    <dc:date>2006-01-18T09:40:33Z</dc:date>
    <item>
      <title>How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199563#M130675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai ! &lt;/P&gt;&lt;P&gt;       i want to display the logo on the grid . &lt;/P&gt;&lt;P&gt;    can any one suggest me which function i should use?&lt;/P&gt;&lt;P&gt;    any  help will be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 05:38:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199563#M130675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-18T05:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199564#M130676</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;Look at the sample code to display LOGO.&lt;/P&gt;&lt;P&gt;**********************&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;       i_callback_program      = i_repid&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       i_callback_user_command = 'USER_COMMAND_PERNR'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       it_fieldcat             = header&lt;/P&gt;&lt;P&gt;       is_layout               = gt_layout&lt;/P&gt;&lt;P&gt;       i_callback_top_of_page  = 'TOP-OF-PAGE1'&lt;/P&gt;&lt;P&gt;       i_grid_title            = xyz&lt;/P&gt;&lt;P&gt;       it_sort                 = gt_sort[]&lt;/P&gt;&lt;P&gt;       i_default               = 'X'&lt;/P&gt;&lt;P&gt;       i_save                  = 'U'&lt;/P&gt;&lt;P&gt;       is_variant              = gt_variant&lt;/P&gt;&lt;P&gt;       it_events               = gt_events&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;       t_outtab                = t_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear t_output.&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Form TOP-OF-PAGE1&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form top-of-page1.&lt;/P&gt;&lt;P&gt;  data: header type slis_t_listheader,&lt;/P&gt;&lt;P&gt;  wa type slis_listheader. "infield like wa-info, nline type n.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; TITLE AREA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;  wa-info = text-h04.&lt;/P&gt;&lt;P&gt;  append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;  write sy-datum to wa-info mm/dd/yyyy.&lt;/P&gt;&lt;P&gt;  concatenate text-h03 wa-info into wa-info separated by space.&lt;/P&gt;&lt;P&gt;  append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;  concatenate text-h02 sy-uname into wa-info separated by space.&lt;/P&gt;&lt;P&gt;  append wa to header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa-typ = 'S'.&lt;/P&gt;&lt;P&gt;  concatenate text-h01 sy-repid into wa-info separated by space.&lt;/P&gt;&lt;P&gt;  append wa to header.&lt;/P&gt;&lt;P&gt;********" LOGO&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 = header&lt;/P&gt;&lt;P&gt;            i_logo             = 'ENJOYSAP_LOGO'.&lt;/P&gt;&lt;P&gt;*********" LOGO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here in TOP-OF-PAGE form it will show you the Prog name,Date, User Name.&lt;/P&gt;&lt;P&gt;Just you need to give the text in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer the below link also.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;If this helps you reward with points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: KDeepak&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 05:42:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199564#M130676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-18T05:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199565#M130677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi use this FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REUSE_ALV_COMMENTARY_WRITE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 05:42:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199565#M130677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-18T05:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199566#M130678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghavendra kulkarni,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By using FM 'REUSE_ALV_COMMENTARY_WRITE', u r able to insert logo  in ALV Grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Digesh Panchal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 05:54:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199566#M130678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-18T05:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199567#M130679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kulkami,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use "REUSE_ALV_COMMENTARY_WRITE" function module to display your ALV, you can automatically insert your logo to the header. You can define the name of logo file which must be stored in SAP Web Repository Tcode: SMW0 , at the event "TOP_OF_PAGE" .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Example&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM TOP_OF_PAGE.&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;I_LOGO = 'ENJOYSAP_LOGO'&lt;/P&gt;&lt;P&gt;IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: The logo can not be printed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using the OO version of the ALV Grid Control i.e. an instance of the class "cl_gui_alv_grid", there is no automatic way. &lt;/P&gt;&lt;P&gt;But independent from the ALV Grid, you can put in your screen a custom control which will be related to a "cl_gui_picture" object showing pictures in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the "REUSE..." version, inspect the demo "BCALV_FULLSCREEN_DEMO"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see following links for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="24045"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="25616"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="22613"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont forget to reward  pts, if it helps ;&amp;gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rakesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 05:59:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199567#M130679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-18T05:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199568#M130680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, to insert a logo u have to use fn module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REUSE_ALV_COMMENTARY_WRITE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SEE THE EXAMPLE,&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;/P&gt;&lt;P&gt;   I_LOGO                   = 'MY_SAP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MY_SAP SHOULD BE UPLOADED INTO APPLICATION SERVER USING TRANSACTION 'OAER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goto 'OAER'.&lt;/P&gt;&lt;P&gt;GIVE CLASS NAME "PICTURES"&lt;/P&gt;&lt;P&gt;CLASS TYPE "OT".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GO INSIDE , U WILL FIND OPTION TO UPLOAD LOGO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ONCE THE LOGO IS IN THE APPLICATION SERVER,&lt;/P&gt;&lt;P&gt;U CAN CALL THE FN MODULE.&lt;/P&gt;&lt;P&gt;NO NEED TO GIVE PATH, JUST GIVE THE NAME OF LOGO U HAVE GIVEN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 08:28:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199568#M130680</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-01-18T08:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199569#M130681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot it really solved my problem.thanks a lot.&lt;/P&gt;&lt;P&gt;by d by i am a raghu. how are u?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 09:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199569#M130681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-18T09:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199570#M130682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi raghavendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it solved ur problem,&lt;/P&gt;&lt;P&gt;pls reward the points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 09:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199570#M130682</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-01-18T09:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I insert a logo in ALV using Function Modules?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199571#M130683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For any ALV related query first you can check &amp;lt;b&amp;gt;SLIS&amp;lt;/b&amp;gt; Development class , it has many beautiful examples .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope This Info Helps YOU.&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&lt;/P&gt;&lt;P&gt;Reward Points If It Helps YOU.&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2006 11:05:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-do-i-insert-a-logo-in-alv-using-function-modules/m-p/1199571#M130683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-18T11:05:44Z</dc:date>
    </item>
  </channel>
</rss>

