HI All,
Please help me for the following:
1. I have an add-on which is running in the last 3 years perfect
2. I have upgraded into 2007A version PL 42 (MSSQL 2005 SP2)
3. Addon was running perfect.
4. FROM Yesterday client by client i got the following message if i read a user defined table table by GETBYKEY method RPC_E_SERVERFAULT 0x80010105
first it was coming only one client, than later on coming step by step depending how many data has been readed and written by the client
For example:
Public Function GetNextDocNum() As Integer
'
Try
Dim oUserTableS As SAPbobsCOM.UserTable
'
oUserTableS = ocmp.UserTables.Item("IHB_STRR")
If (oUserTableS.GetByKey("1")) Then
GetNextDocNum = oUserTableS.UserFields.Fields.Item("U_DOCNUM").Value
GetNextDocNum = GetNextDocNum + 1
oUserTableS.UserFields.Fields.Item("U_DOCNUM").Value = GetNextDocNum
oUserTableS.Update()
End If
'
Catch ex As Exception
DisplayError(ex)
End Try
'
GC.Collect()
'
End Function
I have found notes: 1234122 and 1235603. (based on 1235603 have to rewrite all the procedures usign getbykey method, but it is impossible as fast soluion!)
The message comes independently from table records count.
It is working for 15 minutes (in normal data progress case) even i delete the sm_obs_dll directory.
Any idea?
J.
Edited by: Janos Nagy on Dec 16, 2008 12:06 PM
Edited by: Janos Nagy on Dec 16, 2008 12:08 PM
Edited by: Rui Pereira on Dec 23, 2008 4:50 PM