cancel
Showing results for 
Search instead for 
Did you mean: 

chek column in matrix

Former Member
0 Kudos

in the form bill of exchange management

Set oMatrix = oForm.Items.item("5").Specific

the first column "9" (type it_check),

what i want is when is cheked catch this row

how can i do this?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Miguel

try with

        If pVal.FormType = "FormType then" Then
            If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK Then
                If pVal.ItemUID = "MatrixUID" Then '5?
                    If pVal.ColUID = "ColumnUID" Then '9?
                        SBOApp.MessageBox("Row number is: " & pVal.Row)
                    End If
                End If
            End If
        End If

HTH

Juli

Answers (0)