<?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: listbox in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664629#M1288232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudhir,&lt;/P&gt;&lt;P&gt;             To dispaly the values in a listbox in one column depending on the values of another column , You need to read the values of the first colum. For that reason you can use the the fm "DYNP_VALUES_READ". After reading the values populate the internal table and put it in th list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing as you are using table control you have to pass the row no of the table control to the FM. To get the row number you can use the FM "DYNP_GET_STEPL".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below i have attached some sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of dynpfields occurs 3.&lt;/P&gt;&lt;P&gt;        include structure dynpread.&lt;/P&gt;&lt;P&gt;data : end of dynpfields.&lt;/P&gt;&lt;P&gt;data v_setpl type SY-STEPL.&lt;/P&gt;&lt;P&gt;data v_setpl_temp type SY-STEPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; clear  v_setpl.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_GET_STEPL'         "This is to get the column Number.&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      POVSTEPL        = v_setpl&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      STEPL_NOT_FOUND = 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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move &amp;lt;first field name&amp;gt; to dynpfields-fieldname.&lt;/P&gt;&lt;P&gt;  move v_setpl to dynpfields-stepl.&lt;/P&gt;&lt;P&gt;  append dynpfields.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DYNAME                               = '&amp;lt;prog-name&amp;gt;'&lt;/P&gt;&lt;P&gt;      DYNUMB                               = '&amp;lt;screen-number&amp;gt;'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   TRANSLATE_TO_UPPER                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DYNPFIELDS                           = dynpfields&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     INVALID_ABAPWORKAREA                 = 1&lt;/P&gt;&lt;P&gt;     INVALID_DYNPROFIELD                  = 2&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONAME                   = 3&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONUMMER                 = 4&lt;/P&gt;&lt;P&gt;     INVALID_REQUEST                      = 5&lt;/P&gt;&lt;P&gt;     NO_FIELDDESCRIPTION                  = 6&lt;/P&gt;&lt;P&gt;     INVALID_PARAMETER                    = 7&lt;/P&gt;&lt;P&gt;     UNDEFIND_ERROR                       = 8&lt;/P&gt;&lt;P&gt;     DOUBLE_CONVERSION                    = 9&lt;/P&gt;&lt;P&gt;     STEPL_NOT_FOUND                      = 10&lt;/P&gt;&lt;P&gt;     OTHERS                               = 11&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;     read table dynpfields index sy-index.&lt;/P&gt;&lt;P&gt;     V_TEMP = dynpfields-FIELDVALUE&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Then by the help of V_temp write the select query and populate the internal table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;and dispaly it in the list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if any problem then please come back.&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;Amarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 May 2009 06:15:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-27T06:15:29Z</dc:date>
    <item>
      <title>listbox in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664627#M1288230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I have a requirement that through In the table control i have two columns . in first column there is F4 help if i select a particular value from first column first row then according to that i want to display list of values in the second column for first record and this list should be changed for different value in first column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 10:35:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664627#M1288230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-26T10:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: listbox in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664628#M1288231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this way in this am bringing the project based upon the customer&lt;/P&gt;&lt;P&gt;MODULE fill_customer INPUT.&lt;/P&gt;&lt;P&gt;*Checking the customer is initial&lt;/P&gt;&lt;P&gt;  IF t_customer[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT  pspid FROM proj&lt;/P&gt;&lt;P&gt;                   INTO t_customer-pspid.&lt;/P&gt;&lt;P&gt;      APPEND t_customer.&lt;/P&gt;&lt;P&gt;    ENDSELECT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Function module for appending the customer in the customer listbox&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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   = 'WA_CUSTOMER'&lt;/P&gt;&lt;P&gt;        value_org  = 'S'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        value_tab  = t_customer&lt;/P&gt;&lt;P&gt;        return_tab = return2.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      t_customer-pspid  = return2-fieldval.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF NOT wa_customer IS INITIAL.&lt;/P&gt;&lt;P&gt;    v_cus  = wa_customer.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " FILL_CUSTOMER  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  FILL_PROJECT  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Filling the project details in the listbox&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE fill_project INPUT.&lt;/P&gt;&lt;P&gt;*Filling the Project Details Based on the Customer&lt;/P&gt;&lt;P&gt;  DATA : v1_pspnr TYPE prps-pspnr.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Refreshing the t_project to get the project details based on the customer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  REFRESH : t_project.&lt;/P&gt;&lt;P&gt;  IF t_project[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE pspnr FROM proj&lt;/P&gt;&lt;P&gt;                INTO v1_pspnr WHERE pspid = wa_customer.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      SELECT psphi FROM prps&lt;/P&gt;&lt;P&gt;                INTO t_prps-psphi&lt;/P&gt;&lt;P&gt;                WHERE psphi = v1_pspnr.&lt;/P&gt;&lt;P&gt;        APPEND t_prps.&lt;/P&gt;&lt;P&gt;      ENDSELECT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    SELECT posid  FROM prps INTO&lt;/P&gt;&lt;P&gt;                  t_project-posid&lt;/P&gt;&lt;P&gt;                  WHERE psphi = t_prps-psphi.&lt;/P&gt;&lt;P&gt;      APPEND t_project.&lt;/P&gt;&lt;P&gt;    ENDSELECT.&lt;/P&gt;&lt;P&gt;*Inserting all to the project listbox&lt;/P&gt;&lt;P&gt;    t_project-posid = 'ALL'.&lt;/P&gt;&lt;P&gt;    INSERT t_project INTO t_project INDEX 1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Function module for appending the project in the project listbox&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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   = 'WA_PROJECT'&lt;/P&gt;&lt;P&gt;        value_org  = 'S'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        value_tab  = t_project&lt;/P&gt;&lt;P&gt;        return_tab = return3.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      t_project-posid  = return3-fieldval.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;to get the WBS element&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF NOT wa_project IS INITIAL.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE pspnr FROM prps INTO prps-pspnr&lt;/P&gt;&lt;P&gt;                                 WHERE posid = wa_project.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       wa_project = prps-pspnr.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        v_pro  = prps-pspnr.&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;ENDMODULE.                 " FILL_PROJECT  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 10:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664628#M1288231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-26T10:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: listbox in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664629#M1288232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudhir,&lt;/P&gt;&lt;P&gt;             To dispaly the values in a listbox in one column depending on the values of another column , You need to read the values of the first colum. For that reason you can use the the fm "DYNP_VALUES_READ". After reading the values populate the internal table and put it in th list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing as you are using table control you have to pass the row no of the table control to the FM. To get the row number you can use the FM "DYNP_GET_STEPL".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below i have attached some sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of dynpfields occurs 3.&lt;/P&gt;&lt;P&gt;        include structure dynpread.&lt;/P&gt;&lt;P&gt;data : end of dynpfields.&lt;/P&gt;&lt;P&gt;data v_setpl type SY-STEPL.&lt;/P&gt;&lt;P&gt;data v_setpl_temp type SY-STEPL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; clear  v_setpl.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_GET_STEPL'         "This is to get the column Number.&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      POVSTEPL        = v_setpl&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      STEPL_NOT_FOUND = 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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move &amp;lt;first field name&amp;gt; to dynpfields-fieldname.&lt;/P&gt;&lt;P&gt;  move v_setpl to dynpfields-stepl.&lt;/P&gt;&lt;P&gt;  append dynpfields.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DYNAME                               = '&amp;lt;prog-name&amp;gt;'&lt;/P&gt;&lt;P&gt;      DYNUMB                               = '&amp;lt;screen-number&amp;gt;'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   TRANSLATE_TO_UPPER                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DYNPFIELDS                           = dynpfields&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     INVALID_ABAPWORKAREA                 = 1&lt;/P&gt;&lt;P&gt;     INVALID_DYNPROFIELD                  = 2&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONAME                   = 3&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONUMMER                 = 4&lt;/P&gt;&lt;P&gt;     INVALID_REQUEST                      = 5&lt;/P&gt;&lt;P&gt;     NO_FIELDDESCRIPTION                  = 6&lt;/P&gt;&lt;P&gt;     INVALID_PARAMETER                    = 7&lt;/P&gt;&lt;P&gt;     UNDEFIND_ERROR                       = 8&lt;/P&gt;&lt;P&gt;     DOUBLE_CONVERSION                    = 9&lt;/P&gt;&lt;P&gt;     STEPL_NOT_FOUND                      = 10&lt;/P&gt;&lt;P&gt;     OTHERS                               = 11&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;     read table dynpfields index sy-index.&lt;/P&gt;&lt;P&gt;     V_TEMP = dynpfields-FIELDVALUE&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Then by the help of V_temp write the select query and populate the internal table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;and dispaly it in the list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if any problem then please come back.&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;Amarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 06:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664629#M1288232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T06:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: listbox in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664630#M1288233</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;until and unless the PAI is triggered u can't get the value that was selected in the F4 value into the program to populate the value for the adjacent column. user interaction should be there after the F4 value selection. a way, but a tedious one, is to write the F4 event(Process on value-request) for the 1st value manually. so when the user selects a value from the F4 help, to assign the value back into the screen field the control will come back to the code. during which u can populate the adjacent column value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next suggestion will be to make the first column also a drop down list and from the screen field attributes assign a fcode to the drop down list column. so when user selects a value in the drop list the control will come to PAI where u can write code to populate the adjacent field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 10:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664630#M1288233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T10:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: listbox in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664631#M1288234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhu,&lt;/P&gt;&lt;P&gt;         You are ver much right that we can't get the value untill we trigger the PAI. BUt by the help of the FM "DYNP_VLUES_READ" we can read the contents of a field without triggering the PAI. I had already done it for one of my requirment.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;                so if you caal this FM after the f4if_int_table_value_request function module you can get the value. I am very much sure about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudhir :  request you to try with it and come back if any problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Amarendra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: AmarendraSahoo on May 27, 2009 6:08 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2009 16:07:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/listbox-in-table-control/m-p/5664631#M1288234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-27T16:07:39Z</dc:date>
    </item>
  </channel>
</rss>

