Error -2028

Good Day
Experts:
I have run into an error that I am unable to find information on.  It is number -2028 "Associated statement is not prepared".  This results when I try add a query programatically using this code:
Dim sboUserQuery As SAPbobsCOM.UserQueries
sboUserQuery = g_B1Connection.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserQueries)
With sboUserQuery
        .QueryCategory = CatId
        .QueryDescription = sQueryName(loopCnt)
        .Query = sQueryDesc(loopCnt)
End With
retVal = sboUserQuery.Add()
Do you have any insight on this problem?
Thanks for helping,
EJD

Hi Ed,
SQL Profiler is a very useful tool to know how to use. It may help in this case, certainly to try and isolate where the error is occurring. To me the error message suggested that the SQL command(s) that the DI API is sending are incorrect. The reason I asked about whether it happens on all adds or not was because there might have been a special character in your input parameters which causes a syntax error for SQL. Now that you mention that it always worked before patch 43, I'm inclined to think its a patch bug in the DI API.
Of course, I could be wrong about the cause of the problem (...wouldn't be the first time ) but using SQL Profiler would show firstly whether the DI API actually sends commands to SQL relating to the query tables (ie you should see insert statements that add your query). If no commands get sent then the error is happening within the DI API before this point. If you can see commands then you can see if the syntax looks ok.
SQL Profiler is easy to set up and run if you are on a test system where no other users are entering data. On a live system, it can still be used but it's more of a pain to set up as you have to first filter out all other SQL traffic, otherwise you'll be looking for that proverbial needle.
Kind Regards,
Owen

Similar Messages

  • Error 2028 customer not found , SBO 2007

    I get error an error sometimes when creating sales order through the SDK
    Error Detail:
    2028 customer not found
    However the customer does exist and lot of sales order were created of the same customer
    Any hint
    Sincerely yours
    Riade Asleh

    Hi Riade,
    Just check for spelling mistakes and if all the other data is in place.
    Regards,
    Vasu Natari.

  • Error -2028 Update No matching records found (ODBC -2028)

    An apology for my English, I'm trying to update a field but I get this error:
    No matching records found (ODBC -2028)
    This is part of the code that I use to add new ones and works fine, when I change the oItems.Add (); by oItems.Update () does not work.
    public static void addItem(DataRow itemObject)
       oItems = (SAPbobsCOM.Items)(oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems));
       oItems.ItemCode = itemObject["ItemCode"].ToString();
       oItems.ItemName = itemObject["ItemName"].ToString();
       lRetCode = oItems.Add();
       if (lRetCode != 0)
          oCompany.GetLastError(out lErrCode, out sErrMsg);
    I get the data from MySql, and I tried putting the data manually from an existing record and does not work
    Any ideas why?

    Hi,
    Before you can call Update on an item you need to call the GetByKey method to retrieve the item you want to update:
    public static void updateItem(DataRow itemObject)
       oItems = (SAPbobsCOM.Items)(oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems));
       if(oItems.GetByKey(itemObject["ItemCode"].ToString())
            oItems.ItemName = itemObject["ItemName"].ToString();
            lRetCode = oItems.Update();
            if (lRetCode != 0)
                    oCompany.GetLastError(out lErrCode, out sErrMsg);
    Kind Regards,
    Owen

  • Incoming Payment Error(-2028) Data source - No data found, pls help me

    Dear friend,
    Im struggle in Adding Incomming Payment, I got -2028 Error msg,
    DATA SOURCE – NO DATA FOUND pls help me to solve
    Its My code
    Public Sub incopay(ByVal oform As SAPbouiCOM.Form)
            Dim incom As SAPbobsCOM.Payments
            Dim value As Integer
            Dim strerror As String
            Try
                Dim rset As SAPbobsCOM.Recordset
                oitem = oform.Items.Item("om")
                oedit = oitem.Specific
                vfd1 = oedit.String
                incom = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oIncomingPayments)
                incom.AccountPayments.AccountCode = acc
                incom.AccountPayments.AccountName = accn
                incom.AccountPayments.Decription = "deposit"
                incom.AccountPayments.SumPaid = vfd1
                'incom.CardCode = "C1"
                'incom.CardName = "Shama Broadcast Contents & Services (P) Ltd."
                incom.DocDate = Now
                incom.DueDate = Now
                incom.TaxDate = Now
                incom.DocCurrency = "INR"
                incom.Reference2 = 2
                incom.JournalRemarks = "Incoming Payments - 161020"
                'incom.AccountPayments.Add()
                'value = incom.Add
                incom.CheckAccount = "102020"
                incom.Checks.DueDate = Now
                incom.Checks.CountryCode = "IN"
                incom.Checks.BankCode = "HDFC"
                incom.Checks.Trnsfrable = SAPbobsCOM.BoYesNoEnum.tNO
                incom.Checks.CheckSum = 100
                incom.Checks.Add()
                incom.AccountPayments.Add()
                value = incom.Add
            Catch ex As Exception
                oapp.MessageBox(ex.Message)
            End Try
            ''incom.AccountPayments.Add()
            ''value = incom.Add()
            If value <> 0 Then
                ocompany.GetLastError(value, strerror)
                MsgBox(value & "   " & strerror)
            End If
        End Sub
    Regards,
    Hempradeep.S

    Hi Hempradeep,
    I haven't tried executing your code, but suggest that you try and solve it with elimination. This means you make your code shorter and shorter until it posts.
    So firstly take out the account payment and the check payments and just do a cash payment and see if it posts. If it posts then you gradually add the code you hade previously until it gives you that error again.
    That error you got can be because of many reasons. It could be that the cardcode, gl account, currency, etc, etc, etc does not exist. It could be because of any data you specify from another table does not exist or does not relate to this object. Like when you're posting to a customer and you actually specify a supplier (just an example and not your problem).
    Start with a very basic incoming payment and work your way up to the code you've got there now.
    Good luck,
    Adele

  • SecurityError: error #2028

    Hi,
    Really new to flash. I made a small movie ad that is going to online pubs. It's got a link to an offsite URL. On my server it gets security message #2028, on my desktop, not. Will this be a problem or will the pub get the information from the HTML?
    Thanks

    you mean you get that error when testing locally and not when your swf is on a server, correct?

  • Error -2028 : No matching Record found while adding Incoming payment

    Hi all,
             I was trying  to add an Incoming Payment using DI API, checked both DocEntry and ChequeSum property..and all other properties and seems set as well, it would be better if you can give any solution.Thank you
    Regards
    Sijimon Sidharthan
    oPay.CardCode = oInvoice.CardCode;
                                       string sCardName=oInvoice.CardName;
                                  oPay.CardName = oInvoice.CardName;
                                  oPay.JournalRemarks = "820 Import Test" +  oInvoice.CardCode;
                                  oPay.ApplyVAT = SAPbobsCOM.BoYesNoEnum.tYES;
                                  oPay.CashSum = 189.77;
                                       int conP=oInvoice.ContactPersonCode;
                                  oPay.ContactPersonCode = oInvoice.ContactPersonCode;
                                       string cur =oInvoice.DocCurrency;
                                  oPay.DocCurrency = oInvoice.DocCurrency;
                                  oPay.DocDate = now;
                                  oPay.TaxDate = now;
                                  oPay.DocRate = 0;
                                  oPay.LocalCurrency = SAPbobsCOM.BoYesNoEnum.tYES;
                                  oPay.DocType = SAPbobsCOM.BoRcptTypes.rCustomer;//rAccount;
                                  oPay.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO;
                                  oPay.Remarks = "remarks";
                                  oPay.Reference1 =iBaseRef.ToString();//"R";
    //                              oPay.TransferAccount = "10100";//OTRC doesn't contain any code
    //                              oPay.TransferDate = now;
    //                              oPay.TransferSum = 0;
                                  #region Invoice
                                  oPay.Invoices.AppliedFC = 0;
                                  oPay.Invoices.DocEntry = iBaseRef;//baseEntry;
                                       int ln=oPay.Invoices.LineNum ;
                                  oPay.Invoices.DocLine = 0;
                                  oPay.Invoices.InvoiceType = SAPbobsCOM.BoRcptInvTypes.it_Invoice;
                                  //oPay.Invoices.InvoiceType = SAPbobsCOM.BoRcptInvTypes.it_ChequesForPayment;
                                  oPay.Invoices.SumApplied = 189.77;//amount;
                                  oPay.Invoices.Add();
                                  #endregion Invoice
                                  #region Cheque
                                  oPay.Checks.BankCode ="026008866"; //"026002794";//"Leumi";
                                  oPay.Checks.CheckAccount="10200-00";//"10203";//-00";//"1HD";10203-00
                                  oPay.Checks.DueDate=Convert.ToDateTime("04/03/2007");
                                  oPay.Checks.CheckSum =189.77;
                                  oPay.Checks.CheckNumber = 12345678;
                                  oPay.Checks.Add();
                                  #endregion Cheque
    int ret=oPay.Add();
                                  if(ret!=0)
                                       int lErrCode; string sErrCode;
                                       oCompany.GetLastError(out lErrCode, out sErrCode);
                                       MessageBox.Show(ret.ToString ()+ sErrCode);

    Hi Lan,
              I tried to add IncomingPayment with another Database works fine with all these properties..think some extra settings may be there in the database now I'm working , do you have any idea regarding to solve this issue ..Thank you
    Regards
    Sijimon Sidharthan

  • -2028 Error: No Matching Records Found

    Good Day
    Experts:
    I am using the oPurchaseOrder object to build a PurchaseOrder from an approved Material Requisition. I am getting an error: -2028 No Matching Records Found.  This error number is not in the list.  Does anyone have experience with what it means?
    Thanks,
    EJD

    Hey There
    Here is the code.  I thought I saw somewhere that there are requirements for what needs to be passed to the object.  However, I cannot recall where that is at...Forum, Notes here or in the Help files.  What again is required to be passed to the oPurchaseOrder object? I seem to think CardCode, Item and Date maybe. 
    Dim vPurchaseOrder As SAPbobsCOM.Documents
    vPurchaseOrder = g_B1Connection.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders)
    vPurchaseOrder.DocObjectCode = SAPbobsCOM.BoObjectTypes.oPurchaseOrders
    vPurchaseOrder.Lines.ItemCode = Item
    vPurchaseOrder.Lines.ItemDescription = Description
    vPurchaseOrder.Lines.Quantity = Qty
    vPurchaseOrder.Lines.Price = EaCost 
    vPurchaseOrder.Lines.WarehouseCode = "STOCK"                     
    vPurchaseOrder.Lines.ShipDate = ReqDate
    vPurchaseOrder.CardCode = Supplier
    vPurchaseOrder.SalesPersonCode = SalesPersonCode
    vPurchaseOrder.DocumentsOwner = OwnerCode
    retVal = vPurchaseOrder.Add
    Thanks,
    EJD

  • Error while issuing an httpService from a local swf

    We have a swf that  includes a Flex HTTPService call to check for
    tomcat status. This  call is resulting to below error:
    Error #2028:  Local-with-filesystem SWF filefile:///C:/......./click.swfcannot  access Internet URLhttp://localhost:8600/.../dummy.html."
    We are able to get  over this error by adding this click.swf as "Always Allow"
    at http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.ht ml#119065
    However, in  production environment it is not feasible to do this manual  step.
    We would want to  know if there is a way to let the flash player know that this is  trusted
    by modifying  any config file of Flash player or flex.
    Please suggest. Any  pointers on resolving this is greatly appreciated

    Make sure you use -use-network=true.  Or AIR.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Error in saving invoice

    Hi
    I wrote an add-on that save an invoice when the user click on the add button in the invoice form (133). My program add automatically some additional expenses to the document. If I save the invoice with a VATGRoup as CA the invoice is created, if I use the VATGRoup V2 I have this error "-2028 OACT No match record found". If I save the invoice without my add-on and I use VATGroup V2 the document is created.
    Can you help me?
    Thanks
    Rita

    Hi
    If I use my add-on on another database it saves the invoice correctly.
      vFattura.DocNum = .Items("8").Specific.String
      If .Items("78").Specific.Checked = True Then
         vFattura.HandWritten = tYES
      Else
         vFattura.HandWritten = tNO
      End If
      vFattura.DocCurrency = "EUR"
      vFattura.DocObjectCode = oInvoices
      vFattura.CardCode = Trim(.Items("4").Specific.String)
      vFattura.CardName = .Items("54").Specific.String
      vFattura.Address = .Items("6").Specific.String
    vFattura.DocDate=.Items"10").Specific.String            
    vFattura.DocDueDate =.Items("12").Specific.String
      vFattura.NumAtCard = .Items("123").Specific.String
      vFattura.Comments = .Items("16").Specific.String
      vFattura.JournalMemo = .Items("18").Specific.String
      vFattura.TaxDate=.Items("46").Specific.String
    dTotDoc =.Items("29").Specific.String
    dIVA=.Items.("27").Specific.String                                   
    vFattura.PaymentGroupCode = .Items("47").Specific.Selected.Value
    If .Items("3").Specific.Selected.Value = "I" Then
    vFattura.DocType = dDocument_Items
    Else
    vFattura.DocType = dDocument_Service
    End If
    For i = 1 To matRighe.RowCount - 1
      Set colRead = matRighe.Columns.Item("1")
      Set txtRead = colRead.Cells.Item(i).Specific
      If txtRead.String <> "" Then
        vFattura.Lines.ItemCode = txtRead.String
        Set colRead = matRighe.Columns.Item("3")
        Set txtRead = colRead.Cells.Item(i).Specific
        vFattura.Lines.ItemDescription = txtRead.String
        Set colRead = matRighe.Columns.Item("11")
        Set txtRead = colRead.Cells.Item(i).Specific
        vFattura.Lines.Quantity = txtRead.String
        Set colRead = matRighe.Columns.Item("17")
        Set txtRead = colRead.Cells.Item(i).Specific
        vFattura.Lines.Price=txtRead.String
        vFattura.Lines.Price = Mid(txtRead.String, 5)
        vfattura.lines.Vatgroup="V2"                
        vFattura.Lines.AccountCode = "310101"
        If i < matRighe.RowCount - 1 Then
           vFattura.Lines.Add
        end If

  • No Matching Record Found in Invoice Doc Creation (ODBC -2028)

    When I add an Invoice Document with DI Api, system returns a mysterious error : "-2028 No Maching Record found (ODBC -2028)".
    I work with SAP Business One 2005A SP01 PL11.
    My code is:
            ' Header
            vInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            TestataFattura = Split(strTestata, "|")
            '1  FTCLCodice          (Card Code)
            '2  FTDataFattura       (Doc Date)
            '3  FTCPCodice          (Payment Terms)
            '4  FTTotImponibile     (Total begin VAT)
            '5  FTTotIva            (VAT Total)
            '6  FTTotFattura        (Doc Total)
            '7  FTNumeroFattura     (Invoice Number)
            '8  FTRGCodice          (VAT Code)
            vInvoice.CardCode = TestataFattura(1)
            vInvoice.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
            vInvoice.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
            vInvoice.DocDate = Now 
            vInvoice.DocTotal = TestataFattura(5)
            Dim vecchiaData As DateTime = TestataFattura(2)
            Dim nuovaData As New DateTime
            nuovaData = vecchiaData.AddMonths(3)
            vInvoice.TaxDate = nuovaData 
            vInvoice.Comments = "Questa è una fattura importata da T.D. -NR: " & TestataFattura(6)
            counter = 0
            ' Lines
            While dettDataReader.Read
                vInvoice.Lines.SetCurrentLine(vInvoice.Lines.Count - 1)
                If dettDataReader.Item("DFImporto") <> 0 Then
                    vInvoice.Lines.ItemCode = dettDataReader.GetValue(2)
                    vInvoice.Lines.ItemDescription = dettDataReader.GetValue(3)
                    vInvoice.Lines.Price = dettDataReader.GetValue(4)
                    vInvoice.Lines.VatGroup = dettDataReader.GetValue(5)
                        vInvoice.Lines.AccountCode = dettDataReader.GetValue(6)
                    If dettDataReader.IsDBNull(8) Then
                        vInvoice.Lines.Quantity = 1
                    Else
                        vInvoice.Lines.Quantity = dettDataReader.GetValue(8)
                    End If
                    sFlagRigaDati = "Y"
                Else
                    vInvoice.Lines.FreeText = dettDataReader.GetValue(3)
                    sFlagRigaDati = "N"
                End If
                If sFlagRigaDati = "Y" Then
                    If vInvoice.Lines.LineNum <> 0 Then
                        vInvoice.Lines.Add()
                    End If
                End If
            End While
            If retval = 0 Then
                'Add the Invoice
                retval = vInvoice.Add
         End If
    Thanks for any help.
    AL.

    Hi Eddy,
    I have tried to use the code of example inserted in help of the SDK for the insertion of an invoice being used the same data that I must insert through SDK but the error remains the same one.
    The code that I have used as test is much simple one, I insert before the header and then two lines of detail.
    Source code in SDK Help:
    Sub AddInvoice_Click()
        Dim RetVal As Long
        Dim ErrCode As Long
        Dim ErrMsg As String
        'Create the Documents object
        Dim vInvoice As SAPbobsCOM.Documents
        Set vInvoice = vCmp.GetBusinessObject(oInvoices)
        'Set values to the fields
        vInvoice.Series = 0
        vInvoice.CardCode = "BP234"
        vInvoice.HandWritten = tNO
        vInvoice.PaymentGroupCode = "-1"
        vInvoice.DocDate = "21/8/2003"
        vInvoice.DocTotal = 264.6
        'Invoice Lines - Set values to the first line
        vInvoice.Lines.ItemCode = "A00023"
        vInvoice.Lines.ItemDescription = "Banana"
        vInvoice.Lines.PriceAfterVAT = 2.36
        vInvoice.Lines.Quantity = 50
        vInvoice.Lines.Currency = "Eur"
        vInvoice.Lines.DiscountPercent = 10
        'Invoice Lines - Set values to the second line
        vInvoice.Lines.Add
        vInvoice.Lines.ItemCode = " A00033"
        vInvoice.Lines.ItemDescription = "Orange"
        vInvoice.Lines.PriceAfterVAT = 118
        vInvoice.Lines.Quantity = 1
        vInvoice.Lines.Currency = "Eur"
        vInvoice.Lines.DiscountPercent = 10
        'Add the Invoice
        RetVal = vInvoice.Add
       'Check the result
        If RetVal <> 0 Then
            vCmp.GetLastError ErrCode, ErrMsg
            MsgBox ErrCode & " " & ErrMsg
        End If
    End Sub
    Many thanks for your help.
    Alex.

  • B1out type="object_full" Error Message?

    I am looking for an example of a "B1out type="object_full"" out format for an AR-Invoice or similar doc type? When I use the regular "type="object"" there are no errors but when I change it to the "type="object_full"" and add the Control and Payload elements as described in the schema's help file in B1i, it fales with "Exception : DI Error: (-2028) In "BP Code", enter vendor code". I have checked to make sure that the correct Vendor number is in the out message but have not succeeded. The DI API help is not clear on the required fields for AR-Invoice. Do you know what the required fields are for the AR-Invoice? I am using CardCode, DocDueDate and some other UDF's in the 'Documents' and ItemCode, Quantity and some other UDF's in the 'Document_Lines'.
    The reason I need to use the "type="object_full"" is because I have multiple B1out objects in the Final atom.

    I was told by SAP that the required fields for the "object" and "object_full" are the same. So, I have reduced the B1out to the following code:
    <B1out xmlns="" type="object_full">
    <Control>
           <method>Insert</method>
           <objectid>20</objectid>
           <keyname>DocEntry</keyname>
    </Control>
    <Payload>
          <Documents>
                 <row>
                       <CardCode>V1000</CardCode>
               </row>
          </Documents>
          <Document_Lines>
                <row>
                        <ItemCode>2001</ItemCode>
                        <Quantity>1697.0</Quantity>
              </row>
           </Document_Lines>
    </Payload>
    </B1out>
    I still receive the following error message:
    Exception : DI Error: (-20... Exception : DI Error: (-2028) In "BP Code", enter vendor code
    I have verified the vendor information in B1 to make sure the vendor exists etc...
    Any help would be appreciated.
    Thanks!

  • Web Services - Coldfusion error

    Hi, i get this error 2028 when i try to compile an exercise
    application.
    here´s the faultDetail="Unable to load WSDL. If
    currently online, please verify the URI and/or format of the WSDL (
    http://localhost:8500/flex2/myService.cfc?wsdl)"
    myService.cfc is part of the flex2 essential trainning files
    so it must be right.
    the file is there and coldfusion is running, what am I doing
    wrong?
    thanks in advance

    Don/t worry, I just fixed it, was just a newbie ( as I am)
    problem.
    I had to set the c:\flexWorkspace folder to the trusted
    folders in the flash player security settings. The exercise works
    now..
    thanks.

  • -2028 [nnm1], 'No matching records found (ODBC -2028)'

    Hi All
    When the AR invoice saving, I am getting the error -2028 [nnm1], 'No matching records found (ODBC -2028)'
    could any one help me in this regards
    Amal

    Hi ian
    Here is my source code.  Could you help me what may be the wrong.
         Dim i As Integer
            Dim RetVal As Long
            Dim ErrCode As Long
            Dim ErrMsg As String = ""
            Dim sItemCode As String
            Dim dblQty As Double
            Dim sItemName As String
            Dim dblPrice As Double
            Dim dblDis As Double
            Dim sTax As String
            Dim dblTotal As Double
            Dim vInvoice As SAPbobsCOM.Documents
            vInvoice = vCmp.GetBusinessObject(BoObjectTypes.oInvoices)
            vInvoice.CardCode = txtCardCode.Text
            vInvoice.CardName = lblCardName.Text
            vInvoice.HandWritten = BoYesNoEnum.tNO
            vInvoice.DocDate = lblDate.Text
            vInvoice.DocTotal = Val(lblGrTotal.Text)
            vInvoice.DocType = BoDocumentTypes.dDocument_Items
            vInvoice.DocObjectCode = 13
            Dim lSingleItem As ListViewItem
            For i = 0 To ListView1.Items.Count - 1
                sItemCode = ListView1.Items(i).Text
                lSingleItem = ListView1.Items.Item(i)
                sItemName = lSingleItem.SubItems.Item(1).Text
                dblQty = Val(lSingleItem.SubItems.Item(2).Text)
                dblPrice = Val(lSingleItem.SubItems.Item(3).Text)
                dblDis = Val(lSingleItem.SubItems.Item(4).Text)
                sTax = lSingleItem.SubItems.Item(5).Text
                dblTotal = Val(lSingleItem.SubItems.Item(6).Text)
                vInvoice.Lines.ItemCode = sItemCode
                vInvoice.Lines.ItemDescription = sItemName
                vInvoice.Lines.Quantity = dblQty
                vInvoice.Lines.Price = dblPrice
                vInvoice.Lines.Currency = "INR"
                vInvoice.Lines.TaxCode = "VAT0"
                vInvoice.Lines.PriceAfterVAT = dblPrice
             if i>0 then vInvoice.Lines.Add()
            Next i
            RetVal = vInvoice.Add
            'Check the result
            If RetVal <> 0 Then
                vCmp.GetLastError(ErrCode, ErrMsg)
                MsgBox(ErrCode & " " & ErrMsg)
            End If

  • No matching records found (NNM1)(ODBC-2028)

    Hi,
    While adding approved A/P invoice i am getting the above error.
    Please help
    Thanks
    Md.nazeer Shaikh

    You may check these for reference:
    [NNM1] , 'No matching records found (ODBC -2028)'
    -2028 [nnm1], 'No matching records found (ODBC -2028)'
    [Create a Quotations] error 2028: No matching records found
    And SAP Note Number: 1178582 if applicable.
    Thanks,
    Gordon

  • -2028:No matching records found (ODBC -2028)

    My client lost their CRM data, so they restored the CRM database and have since contiuned processing.  Now they are getting this error:
    -2028:No matching records found (ODBC -2028)
       at NetPoint.SynchSBO.SBOObjects.SBOPartner.NetPointToSBO(NPQueueObject qData)
       at NetPoint.SynchSBO.SynchObjectBase.Synch()
    This was on the BPs. How can I correct this error?

    I am still working on  this problem.  I have looked in B1 for those BPs that are in the WebCRM.  However, every one of those BPs from WebCRM are in the B1 database.  I have tried going into the CRM changing one of those BPs  Save it.  When I run a synch. I still get the error.  The same is happening for NPActivity on Adds and Updates.  It looks like this:
    -5002:User does not exist   OCLG.AttendUser  at
    NetPoint.SynchSBO.SBOObjects.SBOContacts.NePointToSBO (NPQueueObjectqData) at NetPoint.SynchSBO.SynchObjectBase.Synch()
    Bryce do you have any more suggestions?  I can use it.
    Thanks
    Edited by: Chester Hargrove on Mar 10, 2009 11:31 PM
    Edited by: Chester Hargrove on Mar 10, 2009 11:33 PM

Maybe you are looking for