<?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 function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373098#M809893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;doe sany one know how to use this fm&lt;/P&gt;&lt;P&gt;TABLE_GET_KEY_TO_SET_CUR_ROW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jan 2008 05:14:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-24T05:14:57Z</dc:date>
    <item>
      <title>function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373098#M809893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;doe sany one know how to use this fm&lt;/P&gt;&lt;P&gt;TABLE_GET_KEY_TO_SET_CUR_ROW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 05:14:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373098#M809893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T05:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373099#M809894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes u pass table name and prog name and it will return the key  elements in a pop up window&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 05:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373099#M809894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T05:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373100#M809895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;rohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The fun module TABLE_GET_KEY_TO_SET_CUR_ROW is called for the Function position  to find the correct Row .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Means suppose in you table control you have lot of records .To find particular and select that this Fm is useful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) add a button say search box .&lt;/P&gt;&lt;P&gt;2) when user clicks on this button show&lt;/P&gt;&lt;P&gt;   dialog box with enter key field No:&lt;/P&gt;&lt;P&gt;3) when user enter box no search table control&lt;/P&gt;&lt;P&gt;intternal table and if found&lt;/P&gt;&lt;P&gt;set tc1-current_line = sy-tabix of record found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : ata: h_table_key(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  'V_TQ85 is internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'TABLE_GET_KEY_TO_SET_CUR_ROW'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            table             = 'V_TQ85'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            table_key         = h_table_key&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            cancelled_by_user = 1&lt;/P&gt;&lt;P&gt;            table_not_found   = 2&lt;/P&gt;&lt;P&gt;            others            = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 05:29:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373100#M809895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T05:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373101#M809896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;              Can u explain how this function mod works.See i have created a table control and displayed data from the DB through internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now as per ur idea i have used a search button.Inside tht i call this FM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'TABLE_GET_KEY_TO_SET_CUR_ROW'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        table                   = 'ITAB'&lt;/P&gt;&lt;P&gt;     importing&lt;/P&gt;&lt;P&gt;       table_key               =  h_table_key&lt;/P&gt;&lt;P&gt;     exceptions&lt;/P&gt;&lt;P&gt;       cancelled_by_user       = 1&lt;/P&gt;&lt;P&gt;       table_not_found         = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now its not showing any difference..I have written this in PBO.Help me in this issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 07:49:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3373101#M809896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T07:49:06Z</dc:date>
    </item>
  </channel>
</rss>

