<?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: table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3515859#M845640</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vijay,&lt;/P&gt;&lt;P&gt; u just create a search help for the required field in se11 .&lt;/P&gt;&lt;P&gt;and attach that search help for that field in se51 layout .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Mar 2008 16:50:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-05T16:50:32Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3515857#M845638</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 have a requirement to create  table control with a column of drop down list  i.e for that particular column user can select value from the drop down list for each record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i assign values to that drop down list and how the data entered by the user will be picked and filled into the internal table to be updated in the database table.&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;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 15:29:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3515857#M845638</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2008-03-05T15:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3515858#M845639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;You can do this in two ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.create a search help&lt;/P&gt;&lt;P&gt;2.Attach the search help to this table control field&lt;/P&gt;&lt;P&gt;3.in screen painter change the attributes of the field to "ListBox".you will get one list box instead of search help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;second method&lt;/P&gt;&lt;P&gt;Using functionmodule 'VRM_SET_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools : vrm.&lt;/P&gt;&lt;P&gt;parameters : p(10).&lt;/P&gt;&lt;P&gt;initialisation.&lt;/P&gt;&lt;P&gt;data: int_vrm_cnclcod TYPE vrm_values,&lt;/P&gt;&lt;P&gt;fs_vrm_cnclcod TYPE vrm_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF int_vrm_cnclcod[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fs_vrm_cnclcod-key = '01'.&lt;/P&gt;&lt;P&gt;FS_VRM_cnclcod-text = 'ssdsd".&lt;/P&gt;&lt;P&gt;APPEND fs_vrm_cnclcod TO int_vrm_cnclcod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fs_vrm_cnclcod-key = '02'.&lt;/P&gt;&lt;P&gt;FS_VRM_cnclcod-text = 'sdsdsd '.&lt;/P&gt;&lt;P&gt;APPEND fs_vrm_cnclcod TO int_vrm_cnclcod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&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'&lt;/P&gt;&lt;P&gt;values = int_vrm_cnclcod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS &lt;/P&gt;&lt;P&gt;ID_ILLEGAL_NAME = 1 &lt;/P&gt;&lt;P&gt;OTHERS = 2 &lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0. &lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO &lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About your second query :&lt;/P&gt;&lt;P&gt;after selecting the values from dropdown list you can modify your internal table with the new value and do the updation of database with this internal table&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shibu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: shibuettickal on Mar 5, 2008 5:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 16:14:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3515858#M845639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T16:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3515859#M845640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vijay,&lt;/P&gt;&lt;P&gt; u just create a search help for the required field in se11 .&lt;/P&gt;&lt;P&gt;and attach that search help for that field in se51 layout .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2008 16:50:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3515859#M845640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-05T16:50:32Z</dc:date>
    </item>
  </channel>
</rss>

