<?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: Regarding Select-option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070510#M973142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can use at selection-screen on upper and lower limits of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 08:19:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T08:19:21Z</dc:date>
    <item>
      <title>Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070503#M973135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Provide validation in selection screen to restrict the users to enter only four digit account codes. Provide dropdown functionality to show the four digit statutory accounts list to allow users to select the required account from the list. When four digit account code is entered, select all the related six and eight digit account codes. Get all the accounting data for the selected accounts and diplay the data based on the level entered in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards will be given.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 05:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070503#M973135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T05:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070504#M973136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;either use some search-help or do programming in AT SELECTION-SCREEN OUTPUT event&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 05:39:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070504#M973136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T05:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070505#M973137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;take the 4 digit numbers into a seperate internal&lt;/P&gt;&lt;P&gt;table then pass it to the bellow fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    ENDPOS_COL         = 85&lt;/P&gt;&lt;P&gt;    ENDPOS_ROW         = 15&lt;/P&gt;&lt;P&gt;    STARTPOS_COL       = 35&lt;/P&gt;&lt;P&gt;    STARTPOS_ROW       = 6&lt;/P&gt;&lt;P&gt;    TITLETEXT          = 'Title'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   CHOISE             = ITAB&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    VALUETAB           = IKNA1&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   BREAK_OFF          = 1&lt;/P&gt;&lt;P&gt;   OTHERS             = 2.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 05:46:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070505#M973137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T05:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070506#M973138</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;For validation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on (select-option1)-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on (select-option1)-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 05:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070506#M973138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T05:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070507#M973139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;U can set the limit to four digit using select options and then setting the High and Low limits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can do it by using search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 06:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070507#M973139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T06:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070508#M973140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1:example&lt;/P&gt;&lt;P&gt;type-pools: vrm.&lt;/P&gt;&lt;P&gt;data: it_val type vrm_values,&lt;/P&gt;&lt;P&gt;      w_line like line of it_val,&lt;/P&gt;&lt;P&gt;      wa_line like w_line occurs 0.&lt;/P&gt;&lt;P&gt;parameters P_ACCOUN(4) as listbox visible length 4 obligatory.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;initialization--&lt;HR originaltext="-----------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;  w_line-key = '0001'.&lt;/P&gt;&lt;P&gt;  w_line-text = '0001'.&lt;/P&gt;&lt;P&gt;  append w_line to it_val.&lt;/P&gt;&lt;P&gt;  w_line-key = '0002'.&lt;/P&gt;&lt;P&gt;  w_line-text = '0002'.&lt;/P&gt;&lt;P&gt;  append w_line to it_val.&lt;/P&gt;&lt;P&gt;  w_line-key = '0003'.&lt;/P&gt;&lt;P&gt;  w_line-text = '0003'.&lt;/P&gt;&lt;P&gt;  append w_line to it_val.&lt;/P&gt;&lt;P&gt;  w_line-key = '0004'.&lt;/P&gt;&lt;P&gt;  w_line-text = '0004'.&lt;/P&gt;&lt;P&gt;  append w_line to it_val.&lt;/P&gt;&lt;P&gt;  w_line-key = '0005'.&lt;/P&gt;&lt;P&gt;  w_line-text = '0005'.&lt;/P&gt;&lt;P&gt; append w_line to it_val.&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;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;at selection-screen--&lt;HR originaltext="------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      id     = 'P_ACCOUN'&lt;/P&gt;&lt;P&gt;      values = it_val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2:&lt;/P&gt;&lt;P&gt;DATA:P_ACCOUNT TYPE ACCOUNT.&lt;/P&gt;&lt;P&gt;CONCATENATE P_ACCOUN '*' INTO P_ACCOUNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT &lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;FROM TABLE&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;WHERE &lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;AND ACCOUNT LIKE P_ACCOUNT&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 07:56:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070508#M973140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T07:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070509#M973141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi get all acounts into one internal table.&lt;/P&gt;&lt;P&gt;LOOP AT itab INTO wa.&lt;/P&gt;&lt;P&gt;wa1-field = wa-field+0(4).&lt;/P&gt;&lt;P&gt;APPEND wa1 TO itab1.&lt;/P&gt;&lt;P&gt;CLEAR wa1.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;display itab1 in search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dynnr = sy-dynnr.&lt;/P&gt;&lt;P&gt;  repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            RETFIELD    = 'FIELD'&lt;/P&gt;&lt;P&gt;            DYNPPROG    = repid&lt;/P&gt;&lt;P&gt;            DYNPNR      = dynnr&lt;/P&gt;&lt;P&gt;            DYNPROFIELD = 'ITAB1-FIELD'&lt;/P&gt;&lt;P&gt;            VALUE_ORG   = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            VALUE_TAB   = itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass selected account 4 digit code into anthor table n get all acount detail data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:14:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070509#M973141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T08:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070510#M973142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can use at selection-screen on upper and lower limits of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:19:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-option/m-p/4070510#M973142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T08:19:21Z</dc:date>
    </item>
  </channel>
</rss>

