<?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 table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1985532#M402491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my requirement is to design cash reciept.&lt;/P&gt;&lt;P&gt;iam using table control for it.&lt;/P&gt;&lt;P&gt;i want to sum the &amp;lt;b&amp;gt;amount&amp;lt;/b&amp;gt; fields in table control by pressing enter key and &lt;/P&gt;&lt;P&gt;pass that value to other internal table field.&lt;/P&gt;&lt;P&gt;can anyone give me code for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another one is after getting that total, i want to convert into the value to word.&lt;/P&gt;&lt;P&gt;which function module should i have to use.&lt;/P&gt;&lt;P&gt;plz send sample of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;santhosh reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Feb 2007 03:19:06 GMT</pubDate>
    <dc:creator>SantoshKallem</dc:creator>
    <dc:date>2007-02-16T03:19:06Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1985532#M402491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my requirement is to design cash reciept.&lt;/P&gt;&lt;P&gt;iam using table control for it.&lt;/P&gt;&lt;P&gt;i want to sum the &amp;lt;b&amp;gt;amount&amp;lt;/b&amp;gt; fields in table control by pressing enter key and &lt;/P&gt;&lt;P&gt;pass that value to other internal table field.&lt;/P&gt;&lt;P&gt;can anyone give me code for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another one is after getting that total, i want to convert into the value to word.&lt;/P&gt;&lt;P&gt;which function module should i have to use.&lt;/P&gt;&lt;P&gt;plz send sample of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;santhosh reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 03:19:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1985532#M402491</guid>
      <dc:creator>SantoshKallem</dc:creator>
      <dc:date>2007-02-16T03:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1985533#M402492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u jst sum up in teh PBO of the table control loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum = sum + itab-amount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 03:37:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1985533#M402492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T03:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1985534#M402493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Place a icon on the toolbar and give a function code '=ENTE' or '=IHKZ', or '\00'.&lt;/P&gt;&lt;P&gt;In the PBO event,&lt;/P&gt;&lt;P&gt;LOOP AT i_out_tab WITH CONTROL tc_cust_micr&lt;/P&gt;&lt;P&gt;       CURSOR tc_cust_micr-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Add the column which you want into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI write:&lt;/P&gt;&lt;P&gt;  MODULE user_command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on user-command and go to the PAI event of this module. &lt;/P&gt;&lt;P&gt;here check the sy-ucomm,&lt;/P&gt;&lt;P&gt;if sy-ucomm = any of the func.code set inthe toolbar for Enter, then&lt;/P&gt;&lt;P&gt; move the total to a internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SPELL_AMOUNT func.module to convert the amount into words.&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>Fri, 16 Feb 2007 04:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1985534#M402493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T04:06:14Z</dc:date>
    </item>
  </channel>
</rss>

