cancel
Showing results for 
Search instead for 
Did you mean: 

matrix add and delete

Former Member
0 Kudos

Hi

i am developing a indent form in that i placed a matrix.

can u plz get me some hints of adding rows and deleting rows..

now i am placing buttons and writing code to do these tasks..

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,


Dim OCT_Form As SAPbouiCOM.Form
Dim OCT_Matrix As SAPbouiCOM.Matrix
OCT_Form = OCT_Application.Forms.Item("FormUID")
OCT_Matrix = OCT_Form.Items.Item("MatrixUID").Specific

'To add row in the matrix use
OCT_Matrix.Addrow()

'To Delete Row from the matrix use
OCT_Matrix.DeleteRow()

Hope this will help you.

Regards,

Mahendra

Edited by: Mahendrakumar on Sep 25, 2008 2:18 PM

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

You can find many examples if search SDK Forum for matrix row words..

Hope to help

Regards

Sierdna S.