cancel
Showing results for 
Search instead for 
Did you mean: 

Databound column in matrix

0 Kudos
45

How do I get the ultimate value of a cell in a databound column ? I'm retrieving the cell as a SAPbouiCOM.Cell object but I cannot cast it to anything specific that can be displayed as a value. The value comes from a table and is an integer.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hello

dim oEditText as SAPbouiCOM.EditText
oEdiText = Omatrix.columns.items("COLINDEX").Cells.item("ROWINDEX").Specific

value = oEditText.Value

If it is an Editbox contol. By this example you can cast any types.

Regards

J

0 Kudos

I found the best way to do this is to serialize the matrix item's data and then deserialize it into a .NET class created with xsd.exe and the schema which can be emitted by the matrix item.

Former Member
0 Kudos

What do you refer to as the ultimate value of a cell ? Give a specific example.

Thanks,

Gordon