cancel
Showing results for 
Search instead for 
Did you mean: 

Lightweight AddOn not displaying matrix data on user defined screen

mclay
Explorer
0 Kudos

In SAP B1 10.0 FP 2208, a lightweight AddOn was recompiled to run on 64 bit and the option to support the web browser was selected. This is MS SQL not HANA.

The desktop client will display the expected matrix data on a user defined screen but the web browser client does not.

Shown below the desktop client (ap2ar-appclient.jpg) displaying 1 line item of data as expected.

The web client (ap2ar-webclient.jpg) does not display the matrix data; however, in System Messages, 1 line of data is indicated.

I have tried changing fonts to see if it is a display issue but that did not help.

Any ideas are welcome...

mclay
Explorer
0 Kudos

We have tried with multiple browsers (Chrome, FireFox, Edge) and matrix data is still not displayed.

Using debug, the matrix data is able to be printed to a log so it is on the screen just not displayed.

No exceptions show up in the debug log.

Accepted Solutions (0)

Answers (2)

Answers (2)

sumitsap96
Discoverer
0 Kudos

Hi Maria,

Add row code of matrix in constructor

or

Add row code of matrix at form add mode event

sumitsap96
Discoverer
0 Kudos

Hi Maria,

add row code of matrix add in the constructor

or

Add row code of matrix at form add mode event

oMatrixDocumentDtl.AddRow(1, 1);

((SAPbouiCOM.EditText)oMatrixDocumentDtl.Columns.Item("#").Cells.Item(oMatrixDocumentDtl.RowCount).Specific).Value = oMatrixDocumentDtl.RowCount.ToString();