cancel
Showing results for 
Search instead for 
Did you mean: 

catch combo select event into a matrix

Former Member
0 Kudos

Hi I have a column with type combobox into a matrix.   but I can't catch the event when the combo change of value. 

the code for a normal combo is this

If pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT And pVal.ItemUID = "1000021" And pVal.BeforeAction = False Then

thanks for you help..

Accepted Solutions (1)

Accepted Solutions (1)

pedro_magueija
Active Contributor
0 Kudos

Hi Otto,

The event is the same and the code is also the same, only that the ItemUID will be the matrixID and you should check the pVal.ColUID to check if this the intended column.

If pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT And pVal.ItemUID = "<MatrixID>" And pVal.ColUID = "<ColUID>" And pVal.BeforeAction = False Then

Good luck.

Best regards,

Pedro Magueija

Former Member
0 Kudos

many thanks pedro...

Answers (0)