<?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: remove arrow from selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058159#M425056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add the NO-EXTENSION  to your SELECT-OPTIONS will remove the arrow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more complex control off the SELECT-OPTIONS you can use FM: SELECT_OPTIONS_RESTRICT where you can almost completelly control the options.&lt;/P&gt;&lt;P&gt;(Look at &amp;lt;a href="http://www.geocities.com/victorav15/sapr3/abapfun.html#screen"&amp;gt;SELECT_OPTIONS_RESTRICT&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 18 Mar 2007 10:33:39 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2007-03-18T10:33:39Z</dc:date>
    <item>
      <title>remove arrow from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058157#M425054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallow I have a arrow in my selection screen (for multiefile selection) and I wont to &amp;lt;b&amp;gt;remove&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;It from my selection screen how can I do that?&lt;/P&gt;&lt;P&gt;(i remove x from set_mode but its not working)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS c_course FOR pchdy-objid_str NO INTERVALS OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR c_course-low.&lt;/P&gt;&lt;P&gt;*======================================================&lt;/P&gt;&lt;P&gt;  REFRESH: c_course.&lt;/P&gt;&lt;P&gt;  CLEAR:  c_course.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM get_objid USING 'E '&lt;/P&gt;&lt;P&gt;                    CHANGING c_course-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR c_course-high.&lt;/P&gt;&lt;P&gt;*======================================================&lt;/P&gt;&lt;P&gt;  REFRESH: c_course.&lt;/P&gt;&lt;P&gt;  CLEAR:  c_course.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM get_objid USING 'E '&lt;/P&gt;&lt;P&gt;                    CHANGING c_course-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'RH_OBJID_REQUEST'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       plvar                   = '01'&lt;/P&gt;&lt;P&gt;       otype                   = p_otype&lt;/P&gt;&lt;P&gt;        seark                   = '*'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      seark_begda             = sy-datum&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      so_date-low&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      seark_endda             = sy-datum&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      so_date-high&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      set_mode                = 'X'   "When active moltefile selection&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPRO_REPID            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPRO_DYNNR            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPRO_PLVARFIELD       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPRO_OTYPEFIELD       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPRO_SEARKFIELD       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_PROG           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_FORM           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RESTRICT_FB             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RESTRICT_DATA           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITHOUT_RSIGN           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITHOUT_RELAT           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WITHOUT_SCLAS           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORGBEG                  = SY-DATUM&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ORGEND                  = SY-DATUM&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WIN_TITLE               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  APP_DATA                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;       sel_plvar               = wa_plvar&lt;/P&gt;&lt;P&gt;       sel_otype               = wa_otype&lt;/P&gt;&lt;P&gt;       sel_object              = wa_objid&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTYPE_TABLE             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CONDITION               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  BASE_OBJECTS            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MARKED_OBJECTS          =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     sel_objects             = itab_object&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEL_HROBJECT_TAB        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEL_HRSOBID_TAB         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       cancelled               = 1&lt;/P&gt;&lt;P&gt;       wrong_condition         = 2&lt;/P&gt;&lt;P&gt;       nothing_found           = 3&lt;/P&gt;&lt;P&gt;       internal_error          = 4&lt;/P&gt;&lt;P&gt;       illegal_mode            = 5&lt;/P&gt;&lt;P&gt;       OTHERS                  = 6&lt;/P&gt;&lt;P&gt;              .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF wa_otype = 'E' .&lt;/P&gt;&lt;P&gt;    REFRESH: c_course.&lt;/P&gt;&lt;P&gt;    CLEAR:  c_course.&lt;/P&gt;&lt;P&gt;    LOOP AT itab_object.&lt;/P&gt;&lt;P&gt;      CLEAR c_course.&lt;/P&gt;&lt;P&gt;      c_course-low    = itab_object-objid.&lt;/P&gt;&lt;P&gt;      c_course-option = 'EQ'.&lt;/P&gt;&lt;P&gt;      c_course-sign   = 'I'.&lt;/P&gt;&lt;P&gt;      APPEND c_course.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    CLEAR:   itab_object.&lt;/P&gt;&lt;P&gt;    REFRESH: itab_object.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 10:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058157#M425054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-18T10:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: remove arrow from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058158#M425055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;To remove arrow from the selection screen u can write...&lt;/P&gt;&lt;P&gt;"SELECT-OPTIONS c_course FOR pchdy-objid_str NO-EXTENSION &lt;/P&gt;&lt;P&gt; NO INTERVALS OBLIGATORY"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 10:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058158#M425055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-18T10:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: remove arrow from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058159#M425056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add the NO-EXTENSION  to your SELECT-OPTIONS will remove the arrow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more complex control off the SELECT-OPTIONS you can use FM: SELECT_OPTIONS_RESTRICT where you can almost completelly control the options.&lt;/P&gt;&lt;P&gt;(Look at &amp;lt;a href="http://www.geocities.com/victorav15/sapr3/abapfun.html#screen"&amp;gt;SELECT_OPTIONS_RESTRICT&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 10:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058159#M425056</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-03-18T10:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: remove arrow from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058160#M425057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Declare the select-options as follows&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS c_course FOR pchdy-objid_str NO-EXTENSION &lt;/P&gt;&lt;P&gt;NO INTERVALS OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 10:39:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058160#M425057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-18T10:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: remove arrow from selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058161#M425058</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;Use in your program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS c_course FOR pchdy-objid_str NO-EXTENSION NO INTERVALS OBLIGATORY.&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;Sasmita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 12:02:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-arrow-from-selection-screen/m-p/2058161#M425058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-18T12:02:35Z</dc:date>
    </item>
  </channel>
</rss>

