<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208208#M1005679</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the parameter Sai ? I guess your requirement is to convert that SELECT-OPTION to PARAMETER. You have to use the PARAMETERS for that. Go to Transaction ABAPDOCU to read the documentation on PARAMETERS. Also u need to change your code accordingly if you use PARAMETERS. You can suppress that otherwise by removing the NO INTERVALS and EXTENSION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sai Krishna Kowluri on Jul 23, 2008 8:50 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jul 2008 06:50:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-23T06:50:05Z</dc:date>
    <item>
      <title>Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208205#M1005676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guy's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presently requirement is like this: to convert the parameter as a select-options:&lt;/P&gt;&lt;P&gt;please help me where i did change the code.  i worked to change this senario in 'changed document.&lt;/P&gt;&lt;P&gt;it is urgent to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Actual Development&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: sfictr FOR fmfctr-fictr NO INTERVALS NO-EXTENSION.------This is a parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT sfictr-low IS INITIAL.&lt;/P&gt;&lt;P&gt;    IF sub = ' '.                      " No subordinates&lt;/P&gt;&lt;P&gt;      i_fcsel-sign = 'I'.&lt;/P&gt;&lt;P&gt;      i_fcsel-option = 'EQ'.&lt;/P&gt;&lt;P&gt;      i_fcsel-low = sfictr-low.&lt;/P&gt;&lt;P&gt;      APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'Z_HR_GET_FUND_CENTERS'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          z_fund_center         = sfictr-low&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          z_fundctrs            = i_fcsel&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          fund_center_not_valid = 1&lt;/P&gt;&lt;P&gt;          other_error           = 2&lt;/P&gt;&lt;P&gt;          OTHERS                = 3.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        i_fcsel-sign = 'I'.  i_fcsel-option = 'EQ'.&lt;/P&gt;&lt;P&gt;        i_fcsel-low = sfictr-low.&lt;/P&gt;&lt;P&gt;        APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; *******   ********   Get all the fund centers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT i_fcsel.&lt;/P&gt;&lt;P&gt;    WRITE i_fcsel-low TO kostl_temp RIGHT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    OVERLAY kostl_temp WITH '0000000000'.&lt;/P&gt;&lt;P&gt;    i_fcsel-low = kostl_temp.&lt;/P&gt;&lt;P&gt;    MODIFY i_fcsel.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Changed Devlopment&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select-options : sfictr FOR fmfctr-fictr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SFICTR.&lt;/P&gt;&lt;P&gt;    IF  SFICTR-low &amp;lt;&amp;gt; space.&lt;/P&gt;&lt;P&gt;    select fictr&lt;/P&gt;&lt;P&gt;           into table it_fc&lt;/P&gt;&lt;P&gt;           from fmfctr&lt;/P&gt;&lt;P&gt;           where fikrs = 'WBG1'&lt;/P&gt;&lt;P&gt;           and fictr in SFICTR.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;loop at it_fc into it_fc.&lt;/P&gt;&lt;P&gt;  CLEAR i_fcsel[] .&lt;/P&gt;&lt;P&gt;  REFRESH i_fcsel[].&lt;/P&gt;&lt;P&gt;  IF NOT SFICTR[] IS INITIAL .&lt;/P&gt;&lt;P&gt;    IF sub = ' '.                    &lt;/P&gt;&lt;P&gt;      i_fcsel-option = 'BT'.         &lt;/P&gt;&lt;P&gt;      i_fcsel-low = sfictr-low.&lt;/P&gt;&lt;P&gt;      i_fcsel-high = sfictr-high.    &lt;/P&gt;&lt;P&gt;      APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'Z_HR_GET_FUND_CENTERS'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          z_fund_center         = it_fc-fictr&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          z_fundctrs            = i_fcsel&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          fund_center_not_valid = 1&lt;/P&gt;&lt;P&gt;          other_error           = 2&lt;/P&gt;&lt;P&gt;          OTHERS                = 3.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        i_fcsel-sign = 'I'.  i_fcsel-option = 'BT'.&lt;/P&gt;&lt;P&gt;        i_fcsel-low = it_fc-fictr.                            &lt;/P&gt;&lt;P&gt;        APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; *******   ********   Get all the fund centers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT i_fcsel.&lt;/P&gt;&lt;P&gt;    WRITE i_fcsel-low TO kostl_temp RIGHT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    OVERLAY kostl_temp WITH '0000000000'.&lt;/P&gt;&lt;P&gt;    i_fcsel-low = kostl_temp.&lt;/P&gt;&lt;P&gt;    MODIFY i_fcsel.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sai.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 06:43:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208205#M1005676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T06:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208206#M1005677</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;&lt;/P&gt;&lt;P&gt;Changed Devlopment&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select-options : sfictr FOR fmfctr-fictr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SFICTR.&lt;/P&gt;&lt;P&gt;(changes ..)&lt;/P&gt;&lt;P&gt;IF not sfictr is initial .&lt;/P&gt;&lt;P&gt;select fictr&lt;/P&gt;&lt;P&gt;into table it_fc&lt;/P&gt;&lt;P&gt;from fmfctr&lt;/P&gt;&lt;P&gt;where fikrs = 'WBG1'&lt;/P&gt;&lt;P&gt;and fictr in SFICTR.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;loop at it_fc into it_fc.&lt;/P&gt;&lt;P&gt;CLEAR i_fcsel[] .&lt;/P&gt;&lt;P&gt;REFRESH i_fcsel[].&lt;/P&gt;&lt;P&gt;IF NOT SFICTR[] IS INITIAL .&lt;/P&gt;&lt;P&gt;IF sub = ' '. &lt;/P&gt;&lt;P&gt;i_fcsel-option = 'BT'. &lt;/P&gt;&lt;P&gt;i_fcsel-low = sfictr-low.&lt;/P&gt;&lt;P&gt;i_fcsel-high = sfictr-high. &lt;/P&gt;&lt;P&gt;APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_HR_GET_FUND_CENTERS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;z_fund_center = it_fc-fictr&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;z_fundctrs = i_fcsel&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;fund_center_not_valid = 1&lt;/P&gt;&lt;P&gt;other_error = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;i_fcsel-sign = 'I'. i_fcsel-option = 'BT'.&lt;/P&gt;&lt;P&gt;i_fcsel-low = it_fc-fictr. &lt;/P&gt;&lt;P&gt;APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="7" type="ul"&gt;&lt;P&gt;******** Get all the fund centers &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT i_fcsel.&lt;/P&gt;&lt;P&gt;WRITE i_fcsel-low TO kostl_temp RIGHT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;OVERLAY kostl_temp WITH '0000000000'.&lt;/P&gt;&lt;P&gt;i_fcsel-low = kostl_temp.&lt;/P&gt;&lt;P&gt;MODIFY i_fcsel.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 06:44:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208206#M1005677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T06:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208207#M1005678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just remove no interval and no extension from your select-option...dont need to do any other changes in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: sfictr FOR fmfctr-fictr  &lt;STRONG&gt;REMOVE THIS NO INTERVALS NO-EXTENSION.------This is a parameter&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 06:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208207#M1005678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T06:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208208#M1005679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the parameter Sai ? I guess your requirement is to convert that SELECT-OPTION to PARAMETER. You have to use the PARAMETERS for that. Go to Transaction ABAPDOCU to read the documentation on PARAMETERS. Also u need to change your code accordingly if you use PARAMETERS. You can suppress that otherwise by removing the NO INTERVALS and EXTENSION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sai Krishna Kowluri on Jul 23, 2008 8:50 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 06:50:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208208#M1005679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T06:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208209#M1005680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I removed NO INTERVALS NO-EXTENSION. after execution of this program gives the same output as in parameter.  It is not considering the range values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me where i need to change the in report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: sfictr FOR fmfctr-fictr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT sfictr-low IS INITIAL.&lt;/P&gt;&lt;P&gt;    IF sub = ' '.                      " No subordinates&lt;/P&gt;&lt;P&gt;      i_fcsel-sign = 'I'.&lt;/P&gt;&lt;P&gt;      i_fcsel-option = 'EQ'.&lt;/P&gt;&lt;P&gt;      i_fcsel-low = sfictr-low.&lt;/P&gt;&lt;P&gt;      APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'Z_HR_GET_FUND_CENTERS'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          z_fund_center         = sfictr-low&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          z_fundctrs            = i_fcsel&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          fund_center_not_valid = 1&lt;/P&gt;&lt;P&gt;          other_error           = 2&lt;/P&gt;&lt;P&gt;          OTHERS                = 3.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        i_fcsel-sign = 'I'.  i_fcsel-option = 'EQ'.&lt;/P&gt;&lt;P&gt;        i_fcsel-low = sfictr-low.&lt;/P&gt;&lt;P&gt;        APPEND i_fcsel.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; *******   ********   Get all the fund centers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT i_fcsel.&lt;/P&gt;&lt;P&gt;    WRITE i_fcsel-low TO kostl_temp RIGHT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    OVERLAY kostl_temp WITH '0000000000'.&lt;/P&gt;&lt;P&gt;    i_fcsel-low = kostl_temp.&lt;/P&gt;&lt;P&gt;    MODIFY i_fcsel.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sai.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 07:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/4208209#M1005680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T07:46:17Z</dc:date>
    </item>
  </channel>
</rss>

