<?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: capture input value of table control using a function code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839049#M1590750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys Thank for your reply, I have used a push button instead of working on 'Enter' key. thi sresolves my problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 May 2011 09:41:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-05T09:41:55Z</dc:date>
    <item>
      <title>capture input value of table control using a function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839046#M1590747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAPers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where ion i have to capture the inout entered in the table control and enter it into a internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one input field outside table control :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;werks : AB01
desciption:  xyz store

table control:
vendor desc          mon tue wed thu fri sat
101      a1 agency  X             X
102      a2 agency          X            X&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In above  WERKS and  VENDOR are input fields X are check boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is both input fileds(WERKS &amp;amp; VENDOR ) are getting trggered ( sy-ucomm = 'ENTE'  ) when I pres enter . Can I give a different function codes for table controll and one for outside table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My program type is executable program and not type M.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DEP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 06:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839046#M1590747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T06:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: capture input value of table control using a function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839047#M1590748</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 think that u wrote code for both werks and vendor for sy-ucomm = 'ENTE'.  and dont use sy-ucomm directly., instead do like this.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ok_code type sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok_code = syucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then clear ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And.., Yes u can assign different function codes to werks and vendor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps u.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 09:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839047#M1590748</guid>
      <dc:creator>Kiran_Valluru</dc:creator>
      <dc:date>2011-05-03T09:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: capture input value of table control using a function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839048#M1590749</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 think this is ur requirement. Apply the below logic in the PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD werks MODULE check_werks on request. " Write code in this module&lt;/P&gt;&lt;P&gt;FIELD description MODULE check_description on request. " Write code in this module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These two module will be trigerred only when u change the data in the two fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhukar Shetty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2011 05:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839048#M1590749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-05T05:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: capture input value of table control using a function code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839049#M1590750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys Thank for your reply, I have used a push button instead of working on 'Enter' key. thi sresolves my problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2011 09:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capture-input-value-of-table-control-using-a-function-code/m-p/7839049#M1590750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-05T09:41:55Z</dc:date>
    </item>
  </channel>
</rss>

