<?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/2183438#M464623</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field with a match-code in a table control. Is there any way to know the current row number when i press the match-code of that field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 May 2007 14:55:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-07T14:55:13Z</dc:date>
    <item>
      <title>Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183438#M464623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field with a match-code in a table control. Is there any way to know the current row number when i press the match-code of that field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 14:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183438#M464623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T14:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183439#M464624</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;Use "&amp;lt;b&amp;gt;Get Cursor field fname line n&amp;lt;/b&amp;gt;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n-line number of TC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 15:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183439#M464624</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-05-07T15:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183440#M464625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jose ,&lt;/P&gt;&lt;P&gt;             &lt;/P&gt;&lt;P&gt;             READ TABLE i_tab1 INDEX tab_cntrl-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement reads the table control current row .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 15:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183440#M464625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T15:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183441#M464626</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;After user interaction with the screen, you may need to know the position of the cursor when the action occurred. This is particularly important if the user chooses the Choose function (F2 or mouse double-click).&lt;/P&gt;&lt;P&gt;To find out the cursor position, use the following statement:&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD &amp;lt;f&amp;gt; [OFFSET &amp;lt;off&amp;gt;]&lt;/P&gt;&lt;P&gt;[LINE &amp;lt;lin&amp;gt;]&lt;/P&gt;&lt;P&gt;[VALUE &amp;lt;val&amp;gt;]&lt;/P&gt;&lt;P&gt;[LENGTH &amp;lt;len&amp;gt;].&lt;/P&gt;&lt;P&gt;This statement transfers the name of the screen element on which the cursor is positioned during a user action into the variable &amp;lt;f&amp;gt;. If the cursor is on a field, the system sets SY-SUBRC to 0, otherwise to 4.&lt;/P&gt;&lt;P&gt;The additions to the GET CURSOR statement have the following functions:&lt;/P&gt;&lt;P&gt;  OFFSET writes the cursor position within the screen element to the variable &amp;lt;off&amp;gt;.&lt;/P&gt;&lt;P&gt;  LINE writes the line number of the table to the variable &amp;lt;lin&amp;gt; if the cursor is positioned in&lt;/P&gt;&lt;P&gt;a table control. If the cursor is not in a table control, &amp;lt;lin&amp;gt; is set to zero.&lt;/P&gt;&lt;P&gt;  VALUE writes the contents of the screen field in display format, that is, with all of its&lt;/P&gt;&lt;P&gt;formatting characters, as a string to the variable &amp;lt;val&amp;gt;.&lt;/P&gt;&lt;P&gt;  LENGTH writes the display length of the screen field to the variable &amp;lt;len&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 May 2007 15:14:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2183441#M464626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-07T15:14:37Z</dc:date>
    </item>
  </channel>
</rss>

