DI API Problem in Patch 37-SAP 2007 A

Hi,
I have created one UDF in the marketing documents(Type combo box and i set the default value to "-","-") and i am try to assign the new value to the UDF through DI API . I am getting  the following error,
" 3 is not a valid values for property "U_BPProj". The valid values are "-","-"
Here 3 is my value.
my Coding
oSalesQuotation.Lines.UserFields.Fields.Item("U_BPProj").Value = strBPProject
oSalesQuotation.update
Thanks and regards
Senthil.
Edited by: senthilkumar B on Jun 16, 2008 6:35 AM

I think that you set the valid values for "-","-" only in definition of UDF.

Similar Messages

  • SAP 2007 Patch 08 License error

    We installed  SAP 2007 and registered the new Hardware key in the SAP channel and applied a single license for installing the addon, profession user, Sdk etc.... After updating the License we upgraded the system to Patch 08. We installed the our Addon.It was Connected Successfully.The addon worked fine for us. We stopped the Addon manually and started once again the Addon. On that time we are getting the error "License was fully used " When we close the SAP application itself and re open the application the addon is getting connected successfully. The same addon is working fine with all other patches of SAP2007. Please tell us what could be the problem
    Thanks in Advance
    Madhu

    Hi Madhu,
    I usually facing this kind of error when SAP B1 client crash and tried to run again the B1 client. This is due to the fact that the license server still record that you are in the system and once more tried to connect to system.
    In case of your add on, usually it's related to the terminate process not ended successfully when it was stopped manually. So when you close the B1 client n run again the add on, it works.
    If you facing the problem once again, try to stop and start the license server. It will reset the license server to the correct state.
    Cheers,
    Dody

  • Upgradation error SAP 2007 B to patch 11

    Hi experts,
    i have been trying to install "SAP 2007 B client" at one of our PC, with operating system as Windows XP sp 2.
    Installation get completes successfully, but while upgrading SAP 2007 B from patch 8 to patch 11 gives in an error.
    The error says
    " ERROR : Error accessing Parser Dll -
      C:\Docume1\ADMINI1\LOCALS~1\Temp\{3B7CBDC4-20D1-4E0F-8E36-ADFED7E767E5}\CreatorDll.dll "
    If anyone of you have face similar issue please help.
    Regards,
    Narendra

    Hi,
    I could find the solution for installation....i tried installing  SAP 2007A in one of many PC having "Windows XP sp2" ....i got successful with one of them having able to upgraded the patch level to 11. I dont know how it hppened but was able to get through the patch upgradation.
    Next i again installed the SAP 2007 A patch 8 to the earlier Windows XP client PC, this time not running up gradation "patch 11".
    Next i copied the C:-> Program Files-> SAP---> SAP Business One folder from the working client PC to the PC which was giving me the error....Its strange but worked for me!!!
    Thanks for all ur replies.

  • Payment Engine for SAP 2007

    Payment Engine for SAP 2007 does not produce the bank file as per normal. They are on Patch 35.
    Quote from the client
    "The new version requests to export the bank file to specific destination (the previous one needs two runs u2013 one for test, another for production).
    After having clicked the Export button, thereu2019s no error message. And, thereu2019s no bank file been created into the destination folder."

    Hi
    please check user with Windows Admininstrator
    rights is able to create the File or not.
    If only user who owns Windows Admininstrator rights can create bank file but other normal user cannot create bank file
    even though they have the full permissions to the B1i_SHR folder, for this problem,our developer is working on it and plan to fix it in 2007APL36.
    Now the workaround is,
    you have to make the user who login into client as windows
    administrator.
    Regards,
    Eleven
    SAP Business One Forums Team

  • Table Creation taking a lot of time in SAP 2007...

    I have an SAP Addon which is created in SAP2005...Right now i changed the code to SAP 2007...But the Problem i am facing is, it takes a lot of time to created the usertabels thorugh SAP 2007 code...Around 5 minutes it takes....But i created the usertables through SAP 2005 less than 2 minutes....I ahve to create 18 usertables thorugh this code....
    can anyone help me to solve this issue.. as well as i want to know whether any change is there in codes in SAP 2005 or SAP 2007.for creating Usertables....
    My Code:
    Private Sub AddUserTable(ByVal Name As String, ByVal Description As String, ByVal Type As SAPbobsCOM.BoUTBTableType)
    Try
    oUserTablesMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
    If oUserTablesMD.GetByKey(Name) = False Then
    oUserTablesMD.TableName = Name
    oUserTablesMD.TableDescription = Description
    oUserTablesMD.TableType = Type
    lRetCode = oUserTablesMD.Add
    If lRetCode 0 Then
    'oCompany.GetLastError(lRetCode, sErrMsg)
    'MsgBox(sErrMsg)
    End If
    End If
    Catch ex As Exception
    'pEve_Application.StatusBar.SetText(ex.Message, SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Error)
    Finally
    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
    End Try
    End Sub
    Waiting for Positive Reply...
    Thanks
    Hari

    Hi hari,
    I suggest you create you user tables, fields, keys, permissions through XML.
    Here's a sample:
    <?xml version="1.0" encoding="UTF-16"?>
    <BOM>
         <BO>
              <AdmInfo>
                   <Object>153</Object>
              </AdmInfo>
              <OUTB>
                   <row>
                        <TableName>TABLE_ID</TableName>
                        <Descr>TABLE_DESCRIPTION</Descr>
                        <ObjectType>1</ObjectType>
                   </row>
              </OUTB>
         </BO>
         <BO>
              <AdmInfo>
                   <Object>152</Object>
              </AdmInfo>
              <CUFD>
                   <row>
                        <TableID>@TABLE_ID</TableID>
                        <AliasID>FIELD_NAME</AliasID>
                        <Descr>FIELD_DESCRIPTION</Descr>
                        <TypeID>A</TypeID>
                        <EditType></EditType>
                        <Dflt></Dflt>
                        <EditSize>100</EditSize>
                   </row>
              </CUFD>
              <UFD1>
              </UFD1>
         </BO>
    </BOM>
    If you have already created the fields before (through code or through B1 UI), you can query the OUTB, CUFD and UFD1 tables to check what values you need to put in the XML file.
    You can use the following function to process a single XML file with the definition of tables, fields, keys and permissions.
        Public Function LoadBDFromXML(ByRef oCompany As SAPbobsCOM.Company, ByRef oApplication As SAPbouiCOM.Application, _
                ByRef Directory As String, ByRef FileName As String) As Boolean
            Dim sXmlFileName As String
            Dim iElementCount As Long
            Dim iCounter As Long
            LoadBDFromXML = False
            Try
                '// Inicializar a barra de progresso, caso seja nada.
                If BarraDeProgresso Is Nothing Then
                    BarraDeProgresso = oApplication.StatusBar.CreateProgressBar(UpdatingDB, 1, False)
                End If
                sXmlFileName = Directory & "" & FileName
                iElementCount = oCompany.GetXMLelementCount(sXmlFileName)
                BarraDeProgresso.Maximum = iElementCount
                BarraDeProgresso.Value = 0
                For iCounter = 0 To iElementCount - 1
                    oCompany.XmlExportType = BoXmlExportTypes.xet_ExportImportMode
                    Select Case oCompany.GetXMLobjectType(sXmlFileName, iCounter)
                        '// Tabela de Utilizador
                        Case BoObjectTypes.oUserTables
                            Dim oTable As SAPbobsCOM.UserTablesMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDT: " & oTable.TableDescription
                                If oTable.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDT) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oTable.TableDescription)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDT) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oTable)
                                oTable = Nothing
                                GC.Collect()
                            End Try
                            '// Campos de Utilizador
                        Case BoObjectTypes.oUserFields
                            Dim oFields As SAPbobsCOM.UserFieldsMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDF: " & oFields.TableName & "." & oFields.Name & " - " & oFields.Description
                                If oFields.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDF) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oFields.Name)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDF) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oFields)
                                oFields = Nothing
                                GC.Collect()
                            End Try
                            '// Chaves de Utilizador
                        Case BoObjectTypes.oUserKeys
                            Dim oKeys As SAPbobsCOM.UserKeysMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDKey: " & oKeys.KeyName & "(" & oKeys.TableName & ")"
                                If oKeys.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDK) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oKeys.KeyName)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDK) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oKeys)
                                oKeys = Nothing
                                GC.Collect()
                            End Try
                            '// Árvore de Autorizações
                        Case BoObjectTypes.oUserPermissionTree
                            Dim Tree As SAPbobsCOM.UserPermissionTree = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = PermTree & Tree.Name
                                If Tree.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUPT) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & Tree.Name)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUPT) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(Tree)
                                Tree = Nothing
                                GC.Collect()
                            End Try
                            '// Objectos de Utilizador
                        Case BoObjectTypes.oUserObjectsMD
                            Dim oUDO As SAPbobsCOM.UserObjectsMD = oCompany.GetBusinessObjectFromXML(sXmlFileName, iCounter)
                            Try
                                BarraDeProgresso.Value += 1
                                BarraDeProgresso.Text = "UDO: " & oUDO.Code & "(" & oUDO.Name & ")"
                                If oUDO.Add <> 0 Then
                                    oApplication.MessageBox(TranslateStr(oApplication, ErrAddUDO) & vbCrLf & _
                                    TranslateStr(oApplication, Error_) & oCompany.GetLastErrorCode.ToString & ", " & _
                                    oCompany.GetLastErrorDescription & vbCrLf & TranslateStr(oApplication, Element) & _
                                    iCounter & ", " & oUDO.Name)
                                    Exit Function
                                End If
                            Catch ex As Exception
                                oApplication.MessageBox(TranslateStr(oApplication, Error_) & _
                                TranslateStr(oApplication, ErrUDO) & ", " & ex.ToString)
                            Finally
                                System.Runtime.InteropServices.Marshal.ReleaseComObject(oUDO)
                                oUDO = Nothing
                                GC.Collect()
                            End Try
                    End Select
                Next iCounter
                If Not BarraDeProgresso Is Nothing Then
                    BarraDeProgresso.Stop()
                    BarraDeProgresso = Nothing
                End If
                LoadBDFromXML = True
            Catch ex As Exception
                If oCompany.InTransaction = True Then oCompany.EndTransaction(BoWfTransOpt.wf_RollBack)
                oApplication.MessageBox("LoadBDFromXML(" & FileName & "): " & oCompany.GetLastErrorCode.ToString & ", " & ex.ToString)
            End Try
        End Function
    Note: BarraDeProgresso is my progress bar.
    You can also register UDO's through XML, but I prefer to do it by code.
    Regards,
    Vítor Vieira

  • XL Report in SAP 2007

    Sir,
    I am getting problem in xl report which is inbuild in SAP 2007 the message i am getting is as follow
    " Class does not support Automation or does not support expected interface "
    Kindly guide me
    Thanks
    Rajesh B K

    Hi!
    Check these threads
    XL Class does not support application or does not support expected interfac
    Sol. Required for error : Class does not support Automation or does not sup
    Run time 430 error Class does not support automation
    Re: Error in XL Reporter

  • Error by patching of SAP NetWeaver with Oracle on Windows

    Hi!
    I am about to patch my SAP system (SAP NetWeaver 04S) with Oracle on Windows.
    The following error occurs:
    Import phase 'CHECK_REQUIREMENTS' (05.02.2008, 16:00:39)
    Error during executing the tp command 'tp CONNECT B11   ...'
    tp return code: '0232' , tp message: 'connect failed' , tp output:
      This is tp version 340.16.38 (release 640, unicode enabled)
      ERROR: Connect to B11 failed (20080205160039, probably wrong environment).
      TRACE-INFO: 1: [dev trc ,00000] Tue Feb 05 16:00:39 2008 29426 0.029426
      TRACE-INFO: 2: [dev trc ,00000] load shared library (dboraslib.dll), hdl 0 38 0.029464
      TRACE-INFO: 3: [dev trc ,00000] using "E:\usr\sap\B11\SYS\exe\run\dboraslib.dll" 35 0.029499
      TRACE-INFO: 4: [dbsloci. ,00000] *** ERROR => Cannot connect: dbs/ora/tnsname in Profile missing
      TRACE-INFO: 5:   738 0.030237
      tp returncode summary:
      TOOLS: Highest return code of single steps was: 0
      ERRORS: Highest tp internal error was: 0232
    standard output from tp and from tools called by tp:
    Can some one give some recommendations how to proceed?
    Is something wrong with oracle environment?
    Thank you very much!
    regards
    Thom

    Hi!
    Thank you!
    The problem is my <sapsid> user (B11adm) cannot log in into OS, but I can log in as an other <sid>user (E11adm) or as administrator.
    If I execute the command as other <sid>user (E11adm) >r3trans -d I retrieve:
    2EETW169 no connect possible: "DBMS = ORACLE
    --- ORACLE_SID = 'B11'"
    r3trans finished (0012).
    The result of commando  >set:
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\e11adm\Application Data
    CLIENTNAME=DZEM9001
    ClusterLog=C:\WINDOWS\Cluster\cluster.log
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=OLDA8005
    ComSpec=C:\WINDOWS\system32\cmd.exe
    dbms_type=ORA
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\e11adm
    JAVA_HOME=C:\j2sdk1.4.2_06
    LOGONSERVER=
    OLDA8001
    NUMBER_OF_PROCESSORS=2
    ORACLE_HOME=E:\oracle\B11920
    ORACLE_SID=B11
    OS=Windows_NT
    Path=C:\j2sdk1.4.2_06\bin;E:\usr\sap\B11\sys\exe\run;E:\oracle\B11920\jre\1.4.2\
    bin\client;E:\oracle\B11920\jre\1.4.2\bin;E:\oracle\B11920\bin;C:\Program Files\
    Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;E:\oracle\BWX920\bin;
    C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microso
    ft SQL Server\80\Tools\Binn\;E:\usr\sap\B11\SYS\exe\uc\NtI386
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 8 Stepping 6, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=0806
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    RFCEXEC_SEC_FILE_PATH=E:\usr\sap\B11\SYS\exe\uc\NtI386
    SESSIONNAME=RDP-Tcp#22
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\DOCUME1\e11adm\LOCALS1\Temp\1
    TMP=C:\DOCUME1\e11adm\LOCALS1\Temp\1
    USERDNSDOMAIN=PORTAL.LOCAL
    USERDOMAIN=PORTALGROUP
    The result of >tnsping B11
    TNS Ping Utility for 32-bit Windows: Version 9.2.0.5.0 - Production on 07-FEB-20
    08 10:34:15
    Copyright (c) 1997 Oracle Corporation.  All rights reserved.
    Used parameter files:
    E:\oracle\B11920\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (SDU = 32768) (ADDRESS_LIST = (ADDRESS = (C
    OMMUNITY = SAP.WORLD) (PROTOCOL = TCP) (HOST = olda8005) (PORT = 1527))) (CONNEC
    T_DATA = (SID = B11) (GLOBAL_NAME = B11.WORLD)))
    OK (50 msec)
    USERNAME=e11adm
    USERPROFILE=C:\Documents and Settings\e11adm
    windir=C:\WINDOWS
    Is it possible to activate the right sidadm user (B11adm)?
    Thank you!
    regards
    Thom

  • GroupWise 7.0 API Gateway is supported for Exchange 2007?

    Can someone confirm that GroupWise 7.0 API Gateway is supported for Exchange 2007?
    I found a note in a guide that stated it was not YET supported as of 1/27/2008.

    bwalker2,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Error in connection SAP 2007 B PL 11 client to SQL server

    Dear All,
    I am using SAP 2007 B PL 11. Whenever i am doing change server on client systems and entering the SQL server name and pwd the system gives error:
    Connection failed:
    SQLState: '08001'
    SQL Server Error: 0
    [Microsoft][SQL Native Client]Unable to complete login process due to delay in opening server connection
    If i directly punch the IP address of the server then it immediately shows me the company lists. When i select a company and then enter the sap user name (manager) and pwd then it takes almost 3-4 minutes to connect to the company.
    Can anybody please help me out on this issue.
    Regards,
    Rahul

    HI,
    I checked it out from SAP. They said that this problem is caused when multiple network card are installed on the sap server. They gave the below mentioned solution as a workaround:
    SAP Business One client (not installed on the same machine as the
    license service) might take several minutes to log you on successfully due to a delay in establishing a connection with the license server.
    After logon, SAP Business One functions as expected.
    This is due to the fact that the server or PC on which the license server is installed has more than one network card, or there is a dial-up & VPN interface-configured server.
    Note: This can happen when you install the license service on a machine with more than one network card ALREADY installed.
    Installing additional network cards on a single network card machine with a license service already installed might not produce this issue.
    Other terms
    SAP Business One, slow, login, log-in, delay, license, server, NIC, VPN, connection.
    Reason and Prerequisites
    Application error.
    Solution
    This issue is a candidate to be resolved in a future release.
    Until then, you can use one of the following workarounds:
    1.Disable additional network cards in the Network Connections. Also make sure there is no dialup interface or VPN interface set up, and restart the server. Note that you can re-enable the additional network card after the restart. This will resolve the issue until the next restart.
    2.Install the license server on a machine with a single network card.
    3.Disable all network cards, restart the license server and then enable the network cards again.

  • SAP 2007 B

    Hi Experts,
    How many peoples successfully implemented SAP 2007 B. and if u faced any issues or problems while implementation pls mention it clearly .....
    karthi.
    Edited by: Philip Eller on Jun 26, 2008 10:43 AM
    Edited by: Rui Pereira on Aug 6, 2008 4:22 PM

    Hi Shamseer,
    Actually i had updated SAP B1 from 2005B to 2007B.
    after updation i have noted that assigned Approval procedures,alerts are automatically deactivated without any warning, even  Query with parameter  are not executing properly..
    Could u tell me the reason...
    Karthi.
    Edited by: Rui Pereira on Jul 8, 2008 4:08 PM

  • Problem in connection from SAP to XI

    Hi Guys,
    I have problem to connect from SAP to XI.  We have existing SAP R/3 (IS-H) and we newly installed XI. We decided to use ABAP proxy to send data from SAP to XI. When I go to SPROXY system showing ‘No Connection to Integration Builder’. Please kindly advice what configuration we need to in SAP side in order to connect XI.
    It’s Very Urgent. Please advice me.
    Thanks in Advance.
    Regards,
    Anil.

    Anil,
    could you please have a look to SAP Note 689847 - XI 3.0: SPROXY - No connection to the Integration Builder
    Cheers,
    -Sunil

  • Error: There was a problem logging on to SAP BusinessObjects Enterprise

    I am trying to use Crystal Reports Enterprise XI 4.0 with BusinessObjects Enterprise 4.0 using a Bex Query on an SAP NetWeaver 7.01 SPS 9 BW system. I have been using the SAP Press book u201CIntegrating SAP BusinessObjects BI Platform 4.x with SAP NetWeaveru201D as my guide, attempting to follow it step by step. Please bear with me as I have only started working with this set of products within the last month. (Very new at this and do not have a very good grounding of the way it all works together. Trying to learn as quickly as possible as I am expected to support this set of tools for our developers / users.)
    I have been trying to follow along with the book to get everything connected. At this point, I have BOE set up to attach to the SAP NetWeaver BW system. I have created a test Bex Query on the BW system. From within BOE, using CMC, I can configure the Bex Query as an OLAP connection. I have set it up for SSO. I have also exchanged certificates between the BOE and the SAP NetWeaver systems which I believe will allow the exchange of tokens.
    I then go into Crystal Reports for Enterprise XI 4.0 on my PC. (I am running Windows 7 64-bit on the PC. I installed the BOE 4.0 suite of client tools except for SAP BO Live Office and SAP BO Analysis for MS Office). I can attach to my BOE system and can browse to see the OLAP connections in the BOE. I then try to select one as the data source for a new report. I then get a pop-up window stating:
       Unable to Logon
         There was a problem logging on to SAP BusinessObjects Enterprise.
           Please check your logon credentials and make sure your network is properly configured before trying again. If the problem 
           persists please contact your Administrator.
    I cannot find a log / trace / error file on my PC, the BOE system or the BW system to indicate any additional information as to what the root problem is. Has anyone seen a similar error and might know where I can find more information, how to increase trace levels so that I get some additional information or provide hints as to what the root problem might be?
    I am also trying to figure out how the authentication works between the PC, BOE and SAP NetWeaver. If using a token, there has to be consistency with the username (or some value) and I am not certain that is happening. Right now, my BOE sources its UME from the SAP NetWeaver BW system. So its user accounts are in the form SID123/ACCOUNT where SID is the SID of the SAP NetWeaver system and the string u201C123u201D is the client on that SID. When I log into the BOE system from within Crystal Reports, I am using the account in that format whereas the account on the SAP NetWeaver BW system in actuality is only the string ACCOUNT. So is the token stripping the string u201CSID123/u201D from the account name when it is sent so that the accounts match? Or do I have to manually configure some kind of account alias (in the BOE system?) so that the two recognize each other? Or something else?
    Any hints or ideas around where I can find additional information or where I have gone wrong, would be greatly appreciated.
    Thank-you in advance,
    Deb Nugent.

    Henry,
    Many thanks and excellent suggestions. But I am still not able to get this to work and (once again) am stuck.
    RE: Server Connections: When I check my server connection, I have not ticked SSL and am using the non-secure server port for my BOE system. When I click on u201CTest connectionu201D, I can successfully log in using my username / password on the SAP NetWeaver BW system. If I tick the SSL box without changing the port, I get the error message u201CFailed to establish a connection. The cause was u201CCannot connect to SAP BusinessObjects Enterprise at this time. Please try again later.u201D If I tick the SSL box and change the port to use the secure server port for the BOE system, I get the same error.
    RE: Preferences: I am using the default settings under Preferences -> Network Settings. We do not manually configure proxy settings on our network so I have ticked u201CUse system proxy configurationu201D and under SSL settings, have ticked u201CUse system keystore / trust storeu201D. I have swapped keys between the BOE system and the SAP NetWeaver system but I have not swapped any keys between my PC and the BOE system or the SAP NetWeaver system (which I do not expect to do but am mentioning here in case I am wrong).
    RE: BILaunchPad: I do not have any references for BILaunchPad. Is this u201CWeb Intelligence Rich Clientu201D? If so, I tried starting it, it reported an error: u201CAn error occurred at session creation.u201D Details showed u201CSSL mode is being requested but the following argument(s) are not present: passphrase (FWM 01012)u201D I went into the CMC and checked my SAP connections under Authentications. On the tab u201COptionsu201D, there is the section u201CSAP SSO Serviceu201D where I typed in the KeyStore password. When I created the key store file, I only specified a keystore password and did not specify a private key. Originally, I had it set with the private key blank with the correct password on the keystore. I also tried entering the same password as the private keystore and saving it. I verified that the connection services for Web Intelligence had restarted but I still am getting that same message when I try to start the Web Intelligence Rich Client.
    At OS level on the BOE server, I logged in as my boe1 account and checked the parameters that can be entered for the PKCS12Tool.jar file that I used to create the ketstore file I had used. There does not appear to be an option for anything other than the keystore password. There is no private key password field listed.
    I searched for the FWM 01012 error and found the HTML and PDF help files form SAP explaining errors. However, it only states u201CEnsure that all SSL arguments are presentu201D but gives no details as to what, exactly needs to be checked.
    I will be talking with co-workers today to see if any of them can make sense of this (anoterh set of eyes sometimes helps). Any other suggestions about areas to look for addiitonal details / increased traces / logs?
    Deb Nugent.

  • Problem Crystal Report on SAP 8.8

    Hi all!
    I need to modify an addon developed for SAP2007 so that it works even on SAP 8.8. Now, i have an error when i try to show a report made with Crystal Report. I know that in SAP 8.8, Crystal Reports are seamlessly integrated in the core product. The addon source code that generates the error is as follows:
      If File.Exists(sReportName) Then
                    Dim oeng As New SAPObjects.Engine
                    Dim f As New frmReportViewer(SBO_Application)
                    Dim rDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                    rDoc = New CrystalDecisions.CrystalReports.Engine.ReportDocument()
                    rDoc.Load(sReportName)
                    rDoc.SetDataSource(dsReport)
                    f.VisualizzaReport(rDoc)
                    oeng.ShowDialogSapWindow(f)
    End If
    The error is returned when you try to initialize the object rDoc (The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception).
    I linked to the project the following references:
    - CrystalDecisions.CrystalReports.Engine
    - CrystalDecisions.Enterprise.Framework
    - CrystalDecisions.Enterprise.InfoStore
    - CrystalDecisions.ReportSource
    - CrystalDecisions.Shared
    - CrystalDecisions.Windows.Forms
    Thanks.
    Edited by: Gianluca D'Alessandro on Jun 22, 2010 5:00 PM

    Hi,
    Instead try it after installing all the pre-requisite softwares which you are doing with SAP 2007.
    thanks:
    Sandy

  • Error in creating DLN on SAP 2007 01 PL07

    Hi Experts,
    Our profuct has been used by multi clients for years, and everything is working fine until one client upgrades to SAP 2007 01 PL07. The user was working properly at beginning, and got a error in creating DLN, then the user will not be able to create DLN any more, then the user has to logout and login the SAP to create DLN agian. the error will be trigger pretty often,and error msg is: the requested action is not support this object.
    the error is only hapened on one of our clients, and we struggled for long time, but could not fix it out.
    Any suggestion or recommandation will be more then welcome!
    Thank in advance.
    Austen

    You may check these:
    The requested action is not supported for this object
    Errors not listed in the documentation...

  • Certificate problem downloading patches

    Today I am having problems downloading patches on Solaris 9 & 10. The log in part shows :
    2006-10-25 09:55:27 Wed Oct 25 09:55:27 GMT+00:00 2006(ERROR) => com.sun.patchpr
    o.security.SignatureValidationUtil@c2ee15 <=SignatureValidationUtil.validateJarF
    ile(): The specific Jar file is not signed by a known digital certificate. 12421
    5-01/.diPatch CN=Enterprise Services Patch Management, O=Sun Microsystems IncAnd the response to smpatch download is:
          124215-01       Unexpected error while accessing the requested patch.Any suggestions?
    John.

    It looks like this issue is covered in this other thread:
    http://forum.sun.com/jive/thread.jspa?threadID=108200&tstart=0

Maybe you are looking for

  • How Common Are "Lock-ups"?

    Hi all. I just inherited a 20G "Click Wheel" iPod. It was my daughter's and it got dropped causing the screen and the HD to break. Since (long boring story about how omitted) she got a brand new one, I had the broken one repaired to use in my work tr

  • Help on VPD

    I am trying to use VPD in our application. It works fine if I directly use SQL select statement. However I can not get the right reocrd set if the SQL statement in stored procedures, functions, or package. Your kind reply will be highly appreciated.

  • ONLY sync photos from iPad to iMac folder; automatically how?

    I have 50 GB of pictures in iPhoto on my iMac (10.8.4) along with an iPhone 5 and an iPad 3. I would like new pics from the iPhone and iPad to be automatically downloaded into the folder I have set up to get pics from those devices "iPod Photos" How

  • New iMac Frequent Freezes

    Please Help: I have a 6 week old new Intel Duo iMac and been getting frequent freezes that require hard restarts. It started when I tried to print a document into a PDF file. Then after 2 hard restarts I could not log IN into my account. AppleCare re

  • "song" could not be used bc the original file could not be found

    I haven't done anything to my computer and it worked fine yesterday. Why am I getting the error: --"song" could not be used bc the original file could not be found. would you like to locate it?-- how do i fix this? [email protected]