<?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: Selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3553168#M854912</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;Try this.It may give you some lead.&lt;/P&gt;&lt;P&gt;REPORT  Zf13                                 .&lt;/P&gt;&lt;P&gt;DATA:docking TYPE REF TO cl_gui_docking_container,&lt;/P&gt;&lt;P&gt;picture_control_1 TYPE REF TO cl_gui_picture,&lt;/P&gt;&lt;P&gt;url(256) TYPE c .&lt;/P&gt;&lt;P&gt;DATA : begin of imakt occurs 0,&lt;/P&gt;&lt;P&gt;       matnr like makt-matnr,&lt;/P&gt;&lt;P&gt;       spras like makt-spras,&lt;/P&gt;&lt;P&gt;       maktx like makt-maktx,&lt;/P&gt;&lt;P&gt;       end of imakt.&lt;/P&gt;&lt;P&gt;DATA: itrepid LIKE sy-repid.&lt;/P&gt;&lt;P&gt;itrepid = sy-repid.&lt;/P&gt;&lt;P&gt;parameters:p_matnr like makt-matnr.&lt;/P&gt;&lt;P&gt;select matnr spras maktx from makt into table imakt where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;loop at imakt.&lt;/P&gt;&lt;P&gt;write:/ imakt-matnr,&lt;/P&gt;&lt;P&gt;        imakt-spras,&lt;/P&gt;&lt;P&gt;        imakt-maktx.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;PERFORM show_pic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Form show_pic&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM show_pic.&lt;/P&gt;&lt;P&gt;CREATE OBJECT picture_control_1 EXPORTING parent = docking.&lt;/P&gt;&lt;P&gt;CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_3d_border&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;border = 5.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_display_mode&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;display_mode = cl_gui_picture=&amp;gt;display_mode_stretch.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_position&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;height = 55&lt;/P&gt;&lt;P&gt;left = 750&lt;/P&gt;&lt;P&gt;top = 08&lt;/P&gt;&lt;P&gt;width = 350.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;load_picture_from_url&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;url = 'C:\zpic.gif'.&lt;/P&gt;&lt;P&gt;*here you give the path where your pic is stored on the desktop&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Mar 2008 06:37:26 GMT</pubDate>
    <dc:creator>kiran_k8</dc:creator>
    <dc:date>2008-03-15T06:37:26Z</dc:date>
    <item>
      <title>Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3553167#M854911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;    i hav copied a standard program to z...&lt;/P&gt;&lt;P&gt;client req is to insert company logo in selection screen..&lt;/P&gt;&lt;P&gt;Can any1 guide me with code?&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2008 06:27:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3553167#M854911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-15T06:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3553168#M854912</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;Try this.It may give you some lead.&lt;/P&gt;&lt;P&gt;REPORT  Zf13                                 .&lt;/P&gt;&lt;P&gt;DATA:docking TYPE REF TO cl_gui_docking_container,&lt;/P&gt;&lt;P&gt;picture_control_1 TYPE REF TO cl_gui_picture,&lt;/P&gt;&lt;P&gt;url(256) TYPE c .&lt;/P&gt;&lt;P&gt;DATA : begin of imakt occurs 0,&lt;/P&gt;&lt;P&gt;       matnr like makt-matnr,&lt;/P&gt;&lt;P&gt;       spras like makt-spras,&lt;/P&gt;&lt;P&gt;       maktx like makt-maktx,&lt;/P&gt;&lt;P&gt;       end of imakt.&lt;/P&gt;&lt;P&gt;DATA: itrepid LIKE sy-repid.&lt;/P&gt;&lt;P&gt;itrepid = sy-repid.&lt;/P&gt;&lt;P&gt;parameters:p_matnr like makt-matnr.&lt;/P&gt;&lt;P&gt;select matnr spras maktx from makt into table imakt where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;loop at imakt.&lt;/P&gt;&lt;P&gt;write:/ imakt-matnr,&lt;/P&gt;&lt;P&gt;        imakt-spras,&lt;/P&gt;&lt;P&gt;        imakt-maktx.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;PERFORM show_pic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Form show_pic&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM show_pic.&lt;/P&gt;&lt;P&gt;CREATE OBJECT picture_control_1 EXPORTING parent = docking.&lt;/P&gt;&lt;P&gt;CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_3d_border&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;border = 5.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_display_mode&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;display_mode = cl_gui_picture=&amp;gt;display_mode_stretch.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;set_position&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;height = 55&lt;/P&gt;&lt;P&gt;left = 750&lt;/P&gt;&lt;P&gt;top = 08&lt;/P&gt;&lt;P&gt;width = 350.&lt;/P&gt;&lt;P&gt;CALL METHOD picture_control_1-&amp;gt;load_picture_from_url&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;url = 'C:\zpic.gif'.&lt;/P&gt;&lt;P&gt;*here you give the path where your pic is stored on the desktop&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2008 06:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3553168#M854912</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-03-15T06:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3553169#M854913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tx for immediate reply&lt;/P&gt;&lt;P&gt;executed ur code , border is visible in selection screen but nt able to view any img tat i created n stored as gif image in c drive...&lt;/P&gt;&lt;P&gt;wat steps shud b done to get image...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2008 07:12:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3553169#M854913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-15T07:12:58Z</dc:date>
    </item>
  </channel>
</rss>

