<?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: Issue in Selection Screen design in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439826#M1412089</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear smartvarghese  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working fine for the single field selection of block2 .&lt;/P&gt;&lt;P&gt;but when i am going for the multiple selection and trying to select multiple field it is raising a dump.&lt;/P&gt;&lt;P&gt;how to resolve this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Dec 2009 05:39:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-02T05:39:54Z</dc:date>
    <item>
      <title>Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439817#M1412080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Guru,&lt;/P&gt;&lt;P&gt;I have encountered an issue which i am trying to resolve . The issue is as below --&amp;gt;&lt;/P&gt;&lt;P&gt;I have defined my selection screen like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN : BEGIN OF BLOCK block1 WITH FRAME TITLE text-001.
PARAMETERS : p_table TYPE dd03l-tabname OBLIGATORY.           "Table name
SELECTION-SCREEN :  END OF BLOCK block1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN : BEGIN OF BLOCK block2 WITH FRAME TITLE text-002.
SELECT-OPTIONS: s_field FOR dd03l-fieldname NO INTERVALS OBLIGATORY.
SELECTION-SCREEN : END OF BLOCK block2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In block1 i am providing provision to enter single table name.&lt;/P&gt;&lt;P&gt;where as in block2 i want select all those table fields for the table present in block1.&lt;/P&gt;&lt;P&gt;When i am seeking f4 help for block2  --&amp;gt; It is providing me lists of all data elements &lt;/P&gt;&lt;P&gt;in a popup window (Field Name(1)) present in sap.&lt;/P&gt;&lt;P&gt;In this Field Name(1) pop up we can able to minimise the list of field entries after providing &lt;/P&gt;&lt;P&gt;the table name manually in the restriction tab after clicking down triangle tab on the top.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirment is like this as soon as we will seek for f4 help of block2 it should show the &lt;/P&gt;&lt;P&gt;corresponding table fields of table present in block1 automatically rather than providing the &lt;/P&gt;&lt;P&gt;table name manually in the restriction option and find out lists of fields present in that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give some guideline to resolve this issue&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Saifur Rahaman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 04:10:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439817#M1412080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T04:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439818#M1412081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In the selection-screen value request event,&lt;/P&gt;&lt;P&gt;use fm: DYNP_VALUES_READ to read the selection values and use that in a select query to retrieve values from DD03L and then pass it to FM: F4IF_INT_TABLE_VALUE_REQUEST to populate as a F4 help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 04:26:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439818#M1412081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T04:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439819#M1412082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Saifur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***************************************************************************************************************&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;at selection-screen on value-request for &amp;lt; your field&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;select fieldname from dd03l into table ptab where tabname = &amp;lt; your table name&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;exporting&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;retfield    = 'FIELD'                                                              " name of the parameter for field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;dynpprog    = sy-cprog&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;dynpnr      = sy-dynnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;dynprofield = 'FIELD'                                                               " name of the parameter for field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;value_org   = 'S'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;tables&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;value_tab   = ptab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" 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="2" 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;/UL&gt;&lt;P&gt;  &lt;STRONG&gt;endif.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Smart Varghese&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 04:28:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439819#M1412082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T04:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439820#M1412083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir i didnot get your point exactly.... can you please elaborate it little ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 04:33:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439820#M1412083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T04:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439821#M1412084</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 do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection screen of field1, call a function module DDIF_FIELDINFO_GET which gives the list of the fields.&lt;/P&gt;&lt;P&gt;Now use AT SELECTION-SCREEN ON VALUE-REQUEST FOR fileld2 &lt;/P&gt;&lt;P&gt;Call a function module F4IF_INT_TABLE_VALUE_REQUEST where you have to pass the values retrieved from fm  DDIF_FIELDINFO_GET . Then the list of fields would come as you press F4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 04:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439821#M1412084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T04:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439822#M1412085</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;Go through this sample code for &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: BEGIN OF T_MATNR OCCURS 0,
      MATNR TYPE VBAP-MATNR,
      END OF T_MATNR,
      BEGIN OF T_MAKTX OCCURS 0,
      MAKTX TYPE MAKT-MAKTX,
      END OF T_MAKTX.
DATA: T_DYNPRO TYPE TABLE OF DYNPREAD,
      WA_DYNPRO LIKE LINE OF T_DYNPRO,
      TEMP TYPE MARA-MATNR.
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-T01.
  PARAMETERS: P_MATNR TYPE MARA-MATNR,
              P_MAKTX TYPE MAKT-MAKTX.
SELECTION-SCREEN END OF BLOCK B1.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_MATNR.
  SELECT MATNR
    FROM MARA
    INTO TABLE T_MATNR
    UP TO 10 ROWS.
IF SY-SUBRC EQ 0.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
  EXPORTING
    RETFIELD               = 'MATNR'
   DYNPPROG               = 'ZTRIAL'
   DYNPNR                 = SY-DYNNR
   DYNPROFIELD            = 'P_MATNR'
  TABLES
    VALUE_TAB              = T_MATNR
 EXCEPTIONS
   PARAMETER_ERROR        = 1
   NO_VALUES_FOUND        = 2
   OTHERS                 = 3
          .
ENDIF.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_MAKTX.
WA_DYNPRO-FIELDNAME = 'P_MATNR'.
APPEND WA_DYNPRO TO T_DYNPRO.
CALL FUNCTION 'DYNP_VALUES_READ'
  EXPORTING
    DYNAME                               = SY-REPID
    DYNUMB                               = SY-DYNNR
   TRANSLATE_TO_UPPER                   = 'X'
  TABLES
    DYNPFIELDS                           = T_DYNPRO
 EXCEPTIONS
   INVALID_ABAPWORKAREA                 = 1
   INVALID_DYNPROFIELD                  = 2
   INVALID_DYNPRONAME                   = 3
   INVALID_DYNPRONUMMER                 = 4
   INVALID_REQUEST                      = 5
   NO_FIELDDESCRIPTION                  = 6
   INVALID_PARAMETER                    = 7
   UNDEFIND_ERROR                       = 8
   DOUBLE_CONVERSION                    = 9
   STEPL_NOT_FOUND                      = 10
   OTHERS                               = 11
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

READ TABLE T_DYNPRO INTO WA_DYNPRO WITH KEY FIELDNAME = 'P_MATNR'.
TEMP = WA_DYNPRO-FIELDVALUE.
SELECT MAKTX
  FROM MAKT
  INTO TABLE T_MAKTX
  WHERE MATNR EQ TEMP.
"Call F4 help on MAKTX again.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 04:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439822#M1412085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T04:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439823#M1412086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SAIFUR,&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;Just make use of the below code .  &amp;amp;lt; cut and paste &amp;amp;gt;&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;tables:dd03l.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;data : begin of ptab occurs 0,&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;       field like dd03l-fieldname,&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;       end of ptab.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF DYNPFIELDS OCCURS 0.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE DYNPREAD.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;DATA : END OF DYNPFIELDS.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK block1 WITH FRAME TITLE text-001.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_table TYPE dd03l-tabname OBLIGATORY.           "Table name&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN :  END OF BLOCK block1.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK block2 WITH FRAME TITLE text-002.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_field FOR dd03l-fieldname NO INTERVALS OBLIGATORY.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : END OF BLOCK block2.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for s_field-low.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  MOVE 'P_TABLE' TO DYNPFIELDS-FIELDNAME.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  APPEND DYNPFIELDS.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;    EXPORTING&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;      dyname                               =  sy-cprog&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;      dynumb                               =  sy-dynnr&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     TRANSLATE_TO_UPPER                   = 'X'&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;    tables&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;      dynpfields                           = dynpfields&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     INVALID_ABAPWORKAREA                 = 1&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     INVALID_DYNPROFIELD                  = 2&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONAME                   = 3&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONUMMER                 = 4&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     INVALID_REQUEST                      = 5&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     NO_FIELDDESCRIPTION                  = 6&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     INVALID_PARAMETER                    = 7&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     UNDEFIND_ERROR                       = 8&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     DOUBLE_CONVERSION                    = 9&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     STEPL_NOT_FOUND                      = 10&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;     OTHERS                               = 11.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc  0.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt; 	MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  READ TABLE DYNPFIELDS INDEX 1 TRANSPORTING FIELDVALUE.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  MOVE DYNPFIELDS-FIELDVALUE TO P_TABLE.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  select fieldname from dd03l into table ptab where tabname = p_table.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  call function 'F4IF_INT_TABLE_VALUE_REQUEST'&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;    exporting&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;      retfield    = 'S_FIELD-LOW'    &lt;/P&gt;&lt;P&gt;      dynpprog    = sy-cprog&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;      dynpnr      = sy-dynnr&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;      dynprofield = 'S_FIELD-LOW'    &lt;/P&gt;&lt;P&gt;      value_org   = 'S'&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;    tables&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;      value_tab   = ptab.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc  0.&amp;lt;br /&amp;gt;&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&amp;lt;br /&amp;gt;&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.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  endif.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p /&amp;gt;&lt;/P&gt;&lt;P&gt;This will sole your issue.&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p /&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;Smart Varghese&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 05:00:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439823#M1412086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T05:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439824#M1412087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Saifur Rahaman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES : DD03L.

DATA : BEGIN OF WA_FIELD ,
        FIELDNAME LIKE DD03L-FIELDNAME,
       END OF WA_FIELD.
DATA : IT_FIELD LIKE STANDARD TABLE OF WA_FIELD.

SELECTION-SCREEN : BEGIN OF BLOCK BLOCK1 WITH FRAME TITLE TEXT-001.
PARAMETERS : P_TABLE LIKE DD03L-TABNAME OBLIGATORY.           "Table name
SELECTION-SCREEN :  END OF BLOCK BLOCK1.
SELECTION-SCREEN : BEGIN OF BLOCK BLOCK2 WITH FRAME TITLE TEXT-002.
SELECT-OPTIONS: S_FIELD FOR DD03L-FIELDNAME NO INTERVALS." OBLIGATORY.
SELECTION-SCREEN : END OF BLOCK BLOCK2.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_FIELD-LOW.
  SELECT FIELDNAME FROM DD03L INTO TABLE IT_FIELD WHERE TABNAME = P_TABLE.
  
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      RETFIELD    = 'S_FIELD-LOW' " name of the parameter for field
      DYNPPROG    = SY-CPROG
      DYNPNR      = SY-DYNNR
      DYNPROFIELD = 'S_FIELD-LOW' " name of the parameter for field
      VALUE_ORG   = 'S'
    TABLES
      VALUE_TAB   = IT_FIELD.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy above code and paste in your program. &lt;/P&gt;&lt;P&gt;execute&lt;/P&gt;&lt;P&gt;enter TABLENAME eg. MARA &lt;/P&gt;&lt;P&gt;press Enter&lt;/P&gt;&lt;P&gt;Now Do F4 for the Field... &lt;/P&gt;&lt;P&gt;Modify logic as per your requirement.. Do other minor changes by some efforts..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ilesh Nandaniya&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 05:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439824#M1412087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T05:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439825#M1412088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES dd03l.

DATA: itab TYPE TABLE OF dd03l,
      itab1 TYPE TABLE OF dynpread,
      wa LIKE LINE OF itab1.

SELECTION-SCREEN : BEGIN OF BLOCK block1 WITH FRAME TITLE text-001.
PARAMETERS : p_table TYPE dd03l-tabname OBLIGATORY .           "Table name
SELECTION-SCREEN :  END OF BLOCK block1.

SELECTION-SCREEN : BEGIN OF BLOCK block2 WITH FRAME TITLE text-002.
SELECT-OPTIONS: s_field FOR dd03l-fieldname NO INTERVALS OBLIGATORY.
SELECTION-SCREEN : END OF BLOCK block2.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_field-low.

  REFRESH itab1 .
  wa-fieldname = 'P_TABLE'.
  APPEND wa TO itab1.

  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname             = 'ZSAT_TEST000' "Your pgm name
      dynumb             = '1000'
      translate_to_upper = 'X'
    TABLES
      dynpfields         = itab1.

  READ TABLE itab1 INTO wa INDEX 1.
  REFRESH itab.
  SELECT * FROM dd03l INTO TABLE itab WHERE tabname = wa-fieldvalue.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield    = 'FIELDNAME'
      dynpprog    = 'ZSAT_TEST000' "Your pgm name
      dynpnr      = '1000'
      dynprofield = 'S_FIELD-LOW'
      value_org   = 'S'
    TABLES
      value_tab   = itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 05:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439825#M1412088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T05:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439826#M1412089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear smartvarghese  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working fine for the single field selection of block2 .&lt;/P&gt;&lt;P&gt;but when i am going for the multiple selection and trying to select multiple field it is raising a dump.&lt;/P&gt;&lt;P&gt;how to resolve this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 05:39:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439826#M1412089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T05:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439827#M1412090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saifur,&lt;/P&gt;&lt;P&gt;WHat is the dump that you are getting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 05:49:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439827#M1412090</guid>
      <dc:creator>former_member206377</dc:creator>
      <dc:date>2009-12-02T05:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439828#M1412091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saifur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you are getting the dump because of the statements between sy-subrc check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you havenot defined any msg ids and types then comment out that part and check now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

tables:dd03l.
data : begin of ptab occurs 0,
field like dd03l-fieldname,
end of ptab.
DATA : BEGIN OF DYNPFIELDS OCCURS 0.
INCLUDE STRUCTURE DYNPREAD.
DATA : END OF DYNPFIELDS.
SELECTION-SCREEN : BEGIN OF BLOCK block1 WITH FRAME TITLE text-001.
PARAMETERS : p_table TYPE dd03l-tabname OBLIGATORY. "Table name
SELECTION-SCREEN : END OF BLOCK block1.

SELECTION-SCREEN : BEGIN OF BLOCK block2 WITH FRAME TITLE text-002.
SELECT-OPTIONS: s_field FOR dd03l-fieldname NO INTERVALS OBLIGATORY.
SELECTION-SCREEN : END OF BLOCK block2.
at selection-screen on value-request for s_field-low.
MOVE 'P_TABLE' TO DYNPFIELDS-FIELDNAME.
APPEND DYNPFIELDS.
CALL FUNCTION 'DYNP_VALUES_READ'
EXPORTING
dyname = sy-cprog
dynumb = sy-dynnr
TRANSLATE_TO_UPPER = 'X'
tables
dynpfields = dynpfields
EXCEPTIONS
INVALID_ABAPWORKAREA = 1
INVALID_DYNPROFIELD = 2
INVALID_DYNPRONAME = 3
INVALID_DYNPRONUMMER = 4
INVALID_REQUEST = 5
NO_FIELDDESCRIPTION = 6
INVALID_PARAMETER = 7
UNDEFIND_ERROR = 8
DOUBLE_CONVERSION = 9
STEPL_NOT_FOUND = 10
OTHERS = 11.
IF sy-subrc 0.
*MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO "comment thiese two lines and execute now
*WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
READ TABLE DYNPFIELDS INDEX 1 TRANSPORTING FIELDVALUE.
MOVE DYNPFIELDS-FIELDVALUE TO P_TABLE.
select fieldname from dd03l into table ptab where tabname = p_table.
call function 'F4IF_INT_TABLE_VALUE_REQUEST'
exporting
retfield = 'S_FIELD-LOW' dynpprog = sy-cprog
dynpnr = sy-dynnr
dynprofield = 'S_FIELD-LOW' value_org = 'S'
tables
value_tab = ptab.
if sy-subrc 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 06:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439828#M1412091</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2009-12-02T06:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439829#M1412092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Swarna Munukoti  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have worked out in the suggestion you have provided this have resolved the issue partially.....&lt;/P&gt;&lt;P&gt;Now the place where i am getting stuck ... which i am trying to resolve ..&lt;/P&gt;&lt;P&gt;The issue is Your custom code helped me to select the desired field of a particular table &lt;STRONG&gt;one by one&lt;/STRONG&gt; if we click on the "Multiple Selection" button(the yellow button) in the selection screen. But the requirment is like i want to select &lt;STRONG&gt;a multiple numbers&lt;/STRONG&gt; of field at a time in the popup (Multiple Selection For S_field) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initially(before you have suggested your custom coding ) in this pop up (Multiple Selection For S_field) a button i was able to find "Multiple Selection" . (where after using your custom code i am not able to find that &lt;STRONG&gt;"Multiple Selection" button&lt;/STRONG&gt; in the popup)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we can able to select lists of desired fields after clicking on button "Miltiple Selection" .&lt;/P&gt;&lt;P&gt;"Miltiple Selection"  provides a popup with list of field with addition a check box for selection of multiple fields.&lt;/P&gt;&lt;P&gt;we can able to minimise the list of field entries after providing &lt;/P&gt;&lt;P&gt;the table name manually in the restriction tab after clicking down triangle tab on the top &lt;/P&gt;&lt;P&gt;and select all those table fields for the table present in block1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirment is like this your custom code should not hide &lt;STRONG&gt;"Multiple Selection" button&lt;/STRONG&gt; in the popup (Multiple Selection For S_field)  and as soon as we will click "Miltiple Selection" button in the  &lt;/P&gt;&lt;P&gt;"Multiple Selection For Field Name" pop up of block2 it should show the &lt;/P&gt;&lt;P&gt;corresponding table fields of table present in block1 automatically with check box rather than providing the &lt;/P&gt;&lt;P&gt;table name manually in the restriction option and find out lists of fields present in that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give some guideline to resolve this issue&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Saifur Rahaman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 09:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439829#M1412092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T09:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439830#M1412093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Saifur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try passing the MULTIPLE_CHOICE = 'X' to the FM &amp;amp; check?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 09:27:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439830#M1412093</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-12-02T09:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439831#M1412094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Saha da,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes i tried with MULTIPLE_CHOICE = 'X' in the FM 'F4IF_INT_TABLE_VALUE_REQUEST' &lt;/P&gt;&lt;P&gt;It is showing lists of fields with checbox  as soon as i am pressing F4&lt;/P&gt;&lt;P&gt;But after selecting the desired fields .. neither a single field appearing in the  selection screen nor in the popup (Multiple Selection For S_field --&amp;gt; which gets popped up after clicking on the yellow arrow button ) and in this pop up i am not able to find the button &lt;STRONG&gt;"Multiple selection"&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;My requirment either the lists of field have to flow using after pressing f4 help or after clicking on the yellow arrow button and then using &lt;STRONG&gt;"Multiple selection"&lt;/STRONG&gt;  button which provides lists of fields with checkbox.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 09:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439831#M1412094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T09:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439832#M1412095</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;This is because the code provided by Swarna is incomplete &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it_ret TYPE STANDARD TABLE OF ddshretval,
        wa_ret TYPE ddshretval.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield        = 'S_FIELD-LOW'
      dynpprog        = sy-cprog
      dynpnr          = sy-dynnr
      dynprofield     = 'S_FIELD-LOW'
      value_org       = 'S'
      multiple_choice = 'X'
    TABLES
      value_tab       = ptab[]
      return_tab      = it_ret.
  IF sy-subrc = 0.
    s_field-sign = 'I'.
    s_field-option = 'EQ'.
    LOOP AT it_ret INTO wa_ret.
      s_field-low = wa_ret-fieldval.
      APPEND s_field.
    ENDLOOP.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 09:48:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439832#M1412095</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-12-02T09:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439833#M1412096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let me try this dada ... wil get back as soon as i done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 09:57:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439833#M1412096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T09:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439834#M1412097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Saha da i tried with your custom code ... it worked out... thanks a lot.&lt;/P&gt;&lt;P&gt;My issue have been completely resolved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Dec 2009 10:03:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439834#M1412097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-02T10:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439835#M1412098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Saha Da,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The custom code you have provided its working fine but &lt;/P&gt;&lt;P&gt;One issue have been foundout during extensive testing ..&lt;/P&gt;&lt;P&gt;the issue is when i am pressing f4 it is giving me provision to select multiple field at a time.&lt;/P&gt;&lt;P&gt;For the first field selection it working ok .&lt;/P&gt;&lt;P&gt;But i am trying to select the multiple field then the system is behaving like below : &lt;/P&gt;&lt;P&gt;Table name i gave == KNA1&lt;/P&gt;&lt;P&gt;Then pressed f4 --&amp;gt; popup came i make selection of 3 fields &lt;/P&gt;&lt;P&gt;ABRVW&lt;/P&gt;&lt;P&gt;ADRNR&lt;/P&gt;&lt;P&gt;ALC then pressed green tick&lt;/P&gt;&lt;P&gt;In the selection screen the field which is appearing == ALC&lt;/P&gt;&lt;P&gt;Now when i am trying to watch the multiple field using "Multiple selection " button there in the popup "Multiple selection for s_field"  showing only values in following sequence &lt;/P&gt;&lt;P&gt;ALC&lt;/P&gt;&lt;P&gt;ADRNR&lt;/P&gt;&lt;P&gt;ALC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of showing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABRVW&lt;/P&gt;&lt;P&gt;ADRNR&lt;/P&gt;&lt;P&gt;ALC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me some guideline how to resolve this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saifur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 06:31:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439835#M1412098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-03T06:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Issue in Selection Screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439836#M1412099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Correct solution is as below&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        = 'S_FIELD-LOW'&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-cprog&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield     = 'S_FIELD-LOW'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;      multiple_choice = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = ptab[]&lt;/P&gt;&lt;P&gt;      return_tab      = it_ret.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    CLEAR: read_table.&lt;/P&gt;&lt;P&gt;    IF s_field[] IS INITIAL.&lt;/P&gt;&lt;P&gt;      read_table = 'S_FIELD'.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      read_table = 'IT_RET'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT it_ret INTO wa_ret.&lt;/P&gt;&lt;P&gt;      s_field-sign = 'I'.&lt;/P&gt;&lt;P&gt;      s_field-option = 'EQ'.&lt;/P&gt;&lt;P&gt;      s_field-low = wa_ret-fieldval.&lt;/P&gt;&lt;P&gt;      APPEND s_field.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    IF read_table = 'S_FIELD'.&lt;/P&gt;&lt;P&gt;      READ TABLE s_field INDEX 1.&lt;/P&gt;&lt;P&gt;    ELSEIF read_table = 'IT_RET'.&lt;/P&gt;&lt;P&gt;      CLEAR: s_field.&lt;/P&gt;&lt;P&gt;      READ TABLE it_ret INTO wa_ret INDEX 1.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2009 07:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-in-selection-screen-design/m-p/6439836#M1412099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-03T07:21:43Z</dc:date>
    </item>
  </channel>
</rss>

