Hi Joderick
You can get the values, you'l need to use item event, this example is just something i scartched up quickly. It will look at the item column, compare that value with what ever value and display true if they are equal. It will be done once you choose an itemcode and tab out the column. You must then just change it to look by your column, use debug info in sbo to get columnid.
If pVal.FormType = 133 Then
If pVal.ColUID = "1" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_VALIDATE Then
If pVal.BeforeAction = True Then
oMatrix = SBO_Application.Forms.Item(FormUID).Items.Item("38").Specific
oEdit = oMatrix.Columns.Item("1").Cells.Item(pVal.Row).Specific
Dim str As String = oEdit.Value
if str="Itemcode" them msgbox("true")
end if
end if
end if
Hope this helps 😊
Add a comment