cancel
Showing results for 
Search instead for 
Did you mean: 

matrix coloum Editable False

Former Member
0 Kudos

dear all

i had set editable fasle to one matrix coloum but now i need to set ti true

but in the screen painter i set it to true but still at the run time it wont work

still i cant edit the value in that coloum.....

is there another way to remove the editable false?

thanks in advanece

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Set the column as editable in form load event through code.

Regards

Vivek

Former Member
0 Kudos

thanks for reply..

how and where i need to put that code?

and can you tell me the code i cant find out the code for that

means

omatrix.coloums.....?

Former Member
0 Kudos

Hi

Dim Mat As SAPbouiCOM.Matrix = oForm.Items.Item("MatrixName").Specific
          Dim column As SAPbouiCOM.Column = Mat.Columns.Item("columnName")
          column.Editable =True

Write this code in your after from load event

Hope this will help

Regards

Vivek

Answers (0)