<?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 INX_GET_TABPT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183670#M126414</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any body have some idea about FM INX_GET_TABPT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jan 2006 11:19:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-30T11:19:22Z</dc:date>
    <item>
      <title>Function Module INX_GET_TABPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183670#M126414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any body have some idea about FM INX_GET_TABPT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2006 11:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183670#M126414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-30T11:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module INX_GET_TABPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183671#M126415</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;It's used in function group IWO3, 'online table processing'. It's only for internal use (during the transaction), because it's using global variables - which have to be filled by other function modules of same function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2006 11:26:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183671#M126415</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2006-01-30T11:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module INX_GET_TABPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183672#M126416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using TCode qm02, it contain many tabpads&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in task tab, i select one line. how can i catch the values of this seleced line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i want to select from table, how to read key field from screen, which row is seleced. how to read a seleced row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2006 11:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183672#M126416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-30T11:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module INX_GET_TABPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183673#M126417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    U get the entries from the table VIQMFE.&lt;/P&gt;&lt;P&gt;    In order to catch the values from the selected line&lt;/P&gt;&lt;P&gt;    u need to have an internal table like VIQMFE which&lt;/P&gt;&lt;P&gt;    has the value for that particular notification.&lt;/P&gt;&lt;P&gt;    so every time U need to refresh this internal table &lt;/P&gt;&lt;P&gt;    inside the loop and fill again for the notification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Depending on your requirement U'll read the above &lt;/P&gt;&lt;P&gt;    Internal table and get the Index. &lt;/P&gt;&lt;P&gt;    Using this INDEX (1 or 2 ....) U have to select the &lt;/P&gt;&lt;P&gt;    line in the Transaction. ( U cannot go from the&lt;/P&gt;&lt;P&gt;    screen to the program , U have to come in reverse )&lt;/P&gt;&lt;P&gt;    In this way U'll have the row selected which is &lt;/P&gt;&lt;P&gt;    read from the Internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;GSR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2006 13:04:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183673#M126417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-30T13:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module INX_GET_TABPT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183674#M126418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, shrinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you told, i have to go in reverse, i did not get this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will you plz explain more on this, how to come in reverse, as user will select on screen, how to reterive that notification no, which user has selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz give more explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jan 2006 05:37:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-inx-get-tabpt/m-p/1183674#M126418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-31T05:37:03Z</dc:date>
    </item>
  </channel>
</rss>

