<?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: Put logo on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899222#M1481116</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 18 Sep 2010 09:43:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-18T09:43:22Z</dc:date>
    <item>
      <title>Put logo on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899219#M1481113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of code&lt;/SPAN&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;STRONG&gt;code i have done to put logo on selection screen. It works but problem is that same logo i am getting in result screen that i don't want.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Apr 30, 2010 10:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Apr 2010 10:42:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899219#M1481113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-30T10:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Put logo on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899220#M1481114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this code.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


DATA: docking_cont TYPE REF TO cl_gui_docking_container,
      cl_pic       TYPE REF TO cl_gui_picture,
      url(256)     TYPE c .

PARAMETERS:p_test TYPE c.


AT SELECTION-SCREEN OUTPUT.

  CREATE OBJECT cl_pic
         EXPORTING parent = docking_cont.

  CALL METHOD cl_pic-&amp;gt;set_3d_border
    EXPORTING
      border = 5.

  CALL METHOD cl_pic-&amp;gt;set_display_mode
    EXPORTING
      display_mode = cl_gui_picture=&amp;gt;display_mode_stretch.

  CALL METHOD cl_pic-&amp;gt;set_position
    EXPORTING
      height = 55
      left   = 750
      top    = 08
      width  = 350.

  CALL METHOD cl_pic-&amp;gt;load_picture_from_url
    EXPORTING
      url = 'C:\Documents and Settings\satyajit.mohapatra\Desktop\test'.


START-OF-SELECTION.
  WRITE p_test.

  CALL METHOD cl_pic-&amp;gt;set_visible
    EXPORTING
      visible           = ' '
    EXCEPTIONS
      cntl_error        = 1
      cntl_system_error = 2
      OTHERS            = 3.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use method SET_VISIBLE.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Apr 2010 13:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899220#M1481114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-30T13:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Put logo on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899221#M1481115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write the below LOGIC under AT Selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.
PERFORM show_pic.

*&amp;amp;---------------------------------------------------------------------
**&amp;amp; Form show_pic
*&amp;amp;---------------------------------------------------------------------
FORM show_pic.
CREATE OBJECT picture_control_1 EXPORTING parent = docking.
CHECK sy-subrc = 0.
CALL METHOD picture_control_1-&amp;gt;set_3d_border
EXPORTING
border = 5.

CALL METHOD picture_control_1-&amp;gt;set_display_mode
EXPORTING
display_mode = cl_gui_picture=&amp;gt;display_mode_stretch.
CALL METHOD picture_control_1-&amp;gt;set_position
EXPORTING
height = 55
left = 750
top = 08
width = 350.

CALL METHOD picture_control_1-&amp;gt;load_picture_from_url
EXPORTING
url = 'C:\zpic.gif'.

*here you give the path where your pic is stored on the desktop
IF sy-subrc NE 0.
ENDIF.
ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Apr 2010 13:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899221#M1481115</guid>
      <dc:creator>former_member206439</dc:creator>
      <dc:date>2010-04-30T13:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Put logo on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899222#M1481116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Sep 2010 09:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/put-logo-on-selection-screen/m-p/6899222#M1481116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-18T09:43:22Z</dc:date>
    </item>
  </channel>
</rss>

