cancel
Showing results for 
Search instead for 
Did you mean: 

SBO 2007 PL41 - problem?

Former Member
0 Kudos

With new PL41 I have problem with vendor order. When the order has more lines (I mean more than 10), then creation of order takes too long and sometimes it blocks the table OITM and all users cannot work.

Before PL41 creation of order took about 15 seccond and the same takes now more then 10 minutes.

Has somebody this experience or some feedback for this PL?

thanks

Accepted Solutions (1)

Accepted Solutions (1)

anna_shao
Participant
0 Kudos

Hi, Petr,

I have not heard of familiar issue in 2007A PL41.

And then, I tested in Demo system.

I created a purchase order with 15 lines and it took about

2 or 3 seconds.

So I think it may be relevant with some special settings or data in your database. Please check first whether there are too many format searches defined?

If you still sufferred from this case, please kindly report a message and let our consultant to help you more.

Regards,

Anna

Former Member
0 Kudos

Hello Petr,

I remember problems with adding-lines-performance we had a longer time ago (not 2007...).

The solution was to use a seperate instance of the documentLines object:

Instead of (for example):...


Dim oInv As SAPbobsCOM.Documents
'         :
'         :
' Header
oInv.DocDate = CVTools.DbDate2Date(oUds.Item("UDS_DOCDAT").ValueEx)
'         :

'### AddingLinesLoop:
'#
'         :
oInv.Lines.UnitPrice = 1.23
oInv.Lines.Currency = "USD"
'         :
'         :
'#
'###

...it has helped to use a DocLinesObject:


Dim oInv As SAPbobsCOM.Documents
Dim oInv1 As SAPbobsCOM.Document_Lines
'         :
'         :
' Header
oInv.DocDate = CVTools.DbDate2Date(oUds.Item("UDS_DOCDAT").ValueEx)
'         :

oInv1 = oInv.Lines
'### AddingLinesLoop:
'#
'         :
oInv1.UnitPrice = 1.23
oInv1.Currency = "USD"
'         :
'         :
'#
'###

Former Member
0 Kudos

I will check it and let you know. Thanks

Answers (1)

Answers (1)

Eneveux
Product and Topic Expert
Product and Topic Expert
0 Kudos

Petr,

I have not heard of this issue, but I have also not installed PL41 yet and tested. Have you opened a message with SAP Support on this?

Eddy

Former Member
0 Kudos

I havent ticket yet, but I think that is no other possibility to solve this problem. I will send ticket and let you know.