<?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: TableView in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tableview/m-p/4560467#M1076510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank Yoy for help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI:&lt;/P&gt;&lt;P&gt;module TMPMODULE input.&lt;/P&gt;&lt;P&gt;DATA: L_FIELD(50),&lt;/P&gt;&lt;P&gt;      L_LINNO TYPE I.&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD L_FIELD LINE L_LINNO.&lt;/P&gt;&lt;P&gt;  data wa1 like line of MYTABLEVIEW-cols.&lt;/P&gt;&lt;P&gt;  data NextExit type c.&lt;/P&gt;&lt;P&gt;  NextExit = ''.&lt;/P&gt;&lt;P&gt;  LOOP AT MYTABLEVIEW-cols into wa1.&lt;/P&gt;&lt;P&gt;      IF NextExit = 'X'.&lt;/P&gt;&lt;P&gt;        L_FIELD = wa1-screen-name.&lt;/P&gt;&lt;P&gt;      exit.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    if wa1-screen-name = L_FIELD.&lt;/P&gt;&lt;P&gt;      NextExit = 'X'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;endmodule.                 " TMPMODULE  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO:&lt;/P&gt;&lt;P&gt;module TMPMODULEPBO output.&lt;/P&gt;&lt;P&gt;    SET CURSOR FIELD L_FIELD LINE L_LINNO. &lt;/P&gt;&lt;P&gt;endmodule.                 " TMPMODULEPBO  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Andrej S on Oct 8, 2008 4:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Oct 2008 12:33:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-08T12:33:33Z</dc:date>
    <item>
      <title>TableView</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tableview/m-p/4560465#M1076508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Professionals!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using TableView in my program. When pressed 'Enter', cursor is moved to next line, but I want to put it to next field. How I can do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 09:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tableview/m-p/4560465#M1076508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T09:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: TableView</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tableview/m-p/4560466#M1076509</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;You would have to code this manually using the set cursor command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Darren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 12:07:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tableview/m-p/4560466#M1076509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T12:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: TableView</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tableview/m-p/4560467#M1076510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank Yoy for help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI:&lt;/P&gt;&lt;P&gt;module TMPMODULE input.&lt;/P&gt;&lt;P&gt;DATA: L_FIELD(50),&lt;/P&gt;&lt;P&gt;      L_LINNO TYPE I.&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD L_FIELD LINE L_LINNO.&lt;/P&gt;&lt;P&gt;  data wa1 like line of MYTABLEVIEW-cols.&lt;/P&gt;&lt;P&gt;  data NextExit type c.&lt;/P&gt;&lt;P&gt;  NextExit = ''.&lt;/P&gt;&lt;P&gt;  LOOP AT MYTABLEVIEW-cols into wa1.&lt;/P&gt;&lt;P&gt;      IF NextExit = 'X'.&lt;/P&gt;&lt;P&gt;        L_FIELD = wa1-screen-name.&lt;/P&gt;&lt;P&gt;      exit.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    if wa1-screen-name = L_FIELD.&lt;/P&gt;&lt;P&gt;      NextExit = 'X'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;endmodule.                 " TMPMODULE  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO:&lt;/P&gt;&lt;P&gt;module TMPMODULEPBO output.&lt;/P&gt;&lt;P&gt;    SET CURSOR FIELD L_FIELD LINE L_LINNO. &lt;/P&gt;&lt;P&gt;endmodule.                 " TMPMODULEPBO  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Andrej S on Oct 8, 2008 4:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 12:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tableview/m-p/4560467#M1076510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-08T12:33:33Z</dc:date>
    </item>
  </channel>
</rss>

