Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to capture user entered data from input enabled ALV grid?

Former Member
0 Kudos

Hi,

I have an input enabled ALV grid, which has 4 columns. First column is prepopulated with 5 rows of data, other 3 columns are input enabled out of which 1 column has checkbox.

Now I want to read the data entered by user.

How do I get my internal table populated with the ALV's current data?

I am using OO to build the ALV.

Thank You in advance.

SAC.

2 REPLIES 2

Former Member
0 Kudos

Hi

Maybe these may help you.


DATA REF1 TYPE REF TO CL_GUI_ALV_GRID.
  CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
      E_GRID = REF1.
  CALL METHOD REF1->CHECK_CHANGED_DATA.

regards

Kumar M

Former Member
0 Kudos
CALL METHOD g_ref_alv->CHECK_CHANGED_DATA .

This method will update the internal table based on the alv grid where user has entered values.

Regards

Sathar