Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BallpointPenguin

    Error in trying to insert a customer

    I'm using VB.NET.
  2. BallpointPenguin

    ACCPAC COM Error Messages are unclear...

    Thanks for the response, ettienne. In answer to your question, yes we do have a oeordh.init() call. We don't have a oeordh.order = 0 call, but I'll put that in to see what happens. This program is designed to be run on the server (where we retrieve encrypted XML files from our web-based...
  3. BallpointPenguin

    ACCPAC COM Error Messages are unclear...

    I also see that I cut off part of my original post. What I was trying to say was that, when I invoke the .Insert call for the AccPacDataView object I am using for data, then I get the first error message: SageCRM Connection Failed. System error. Cannot log in to SageCRM web server. Error...
  4. BallpointPenguin

    ACCPAC COM Error Messages are unclear...

    The error handling routine is what generated the error messages that I showed above. This was being done in VB.NET. As for the point of failure, here is what happens: llngSuccess = dblink.OpenView("OE0520", oeordh) 'compose the Order Entry Order Header views llngSuccess =...
  5. BallpointPenguin

    ACCPAC COM Error Messages are unclear...

    This error message appears whenever I create a new customer in ARCUS (using an AccpacDataview called ovARCUST, and invoking the SageCRM Connection Failed. System error. Cannot log in to SageCRM web server. Error returned: Logon ERROR:ActiveX component can't create object The customer record...
  6. BallpointPenguin

    Error in trying to insert a customer

    Well, I think I found what was causing the "record already exists" error. That was the fact that I was looking at one table for generating a unique customer ID, and that table hadn't been updated with the last created record, so that complicated matters. Once I got everything synchronized, that...
  7. BallpointPenguin

    Error in trying to insert a customer

    '... Dimension variables ... Dim Session As New AccpacSession Dim dblink As AccpacDBLink Dim ovarcustomer as AccpacView Dim ovARCUSO as AccpacView Dim ary5a(0) as AccpacView Dim ary5b(0) as AccpacView Dim llngSuccess as Long Dim lbolTemp as Boolean Const ACCPACuid as String = "" 'fill with user...
  8. BallpointPenguin

    Creating ARCUSO fields in VB.NET

    Did any of you hear that a couple of hours ago? That was the sound of my forehead being slapped. What I did was add something after the above second section of code... If ovARCUSO.LastReturnCode <> AccpacCOMAPI.tagViewReturnCode.VC_SUCCESS Then ...generate error message... End If...
  9. BallpointPenguin

    Creating ARCUSO fields in VB.NET

    I've tried it, but it still isn't working. Here is the revised code: Dim ovarcustomer as AccpacView Dim ovARCUSO as AccpacView Dim ary5a(0) as AccpacView Dim ary5b(0) as AccpacView Dim llngSuccess as Long llngSuccess = dblink.OpenView("AR0024", ovarcustomer) ary5a(0) = ovarcustomer...
  10. BallpointPenguin

    Creating ARCUSO fields in VB.NET

    BTW, Tuba - Thanks for your reply. I pretty much got thrust into this, and greatly appreciate any help I can get on understanding ACCPAC.
  11. BallpointPenguin

    Creating ARCUSO fields in VB.NET

    So, in that case, you recommend: llngSuccess = dblink.OpenView("AR0024", ovarcustomer) llngSuccess = dblink.OpenView("AR0400", ovARCUSO) ovarcustomer.Compose(ARCUSO) ovARCUSO.Compose(arcustomer) Would that be what you're suggesting?
  12. BallpointPenguin

    Creating ARCUSO fields in VB.NET

    I am trying to get information written to the ARCUSO fields as we migrate our system from 5.2 to 5.4. I am trying to store information retrieved elsewhere, and here is what I'm trying to do: Session.Open(ACCPACuid, ACCPACpwd, ACCPACcomp, Now, 0, "") dblink =...

Part and Inventory Search

Back
Top