<?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: Select-option Position in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780888#M336561</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 want to declare the select option in front of the initial one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i do that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Dec 2006 09:48:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-22T09:48:27Z</dc:date>
    <item>
      <title>Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780884#M336557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     How to position the select-options.&lt;/P&gt;&lt;P&gt;For example i have 6 select options.&lt;/P&gt;&lt;P&gt;I have to add 4 select options in front of the initial Second to fifth select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sel-op 1&lt;/P&gt;&lt;P&gt;Sel-op 2         Sel-op 7&lt;/P&gt;&lt;P&gt;Sel-op 3         Sel-op 8&lt;/P&gt;&lt;P&gt;Sel-op 4         Sel-op 9&lt;/P&gt;&lt;P&gt;Sel-op 5         Sel-op 10&lt;/P&gt;&lt;P&gt;Sel-op 6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780884#M336557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780885#M336558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The select-options wil appear in the order in which you have declared them.&lt;/P&gt;&lt;P&gt;Declare the extraa select options in the same order.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780885#M336558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780886#M336559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Select-options appear in the order you declare. So just declare them in the order you want them to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:43:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780886#M336559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780887#M336560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out this sample code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-h01.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_deta RADIOBUTTON GROUP g1 USER-COMMAND abc DEFAULT 'X'.
SELECTION-SCREEN COMMENT 5(30) text-c01 FOR FIELD p_deta.
PARAMETERS: p_summ RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 60(15) text-c02 FOR FIELD p_summ.
SELECTION-SCREEN END OF LINE.
SELECT-OPTIONS: s_dol FOR oiuh_rv_gl-gl_trans_am.
SELECT-OPTIONS: s_own FOR oiuh_cm_ba-ba_ba_no.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_strt RADIOBUTTON GROUP g1.
SELECTION-SCREEN COMMENT 5(30) text-c03 FOR FIELD p_strt.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_box1 LIKE oiuh_rv_gl-gl_trans_am,
            p_box2 LIKE oiuh_rv_gl-gl_trans_am,
            p_box3 LIKE oiuh_rv_gl-gl_trans_am,
            p_box4 LIKE oiuh_rv_gl-gl_trans_am,
            p_box5 LIKE oiuh_rv_gl-gl_trans_am.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:47:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780887#M336560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780888#M336561</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 want to declare the select option in front of the initial one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i do that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:48:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780888#M336561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780889#M336562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can do that .. you can put where ever you wnat them to be ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780889#M336562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780890#M336563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot have two select-options in the same line. YOu can have one after the other in the next line.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780890#M336563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780891#M336564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Rohith,&lt;/P&gt;&lt;P&gt;Try this sample code,Try to pass some text to text elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF BLOCK B06 WITH FRAME TITLE TEXT-040.
PARAMETERS: RAD_CONT  RADIOBUTTON GROUP RADA DEFAULT 'X'.
SELECT-OPTIONS: S_EBELN FOR EKKO-EBELN MATCHCODE OBJECT MEKK.
PARAMETERS: RAD_FILE  RADIOBUTTON GROUP RADA.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 10(70) TEXT-041.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 10(70) TEXT-045.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 10(70) TEXT-061.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B06.
SELECTION-SCREEN BEGIN OF BLOCK B05 WITH FRAME TITLE TEXT-031.
SELECTION-SCREEN BEGIN OF BLOCK KEY_BLOCK.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-003 FOR FIELD P_ANGDT.
PARAMETERS: P_ANGDT LIKE SY-DATUM OBLIGATORY.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-004 FOR FIELD P_EEIND.
PARAMETERS: P_EEIND LIKE SY-DATUM OBLIGATORY.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK KEY_BLOCK.
SELECTION-SCREEN BEGIN OF BLOCK PORG_COMP.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-005 FOR FIELD P_EKORG.
PARAMETERS: P_EKORG LIKE T024E-EKORG OBLIGATORY MEMORY ID EKO.
SELECTION-SCREEN COMMENT 55(18) TEXT-032 FOR FIELD P_NATCON.
PARAMETERS: P_NATCON AS CHECKBOX.
SELECTION-SCREEN END OF LINE.
* Begin of change SEK102002
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-062 FOR FIELD P_BUKRS.
PARAMETERS: P_BUKRS LIKE T024E-BUKRS.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK PORG_COMP.
* End of change SEK102002
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-006 FOR FIELD P_EKGRP.
PARAMETERS: P_EKGRP LIKE T024-EKGRP OBLIGATORY MEMORY ID EKG.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-007 FOR FIELD P_EKGRP.
PARAMETERS: P_BEDNR LIKE EKPO-BEDNR.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-044 FOR FIELD P_SUBMI.
PARAMETERS: P_SUBMI LIKE EKKO-SUBMI.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(40) TEXT-048 FOR FIELD P_INTERV.
PARAMETERS: P_INTERV LIKE EKPO-EBELP DEFAULT '00010'.
SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK B05.
SELECTION-SCREEN BEGIN OF BLOCK B01 WITH FRAME TITLE TEXT-022.
SELECT-OPTIONS: S_LIFNR FOR EKKO-LIFNR NO INTERVALS
                                      MATCHCODE OBJECT KRED.
SELECTION-SCREEN END OF BLOCK B01.
SELECTION-SCREEN BEGIN OF BLOCK B03 WITH FRAME TITLE TEXT-023.
PARAMETERS: RAD_ALL   RADIOBUTTON GROUP G1,              " ALL
            RAD_ERR   RADIOBUTTON GROUP G1 DEFAULT 'X'.  " ERRORS
SELECTION-SCREEN END OF BLOCK B03.

SELECTION-SCREEN BEGIN OF BLOCK B02 WITH FRAME TITLE TEXT-060.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(66) TEXT-051 FOR FIELD P_BCKEXL.
PARAMETERS: P_BCKEXL AS CHECKBOX.      "For spool list to download
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-052 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-053 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-054 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-055 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-056 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-057 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 01(70) TEXT-041.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B02.

SELECTION-SCREEN BEGIN OF BLOCK B09 WITH FRAME TITLE TEXT-008.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(66) TEXT-009 FOR FIELD P_DOALL.
PARAMETERS: P_DOALL AS CHECKBOX.       "For background submissions.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-019 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-047 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-049 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(70) TEXT-050 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B09.
*--Layout
SELECTION-SCREEN: BEGIN OF BLOCK B10 WITH FRAME TITLE TEXT-S02.
PARAMETERS:     P_LAYOUT LIKE DISVARIANT-VARIANT.
SELECTION-SCREEN: END OF BLOCK B10.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780891#M336564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780892#M336565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what can i understand from your question you want to show your selection screen at perticular position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-scree begin of block &amp;lt;.&amp;gt; with frame title &amp;lt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION pos. &lt;/P&gt;&lt;P&gt;selection-scree end of block &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 09:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780892#M336565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T09:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780893#M336566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi is right , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you cannot place select-options side by side ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yeah  you can place parameters if u want to ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : marc.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
parameters : p_werks like marc-werks.
SELECTION-SCREEN POSITION 20.
parameters: p_matnr like mara-matnr.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b2 .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//&lt;/P&gt;&lt;P&gt;For example i have 6 select options.&lt;/P&gt;&lt;P&gt;I have to add 4 select options in front of the initial Second to fifth select option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Sel-op 1&lt;/P&gt;&lt;P&gt;2.Sel-op 2 Sel-op 7&lt;/P&gt;&lt;P&gt;3.Sel-op 3 Sel-op 8&lt;/P&gt;&lt;P&gt;4.Sel-op 4 Sel-op 9&lt;/P&gt;&lt;P&gt;5.Sel-op 5 Sel-op 10&lt;/P&gt;&lt;P&gt;6.Sel-op 6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// i suppose 6  select options are there then sel op 2 and 7 refer to low and high of the data type .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then how can i equate sel 2 to the fifth  .. can u make this clear to use with ur declarations by presenting ur selection code ..&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>Fri, 22 Dec 2006 10:07:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780893#M336566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T10:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option Position</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780894#M336567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After many years.. but it can be helpful for somebody&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;REPORT&amp;nbsp; ZXXXXX.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt; &lt;SPAN class="L0S52"&gt;TABLES &lt;/SPAN&gt;sflight&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*SELECTION-SCREEN BEGIN OF BLOCK b001 WITH FRAME TITLE text-001.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;COMMENT &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;1&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;12&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;v_text1&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;POSITION &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;12&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT-OPTIONS &lt;/SPAN&gt;s_carrid &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;sflight&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;carrid&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;COMMENT &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;65&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;12&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;) &lt;/SPAN&gt;v_text2&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;POSITION &lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;77&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT-OPTIONS &lt;/SPAN&gt;s_connid &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;sflight&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;connid&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;END&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;LINE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;*SELECTION-SCREEN END&amp;nbsp;&amp;nbsp; OF BLOCK b001.&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;SPAN class="L0S52"&gt;AT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OUTPUT&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN class="L0S31"&gt;* It is better to use Text Symbols but for test propouse...&lt;/SPAN&gt;&lt;BR /&gt; v_text1 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Airline Code'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt; v_text2 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'Flight Connection Number'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/1004941" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2016 01:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-position/m-p/1780894#M336567</guid>
      <dc:creator>former_member312349</dc:creator>
      <dc:date>2016-07-29T01:07:00Z</dc:date>
    </item>
  </channel>
</rss>

