cancel
Showing results for 
Search instead for 
Did you mean: 

How to trigger the event ON_DATA_CHECK?

0 Kudos

Hi experts,

I have a problem with the event ON_DATA_CHECK.

I have a WD component, that showing a ALV with editable cells, where the user can change data and these data to be validated.

I was looking and find that I should do this with the event ON_DATA_CHECK.

But the problem is that by changing a value, not trigger this event.

In my WD the standard functions are disabled

Some help?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Matias

Use the SET_DATA_CHECK method of interface IF_SALV_WD_TABLE_SETTINGS


  DATA : lr_table_settings TYPE REF TO if_salv_wd_table_settings.
data:
    l_VALUE type ref to Cl_Salv_Wd_Config_Table.

  l_VALUE = l_ref_INTERFACECONTROLLER->Get_Model(
  ).
 lr_table_settings = l_value.
lr_table_settings->SET_DATA_CHECK( '01' ).

Regards

Naresh

Answers (1)

Answers (1)

0 Kudos

Hi Naresh,

Thanks for the help, you resolve my problem.

Regards,

Matías.