<?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: Alv cursor problems in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764250#M1305409</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Your PBO should contain a call to the method 'REFRESH_TABLE_DISPLAY' and your PAI should contain a call to method 'CHECK_CHANGED_DATA' whenver you are dealing with editable ALV grids functionalities.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Jun 2009 16:41:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-15T16:41:58Z</dc:date>
    <item>
      <title>Alv cursor problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764247#M1305406</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;I want to set cursor on particulat cell of an ALV , I am using below method &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set_current_cell_via_id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &amp;lt;ref.var. to CL_GUI_ALV_GRID &amp;gt; -&amp;gt;set_current_cell_via_id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   EXPORTING &lt;/P&gt;&lt;P&gt;      IS_ROW_ID    =   &amp;lt;structure of type LVC_S_ROW &amp;gt; &lt;/P&gt;&lt;P&gt;      IS_COLUMN_ID =   &amp;lt;structure of type LVC_S_COL &amp;gt; &lt;/P&gt;&lt;P&gt;      IS_ROW_NO    =   &amp;lt;structure of type LVC_S_ROID &amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but cursor is not moving to required cell , please let me know if need to pass some thing else or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what should be method that i should use to focus cursor on a particular cell of an alv &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;Ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 11:50:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764247#M1305406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T11:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Alv cursor problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764248#M1305407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check This code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 CALL METHOD GRID-&amp;gt;REFRESH_TABLE_DISPLAY.

  ROW-INDEX = LV_LINES.               "Your row num where the cursor should be placed
  COL-FIELDNAME = 'VBELN'.           "Field on which the cursor should be placed.

  CALL METHOD GRID-&amp;gt;SET_CURRENT_CELL_VIA_ID
    EXPORTING
      IS_ROW_ID    = ROW
      IS_COLUMN_ID = COL.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;R K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764248#M1305407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Alv cursor problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764249#M1305408</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;its better to use the method 'SET_CURRENT_CELL_ROWPOS_COLID'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please check if you have specified your field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

 READ TABLE LT_DATA INTO LS_DATA_EXT INDEX I.
    IF SY-SUBRC eq 0.
      L_START_POS   = LS_DATA_EXT-FDPOS + 1.
      L_END_POS     = L_START_POS + L_LENGTH - 1.
      CALL METHOD ME-&amp;gt;SET_CURRENT_CELL
                  EXPORTING I_START_POSITION = L_START_POS
                            I_END_POSITION   = L_END_POS
                            I_ROW            = LS_DATA_EXT-ROW_POS
                            I_COLUMN         = LS_DATA_EXT-COL_POS.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 12:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764249#M1305408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T12:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Alv cursor problems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764250#M1305409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Your PBO should contain a call to the method 'REFRESH_TABLE_DISPLAY' and your PAI should contain a call to method 'CHECK_CHANGED_DATA' whenver you are dealing with editable ALV grids functionalities.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 16:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-cursor-problems/m-p/5764250#M1305409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-15T16:41:58Z</dc:date>
    </item>
  </channel>
</rss>

