<?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: Drop down selection for a column in Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421235#M1549343</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search on Google, Search on SDN, Read the documentation a.k.a. F1 SAPHelp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Oct 2010 09:29:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-28T09:29:42Z</dc:date>
    <item>
      <title>Drop down selection for a column in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421234#M1549342</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;I have a table control where data is displayed. The user can fill data in one of the column and save. We want to have a drop down in that column where user can select a value. This column is a qunatity field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide how it can be done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 09:27:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421234#M1549342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-28T09:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Drop down selection for a column in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421235#M1549343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Search on Google, Search on SDN, Read the documentation a.k.a. F1 SAPHelp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 09:29:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421235#M1549343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-28T09:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Drop down selection for a column in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421236#M1549344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well you could doubleclick that field in your table control in the screen painter.&lt;/P&gt;&lt;P&gt;In the preferences popup you can use the drop-down menu to choose "as listbox". Thats it. Be aware that you either need a check table assigned to that field or a domain that has specified values assigned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ask myself how that should work out for a quantity as you´d need a check table with all possible entires are existing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 09:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421236#M1549344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-28T09:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Drop down selection for a column in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421237#M1549345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SE51 screen editor, double-click on the editable field and set the dropdown listbox at listbox. As I don't think that you have domain value or table value for this field, set the field value list to "A" from program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the PBO use the FM VRM_SET_VALUES to fill the list of allowed values. do this in a module called in the LOOP AT WITH CONTROL which fills the table control from the program data. (use a name like TC_XXXX_CHANGE_FIELD_ATTR)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I'm not sure SE51 will allow you to use a quantity field in a listbox, so use a character field (check also right justified box on dynpro field attrinutes window), in VRM_SET_VALIUES parameters and in initial filling of the screen field use a WRITE xx UNIT yy to fill the screen field. Then a MOVE should perfect correctly when filling actual database/abap field by a move statement.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 09:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-selection-for-a-column-in-table-control/m-p/7421237#M1549345</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-10-28T09:52:06Z</dc:date>
    </item>
  </channel>
</rss>

