Quantcast
Channel: SCN : All Content - All Communities
Viewing all articles
Browse latest Browse all 8419

Set Cursor on ALV Grid

$
0
0

i am trying to set the cursor on an ALV Grid display so that the field can be editted....

 

 

 

 LOOP AT lt_fieldnames INTO ls_fieldnames.    IF NOT ls_fieldnames-colortab IS INITIAL.      ls_row_no-row_id       = sy-tabix.      ls_column_id-fieldname = 'VALUE'.      EXIT.    ENDIF.  ENDLOOP.


*--- Set focus to cell that contains error
 CALL METHOD grid_editmsg->set_current_cell_via_id  EXPORTING       is_column_id = ls_column_id       is_row_no    = ls_row_no  

 

the field is highlighted but i still have to click in the field to edit the contents....

 

is there a method/fm i can use that makes the field directly editable????


Viewing all articles
Browse latest Browse all 8419

Trending Articles