Addon is blocked SBO 2005 SP01 PL04

Hi,
We have an addon that runs perfectly on SBO 2005 SP0 PL11, but on SP01 PL04 I get the error "Addon is blocked, restart, logoff, go on without addon".
Has anyone noticed this?
Regards
Ad

Hi Ad,
Well, as you certainly saw, this is the standard message coming up whenever an Add-On stopped.
Does it still happen - or did you resolve the issue in my absence?
If not:
From your question I suppose it happens when you start the Add-On right?
Did you use VB .NET or C#(.NET)? - If yes, did you check the logs of the B1TE .NET Profiler?
Any chance to find out more precisely when the Add-On stops working?
What happens if you recompile your Add-On on SP01 + reinstall it?
Regards,
Frank

Similar Messages

  • SBO 2005 SP01 - New installation package

    Hi.
    I'm testing MS SQL 2005.
    I need the complete installation package for SBO 2005 SP01. I cannot find it on the partner portal. I'm only able to find the upgrade packages PL01 an PL03.
    Anyone got the complete package ?
    Regards,
    Jostein Kastet

    Hi Jostein,
    The SBO 2005 SP01 is only an upgrade of the 2005 version.
    Please upgrade to the last 2005 patch, then upgrade to SP01 PL01 and after that apply the patch PL03.
    Hope it helps
    Trinidad.

  • SBO 2005 SP01

    Hi all,
    I have just downloaded SBO 2005 SP01 Patch 01 and 02 from the website.
    This is still a prerelease for testing only.
    Regards
    Ad

    It's for partners only - you need to download it from SAP Servicemarketplace...
    Please checkout this article about changes, limitations, how to give feedback etc published in the SAP Business One Developer Area here on SDN!
    http://www.sdn.sap.com/irj/sdn/developerareas/businessone?rid=/webcontent/uuid/f3169a1c-0a01-0010-4ebd-abd65b029c71 [original link is broken]
    Best regards,
    Frank
    Message was edited by: Frank Moebius

  • AddOn debug with SBO 2005 Client only istalled

    I have 2003 .Net Visual Studio and SBO 2005 SDK installed localy. I also have only SBO 2005A (pl 12) Client instalation.
    I get a wrong connection string error when connecting with Application object to an instance of SBO Client;
    Is it possible to debug a C# AddOn project if I have only SBO 2005 Client istalled (no Server installation)?

    private string[] commandArgs;
    private string appPath;
    private string connectionString;
    private SBOApplication     uiConnection;
    commandArgs = System.Environment.GetCommandLineArgs();
    if(commandArgs != null)
      if(commandArgs.Length == 2)
         appPath = commandArgs[0];
         connectionString = commandArgs[1];
    try
      uiConnection = new SBOApplication(connectionString);
    catch(Exception e)
      MessageBox.Show(this, e.Message);
      this.Close();
      Application.ExitThread();

  • Price during creating of Draft/Purchase Order fails in SP01 PL04

    Hi,
    we try to port an add-on of us to B1 2005 SP01 PL04. The Add-On create a Draft/Purchase Order by DI Api. Doing so works fine in 2005A SP00 PL08 and PL11.
    Now we try to run it at SP01 and we got wrong prices in the DB.
    Here some sample code in C#:
    SAPbobsCOM.Documents document;
    if(createAsDraftDocument == true)
      document = (SAPbobsCOM.Documents)MainClass.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDrafts));
    else
      document = (SAPbobsCOM.Documents)(MainClass.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders));
    document.DocObjectCode = SAPbobsCOM.BoObjectTypes.oPurchaseOrders;
    filling the documents head data
    // adding a document line
    document.Lines.Add();
    // filling line
    document.Lines.ItemCode = 1;
    document.Lines.SupplierCatNum = otherValue;
    document.Lines.Quantity = 1;
    document.Lines.Price = 1;
    // adding the document
    if(document.Add() != 0)
      throw(new DocumentCreationException(MainClass.Company.GetLastErrorDescription());
      // everything OK now
      // fetch last docentry as docentry and save as xml
      SAPbobsCOM.Documents d = (SAPbobsCOM.Documents)(MainClass.Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDrafts));
      d.GetByKey(Convert.ToInt32(docEntry));
      string fn = @"E:\draft.xml";
      d.SaveXML(ref fn);
    In the XML I found:
    <?xml version="1.0" encoding="UTF-16"?>
    <BOM>
         <BO>
              <AdmInfo>
                   <Object>112</Object>
              </AdmInfo>
              <ODRF>
                   <row>
                        <DocEntry>6</DocEntry>
                        <DocNum>4</DocNum>
                        <DocType>I</DocType>
                        <CANCELED>N</CANCELED>
                        <Handwrtten>N</Handwrtten>
                        <Printed>N</Printed>
                        <DocStatus>O</DocStatus>
                        <InvntSttus>O</InvntSttus>
                        <Transfered>N</Transfered>
                        <ObjType>22</ObjType>
                        <DocDate>20060615</DocDate>
              <DRF1>
                   <row>
                        <DocEntry>6</DocEntry>
                        <LineNum>0</LineNum>
                        <TargetType>-1</TargetType>
                        <TrgetEntry>0</TrgetEntry>
                        <BaseRef/>
              <TaxOnExpFc>0.000000</TaxOnExpFc>
                        <TaxOnExpSc>0.000000</TaxOnExpSc>
                                  <DRF1>
                   <row>
                        <DocEntry>6</DocEntry>
                        <LineNum>0</LineNum>
                        <TargetType>-1</TargetType>
                        <TrgetEntry>0</TrgetEntry>
                        <BaseRef/>
              <TaxOnExpFc>0.000000</TaxOnExpFc>
                        <TaxOnExpSc>0.000000</TaxOnExpSc>
                        <TaxOnExAp>0.000000</TaxOnExAp>
                        <TaxOnExApF>0.000000</TaxOnExApF>
                        <TaxOnExApS>0.000000</TaxOnExApS>
                        <LastPmnTyp/>
                        <LndCstNum>0</LndCstNum>
                        <UseCorrVat>N</UseCorrVat>
                        <BaseType>-1</BaseType>
                        <BaseEntry>0</BaseEntry>
                        <BaseLine>0</BaseLine>
                        <LineStatus>O</LineStatus>
                        <ItemCode>1</ItemCode>
                        <Dscription>1</Dscription>
                        <Quantity>1.000000</Quantity>
                        <ShipDate>20060615</ShipDate>
                        <OpenQty>1.000000</OpenQty>
                        <Price>5.000000</Price>
                        <TaxOnExAp>0.000000</TaxOnExAp>
                        <TaxOnExApF>0.000000</TaxOnExApF>
                        <TaxOnExApS>0.000000</TaxOnExApS>
                        <LastPmnTyp/>
                        <LndCstNum>0</LndCstNum>
                        <UseCorrVat>N</UseCorrVat>
                        <BaseType>-1</BaseType>
                        <BaseEntry>0</BaseEntry>
                        <BaseLine>0</BaseLine>
                        <LineStatus>O</LineStatus>
                        <ItemCode>1</ItemCode>
                        <Dscription>1</Dscription>
                        <Quantity>1.000000</Quantity>
                        <ShipDate>20060615</ShipDate>
                        <OpenQty>1.000000</OpenQty>
                        <Price>5.000000</Price>
    which isn't as we expected and as it worked on PL00.
    This is the same the draft-form of the last draft we created shows:
    Price is 5 instead of the expected price of 1 we assigned through the DI-Api.
    Note: The Article-price in the item master data is set to 5.00.
    Is anyone out there who could help us as our add-on didn#t work any more on the new SP.
    Thanks
    Gerd

    Hi all,
    we found the problem our self. It seems that the handling of 'Price' and 'UnitPrice' differs a little bit between SP00 and SP01.
    Setting the 'UnitPrice' in the document lines instead of of the 'Price' solves the problem.
    A little bit ugly that the functionallity changes and there is no documentation found.
    Greetings
    Gerd

  • Sales analysis zero after upgrade from SBO 6.5 to 2005 SP01

    Hi,
    I have upgraded the DB directly from 6.50.099 SP:01 EF:27 to 2005 SP01 ( 6.80.318 SP:01 PL:18)
    I have a clean install of SBO since it is running on another server now.
    The only problem I got is that the sales analysis shows zero amounts in the total A/R invoices row for all invoices prior to the upgrade.
    The invoices itself have the correct values.
    Any clue how to fix this problem?

    I just ran the Update Control Report and it shows that
    table CRD1 now has more records 94 before 184 after
    And there are 7 entries in the System Messages table saying
    [Microsoft] [ODBC SQL Server Driver][SQL Server] Invalid column name 'prjcode'.

  • Error Add-On upgrade 2005 SP01

    Hi
    I have an error when I try tu upgrade add-ons
    2005 A SP00 PL --> 2005 A SP01 PL04
    XL Reporter or Screen Painter
    B1 Say that The installation failed because another version is already exist and ensur that the version number is higher than the version previously installed
    I have uninstall XL Reporter but it's the same
    Thanks

    Hi,
    Try going to the SAP Business One directory, locate the AddOnsLocalRegistration.sbo and AddOnsInstall.sbo files and open them with the notepad. Delete the information regarding this two addons, and execute SBO again.
    But first of all, make a backup copy of the files.
    Hope helps,
    Ibai Peñ

  • Install SBO 2005 SP00 with SQL Server 2005

    Hi all,
    Can I install SBO 2005 Sp00 on SqlServer 2005 ?
    and the addon developed with Framework.NET 1.1 can work under .NET 2.0?
    Thank a lot
    Dimitri

    Hi Dimitri,
    SQL Server 2005 is NOT support by SBO 2005 SP0 only SP01 and after
    An addon developed with .NET 1.1 should work under 2.0, but I advise you to load .NET 1.1 if possible.
    Regards
    Ad

  • SBO 2005 combo box does not update value at first time

    Hi!I developed an addon for sbo 2004 with a combo box populated with the months of the year, and it works. The same code run on SBO 2005 works only after the second selection. Has anyone found the same problem?

    definition of the item:
    item = form.Items.Add("oMese", SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX)
                    item.Left = 245
                    item.Top = 5
                    item.Width = 80
                    item.DisplayDesc = True
                    combo = item.Specific
                    combo.DataBind.SetBound(True, "", "uMese")
                    combo.ValidValues.Add(1, "Gennaio")
                    combo.ValidValues.Add(2, "Febbraio")
    event handling:
    inside ItemEvent in case the item is selected
    Case SAPbouiCOM.BoEventTypes.et_COMBO_SELECT
                        Select Case pVal.FormUID
                            Case "PRG_UFM_0002_RegIVAAcq"
                                retCode = oTy_RACQ.FormComboSelect(pVal, BubbleEvent)
      Public Shared Function FormComboSelect(ByVal pVal As SAPbouiCOM.ItemEvent, _
                                               ByRef BubbleEvent As Boolean, _
                                               ByRef funCaller As Object, _
                                               ByVal funCallerID As Integer, _
                                               ByRef aForm As SAPbouiCOM.Form) _
                                               As Integer
            Dim msg As String
            Dim edt As SAPbouiCOM.EditText
            Dim cmb As SAPbouiCOM.ComboBox
            Dim obt As SAPbouiCOM.OptionBtn
            Dim cbx As SAPbouiCOM.CheckBox
            Dim mtx As SAPbouiCOM.Matrix
            Try
                If pVal.Before_Action = True Then
                    Select Case pVal.ItemUID
                        Case "oMese"
                            Dim stre As New strEstremi
                            cmb = aForm.Items.Item("oMese").Specific
                            edt = aForm.Items.Item("anno").Specific
                            If Not cmb.Selected Is Nothing Then
                                GetEstremiPeriod(edt.Value, cmb.Selected.Value, "M", stre)
                                edt = aForm.Items.Item("dtFrom").Specific
                                edt.String = stre.dtFrom
                                edt = aForm.Items.Item("dtTo").Specific
                                edt.String = stre.dtTo
                            End If
    end function
    thank you I hope is enough otherwise please tell me

  • UI API URGENT: Click on cell in matrix doesn't work in SBO 2005

    Hi all,
    I've detected very strange problem. We have developed some addons for SBO2004A in SDK2004. There we used CLICK function on matrix cell, where the whole form was freezed, f.e. Purchase Order:
    oForm.Freeze True
    Set oMatrix = oForm.Items("38").Specific
    For i = 1 to oMatrix.RowCount
    oMatrix.Columns("1").Cells(i).Specific.String = sItemCode
    oMatrix.Columns("1").Cells(i+1).Click ct_Regular
    oApplication.ActivateMenuItem ("1292")
    Next i
    oForm.Freeze False
    If the form is freezed, the application in SBO2005 doesn't react on
    oMatrix.Columns("1").Cells(i+1).Click ct_Regular
    , although this worked in SBO2004 without any problems. The Click event is not filtered for this form and in Event_Filter the pVal.BeforeAction property is TRUE.
    Then I found, that if form isn't freezed, the CLICK on matrix cell function works.
    Is there any workaround, how to solve this problem without reprogramming a lot of code and to prevent flickering on form, when it is not freezed?
    I work with SBO 2005A SP01 PL07.
    Many thanks in advance.
    Kind regards
    Libor.
    Is there

    Hi Frank,
    I created message to SAP Support with this issue on Wednesday the 16th with priority high. The first solution from SAP Support was to disable freezing on forms, while they are processed. But for the performance reasons this is not possible. The reasons for clicking while freezed are relative simple and there are some of them:
    1) In some system forms that are filled by user we need to append special items between other items already existing in form. The many of fields (price fields) for all items in matrix have to be recalculated. For this we use freezing on form, then we search for related item, simulate click on row, and call
    Application.ActivateMenuItem ("1292")
    which calls Add Row [Ctrl+I] system function, then in newly created row we append our data, the prices for related item will be recalculated atc.
    2) we developed automatic calculations in documents, which uses VALIDATE event_type. That means if value in some field in matrix is changed, the values in other fields are recalculated. In some cases we needed to use CLICK too.
    I believe, there is possibility how to replace this 'on CLICK based' functionality...but then we need to rebuid many of our projects.
    Even I don't know, if this issue is bug in SBO2005 - UI API or it has some reason, but I suppose, this worked in all previous SBO SDK versions (since 6.5).
    Any ideas?
    Thanks.
    Kind regards
    Libor.

  • SBO 2005 SP1

    I have SBO 2005 A on my computer. I have just downloaded SBO 2005 SP1. What are the differences between SBO 2005 and SBO 2005 SP1?

    Well... there are many things... Here are the most important.
    Client
    - Better permormance
    - Better support of stock below zero
    - Better help docs
    - New document transfer system (Copy from/Copy To)
    - New standard Reports
    - New Backorder system
    - Greatly improved Pick And Pack system
    - Year to date features
    - Zero total invoices
    - MS SQL Server 2005 Support
    - Admin History
    SDK
    - FormDataEvent
    - FormInfo Object
    - New DI-objects
    - Current Period property
    - Delete Lines in documents
    There sould be no reason not to use the SP01 version... (For some older systems upgrading can be tricky)

  • Issues with SBO 2005 form load which has been created using  XML

    Am converting SBO 2004A addon into SBO 2005 addon, am loading a wizard form (wizard.xml)using following code.
       Dim oXMLDoc As MSXML2.DOMDocument
        Dim sXMLString As String
        Set oXMLDoc = New MSXML2.DOMDocument
        oXMLDoc.Load (App.Path & "FILESWizard2.xml")
        Dim strXml As String
        strXml = oXMLDoc.xml
        mobjSBOApplication.LoadBatchActions strXml
    But when we runs above code in SBO 2005, LoadBatchActions display error "Invalid Form - Item" "3006".
    It seems there are some change in the UI for the loadBatchActions to read the XML file.
    Would appreciate if you could advise on the same urgently.

    Hi Adele,
    Thanks for your reply.
    But this is the error comes with LoadBatchActions method of application object. I have check the same in debug mode but this is not item event error because i followed the loading event in form but action does not move ahead after the LoadBatchActions..
    I have also written GetLastBatchResults just below the LoadBatchActions and the same shows the below error message.
    <?xml version=""1.0"" encoding=""UTF-16""?><result><errors><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""3006"" descr=""<b>Form - Invalid Form Item""/><error descr=""Could not recover from previous errors""/</b>></errors></result>"
    but the same is working perfectly ok with 2004A.. would appreciate if you could advise on the same.

  • Compatibility between SDK 2004 and SBO 2005 A

    Hello to everybody,
    The company I joined to has an SBO 2005 running.
    the installation seems not to have an SDK in it.
    The SDK available is the one of 2004.
    I wonder if an AddOn I'm to develop will work on the SBO 2005.
    Or how can I obtain a new SDK to install?
    Regards, vt

    Please go over the E-learning and/or the SDK classroom material...
    ..then you will understand better what "the SDK" means - and that "the SDK" (i.e. the runtime components) is always there where you install the product
    + SDK Help Center (the onloine help) is available here on SDN
    ...SDK samples, UDO library + header + a few tools will be missing though then...

  • The Latest Patches of SBO 2005 A

    Dear all,
    I want to know what is the patches level in SBO 2005 A SP01 now? Which is the PL stable so I can use it on my current database?
    Please let me know...
    Regards,
    Agung

    Hi Agung,
    It is PL48 or completely file name (zip/rar file) is      B12005A01P_48-20001434.ZIP of  SAP Business One 2005 Patch - (SP01 - EhP 02).
    you could download and update the patch level from this link:
    https://websmp203.sap-ag.de/~sapidb/011000358700007392752004E
    Here is a complete steps to download it:
    Click SAp business one product --> click updates --> Click SAP B1 2005 --> Click SAP B1 2005A --> click entry by component -->Click SAP B1 - SP01 Patches/Upgrades --> click SAP BUSINESS ONE 2005 A SP01 --> click win32 --> click tab download --> tick download object " B12005A01P_48-20001434.ZIP"
    as about stability, you will have after sap b1 2007A patch level finished  to release. Current version stability is unpredictable and undeterminable. That's why there is a maintenance cost. There will feature pack that will release quarterly or maybe every 6 months.
    To know more about this, do not forget to browse this link every week:
    http:
    www.service.sap.com/smb
    Rgds,

  • SBO 2005 y W7 Professional

    Buenas tardes,
    Estoy realizando la instalación de SBO2005 en una laptop con W7 Professional. Por lo visto a la hora de hacer la instalación hay alguna incompatibilidad con la instalación del propio cliente y de los addons, que he solucionando activando la compatibilidad con XP SP3. El programa lo he estado testeando y funciona correctamente pero a la hora de desplegar un menú o una ventana lo hace lentamente (le lleva unos 3-4 segundos). No es problema de ram (tiene 3Gb.) ya que en otro equipo igual a ese corriendo con XP va perfecto.
    Me gustaría saber si hay alguna opción gráfica de configuración que lo solucione o algún parche o ejecutable del cliente que arregle este inconveniente.
    Muchas gracias,
    Un saludo.

    Hola.
    SBO 2005 no es totalmente compatible con Windows Vista/7 y tiene problemas de performance. Los problemas que normalmente se encuentran están relacionados con las nuevas caracterrísticas gráficas y las de seguridad de Vista y 7.
    Para mejorar en algo lo anterior, se recomienda desactivar todos los efectos visuales (incluso cambiar la apariencia del escritorio al estilo clásico) y el control de acceso de cuentas de usuario (UAC).
    ¿No han pensado migrar a la versión 2007?. Considero que sería lo mejor.
    Por favor revisar los siguientes links:
    - SUPPORTED PLATFORMS OVERVIEW - RELEASE 2005 AND HIGHER.
    - es compatible SAP bo 2007 con Windows 7.
    - Re: SAP Business One y Windows 7.
    Saludos.
    Edited by: Hector Daniel Hernandez Bacca on Apr 5, 2010 9:00 AM

Maybe you are looking for