cancel
Showing results for 
Search instead for 
Did you mean: 

How to sort a system matrix

Former Member
0 Kudos

I want to sort the data in the <Belegnachdruck> Matrix by the DocNum.

How can I handle it with SDK?

Accepted Solutions (1)

Accepted Solutions (1)

AlexGrebennikov
Active Contributor
0 Kudos

Hi!

what kind of "animal" is "Belegnachdruck"?

Former Member
0 Kudos

uupps... sorry, its the german word for Document Printing. I've forgot to replace my placeholder by the english word.

AlexGrebennikov
Active Contributor
0 Kudos

Hi!

thanx for translating

its too simple, here is code:

SAPbouiCOM.Matrix printMatrix = (SAPbouiCOM.Matrix)SBOApp.Forms.Item("191").Items.Item("3").Specific;
printMatrix.Columns.Item("1").TitleObject.Click(SAPbouiCOM.BoCellClickType.ct_Double, 0);

I don't know your project mission, but you can see here the main idea - double clicking by codeline over column header..

Hope it'll solve your problem!

Former Member
0 Kudos

This was exactly what I wanted to do!

Thanks......

Answers (0)