UDO creation error- invalid user

i am trying to craeate UDO using coding .
but error is coming like that
lRetCode= -1120
msg " invalid user & password"
Any solution

AVIJIT,
Check if user has a Professional License assigned.
Have you managed to register other objects with problem before?
Have you tried to register the object in the B1 GUI?
Also I include code samples in how to register Master Data and Document Objects.
Master Data with child table
Private Function RegisterTRAD(ByRef oCompany As SAPbobsCOM.Company, ByRef oApplication As SAPbouiCOM.Application) As Boolean
        RegisterTRAD = False
        Dim oUserObjectMD As UserObjectsMD = oCompany.GetBusinessObject(BoObjectTypes.oUserObjectsMD)
        Dim lRetCode As Long
        Try
            If Not oUserObjectMD.GetByKey("ADAT_TRAD") Then
                oUserObjectMD.Code = "ADAT_TRAD"
                oUserObjectMD.Name = "Traduções"
                oUserObjectMD.ObjectType = BoUDOObjType.boud_MasterData
                oUserObjectMD.TableName = "ADAT_TRAD"
                oUserObjectMD.CanCancel = BoYesNoEnum.tYES
                oUserObjectMD.CanClose = BoYesNoEnum.tYES
                oUserObjectMD.CanCreateDefaultForm = BoYesNoEnum.tNO
                oUserObjectMD.CanDelete = BoYesNoEnum.tYES
                oUserObjectMD.CanFind = BoYesNoEnum.tYES
                oUserObjectMD.CanLog = BoYesNoEnum.tYES
                oUserObjectMD.CanYearTransfer = BoYesNoEnum.tYES
                oUserObjectMD.LogTableName = "AADAT_TRAD"
                oUserObjectMD.ExtensionName = ""
                oUserObjectMD.FindColumns.ColumnAlias = "Code"
                oUserObjectMD.FindColumns.ColumnDescription = "Código"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.SetCurrentLine(1)
                oUserObjectMD.FindColumns.ColumnAlias = "U_TableNam"
                oUserObjectMD.FindColumns.ColumnDescription = "Nome da Tabela"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_TableDsc"
                oUserObjectMD.FindColumns.ColumnDescription = "Descrição da Tabela"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_FieldNam"
                oUserObjectMD.FindColumns.ColumnDescription = "Nome do Campo"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_FieldDsc"
                oUserObjectMD.FindColumns.ColumnDescription = "Descrição do Campo"
                oUserObjectMD.FindColumns.Add()
                lRetCode = oUserObjectMD.Add()
                '// Verificar existência de erros ao adicionar o UDO
                If lRetCode <> 0 Then
                    oApplication.MessageBox("RegisterTRAD(Add): " & lRetCode.ToString)
                Else
                    RegisterTRAD = True
                End If
            End If
        Catch ex As Exception
            oApplication.MessageBox("RegisterTRAD(): " & oCompany.GetLastErrorCode & ", " & ex.Message)
        Finally
            System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserObjectMD)
            oUserObjectMD = Nothing
            lRetCode = Nothing
            GC.Collect()
        End Try
    End Function
Document with child table
Private Function RegisterNR(ByRef oCompany As SAPbobsCOM.Company, ByRef oApplication As SAPbouiCOM.Application) As Boolean
        RegisterNR = False
        Dim oUserObjectMD As UserObjectsMD = oCompany.GetBusinessObject(BoObjectTypes.oUserObjectsMD)
        Dim lRetCode As Long
        Try
            If Not oUserObjectMD.GetByKey("ADAT_NR") Then
                oUserObjectMD.Code = "ADAT_NR"
                oUserObjectMD.Name = "Nota de Recepção"
                oUserObjectMD.ObjectType = BoUDOObjType.boud_Document
                oUserObjectMD.TableName = "ADAT_ONR"
                oUserObjectMD.CanCancel = BoYesNoEnum.tYES
                oUserObjectMD.CanClose = BoYesNoEnum.tYES
                oUserObjectMD.CanCreateDefaultForm = BoYesNoEnum.tNO
                oUserObjectMD.CanDelete = BoYesNoEnum.tYES
                oUserObjectMD.CanFind = BoYesNoEnum.tYES
                oUserObjectMD.CanLog = BoYesNoEnum.tYES
                oUserObjectMD.LogTableName = "AADAT_NR"
                oUserObjectMD.CanYearTransfer = BoYesNoEnum.tYES
                oUserObjectMD.ManageSeries = BoYesNoEnum.tYES
                oUserObjectMD.ChildTables.TableName = "ADAT_NR1"
                oUserObjectMD.ChildTables.LogTableName = "AADAT_NR1"
                oUserObjectMD.ExtensionName = ""
                oUserObjectMD.FindColumns.ColumnAlias = "DocNum"
                oUserObjectMD.FindColumns.ColumnDescription = "Nº do Documento"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.SetCurrentLine(1)
                oUserObjectMD.FindColumns.ColumnAlias = "Series"
                oUserObjectMD.FindColumns.ColumnDescription = "Série"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_CardCode"
                oUserObjectMD.FindColumns.ColumnDescription = "Código do PN"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_CardName"
                oUserObjectMD.FindColumns.ColumnDescription = "Nome do PN"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_RefNum"
                oUserObjectMD.FindColumns.ColumnDescription = "Nº de Ref. do Fornecedor"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_DataRcp"
                oUserObjectMD.FindColumns.ColumnDescription = "Data de Recepção"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_HoraRcp"
                oUserObjectMD.FindColumns.ColumnDescription = "Hora de Recepção"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_ItemName"
                oUserObjectMD.FindColumns.ColumnDescription = "Nome do Artigo"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_PrcName"
                oUserObjectMD.FindColumns.ColumnDescription = "Nome do Parcelário"
                oUserObjectMD.FindColumns.Add()
                oUserObjectMD.FindColumns.ColumnAlias = "U_FolhaNam"
                oUserObjectMD.FindColumns.ColumnDescription = "Folha"
                oUserObjectMD.FindColumns.Add()
                lRetCode = oUserObjectMD.Add()
                '// Verificar existência de erros ao adicionar o UDO
                If lRetCode <> 0 Then
                    oApplication.MessageBox("RegisterNR(Add): " & lRetCode.ToString)
                Else
                    RegisterNR = True
                End If
            End If
        Catch ex As Exception
            oApplication.MessageBox("RegisterNR(): " & oCompany.GetLastErrorCode & ", " & ex.Message)
        Finally
            System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserObjectMD)
            oUserObjectMD = Nothing
            lRetCode = Nothing
            GC.Collect()
        End Try
    End Function
Regards,
Vítor

Similar Messages

  • 41439 Login Error  / Invalidation User password

    Portal Login Error 41439:
    I have Infrastructure and App Server (BI installation) on the same Win2K server. While trying to Login to Oracle10gAS Portal, I get following error.
    WWV-41439 - You cannot login because there is no configuration information stored in the enabler configuration table.
    Cause:
    The default domain is not set in the Apache configuration. When this occurs, only the hostname is shown in the login link and the domain is not included.
    Action:
    Include the domain in the ServerName paramenter.
    Where should this ServerName be modified? (Which file? in which OracleHome?)
    Invalidation User Password:
    On a different note, what should be the password of 'Invalidator' in 'Web Cache Settingst'? (I tried invalidator). For any change in config, currently it gives ORA-00017 error.
    "Error in getting the Portal version INSTALL_ERROR : Could not obtain Portal version : ORA-01017: invalid username/password; logon denied"
    Any suggestion will be appreciated.
    Thanks,
    Jay

    Regarding Invalidator password, it might be worth trying you OEM middle tier password (for ias_admin)

  • Adobe Form Creation Error - Invalid Response Code: (401) Unauthorized

    I'm trying to generate an impersonalized form in Guided Procedures. I got an error.
    I checked the SAP logs and the error is
    Invalid Response Code: (401) Unauthorized. The requested URL was:"http://hostXX:portXX/AdobeDocumentServices/Config?style=document"
    Before this error occurs I see an alert
    LOGIN.FAILED
    User: N/A
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          exception             true       Authentication did not succeed.
    I've checked the ADSUser and its not locked. Configuration and everything looks fine. I've tested the ADS connections too on SM59.
    We have similar configuration for DEV and its working fine there.
    Any help on this is highly appreciated.
    Version - SAP 2004s SP16
    Thank you,
    Srinivas

    I had a similar problem with authorization failed for the ADSuser. My problem however only occurs at night when the system is the least used.
    We have changed two things which I believed have now solved the problem.
    1. Make sure all j2ee servers in the cluster uses localhost for the web service destination. Our system was configured to use the central instace forcing all request to a single server.
    http://help.sap.com/saphelp_nw04/helpdata/en/4f/a00d41921bf023e10000000a155106/frameset.htm
    2. Check maximum number of users in VA. Ours was set to only 300 due to some earlier performance problems. Default is unlimited I believe, so it shouldn't be a problem normally. (Global configuration -> Server -> Security provider-> "MaxUsersCount")
    My conclusion is that we ran out of login sessions during night time for some unknown reason, causing a authorization failed exception on the app servers.
    Plausible?
    best regards,
    Richard Linnander

  • Businee logic Engine error:Invalid user name or password.Pl help

    Hi,
    I have installed Demantra 7.3.0.1 on windows and I am getting this error only when opening Business logic engine.All other components work with the same user name and password dm/password but only this one throws an error.
    Can some one help me pl.I have installed Oracle AS as well on the same server to act as a webserver.
    Can you pl tell me where this BLE picks up the user name and passowrd or if some setting has to be changed ??
    This is fesh installation and only I changed te application URL in the BM

    Have you tried dm/dm ?
    Thank you.

  • Launcher error: invalid user on Unix agent

    I am getting theis error with an AD account when trying to run a script. The script will run with a local account. The UNIX admin assures me that all permissions are granted for this to work. Any ideas?

    The AD account has all necessary file permissions. The UNIX admin tells me that SSH permission is not necessary to run the script.
    I have used another Ad account and it throws the same error. A local account from another unix server gets the same error.
    We checked the agent file, and the runtime uses that show up in the console show up in the agent file.

  • Invalid user endpointid error

    I added an new outlook.com e-mail (which is basically setup us a hotmail account) - it can send but not recieve.  so I went to delete it to go manually set it up and I get the following error:  Invalid user endpointid.  How do I get rid of this account, I tried managing e-mail on the verizon site,but I am not sure that worked to delete it from there.

    Has anyone found a solution to this yet? I am having the same problem.
    I have several Live.com email accounts. (One of which is a business email account)
    I had each of them setup on my phone.
    I later setup outlook on my laptop, to check my email for 2 of the accounts (one of which was my business email account).
    None of my Live.com accounts were staying synch'ed with my phone.
    Even when I tried to manually synch them, it took several tries and since I was always days out of synch, it always took about 15 minutes to get up-to-date. That's a real pain when you need to find that email from yesterday, NOW!... especially when the email is in the business email account!!!
    My yahoo and my gmail accounts are working perfectly.
    I went to the local Verizon store and asked for help
    The rep said there was nothing wrong with the Live.com setup... he said the Live.com WILL NOT automatically stay synch'ed, like yahoo and gmail do.
    (IS that true????)
    He suggested deleting one of my Live.com accounts from the phone.
    The account he deleted (REMOVE), was my business email account.
    We then added it back in.
    He said it would automatically synch when created.
    The account did not automatically synch. It did not download and emails.
    I tried to manually synch it.
    nothing happened.
    I tried to remove the account again, so I could try adding it again.
    That's when I first got the "Invalid User EndPointID" message.
    Has anyone found a solution to this yet?

  • Adobe Print Form Error - Invalid Response Code: (401) Unauthorized

    Hi, I've just configured ADS on Netweaver 2004s. I've run through the config guide and everything works ok including the form generation test report FP_TEST_00 which outputs PDF without issue. I have two problems:
    -When I run a "test connection" on the RFC destination 'ADS' using the ADSUSER for the login details, I get a 403 not authorized error. Changing this user to J2EE_ADMIN resolves the issue and I get a 302 redirect. I've tried adding other permissions to the ADSUSER without any luck.
    -Running a report on the Portal under e.g. Executive Reporting and attempting to just right-click and hit "Print Version" results in a 401 error for request "http://hostXX:portXX/AdobeDocumentServices/Config?style=document" exactly as per this thread: Re: Adobe Form Creation Error - Invalid Response Code: (401) Unauthorized. However, I've double-checked all user details in Visual Administrator (ADS_AGENT) and on the ABAP stack side in su01 and sm59. I also tried changing the users to dialog with no effect. If I go directly to that URL and log in with ADSUSER I get a 403 not authorised error (using J2EE_ADMIN is again successful). I've noticed that in the http access log the HTTP protocol used is 1.1 when using the web browser and 1.0 when using the sm59 connection test. I've heard of problems with using HTTP/1.1, but when I change the options on IE8 to use HTTP/1.0, it changes for all other requests except the request for "http://hostXX:portXX/AdobeDocumentServices/Config?style=document", which is still submitted as HTTP/1.1. Conversely, in sm59 if I specify that it should use HTTP/1.1 under Special Options, I can see from the access log that it is in fact still using HTTP/1.0. Could this be related to the 401 error code that I'm seeing?
    Any help would be appreciated. Thanks,
    John

    I think I've ruled out the HTTP protocol version as being an issue here. However I may have found more useful information on the actual issue.
    In the security log under usr\sap\<SID>\DVEBMGS00\j2ee\cluster\server0\log\system I see a different message for the unsuccessful report PDF generation attempt to that of a direct query to the same URL with the same web browser, as below. The unsuccessful attempt appears to forget the ADSUSER credentials and resort to the default J2EE_GUEST which has no authorisations and therefore fails. The direct query doesn't lose the ADSUSER credentials and I think this is because it prompts for the user/password when needed. Does anyone know why this happens for a direct query to this URL but not for the PDF generation attempt?
    Resulting logs from unsuccessful PDF generation attempt:
    #1.5 #005056AF1EB300750000002D0000142000048B4D2208F055#1279063306899#/System/Security/WS/SecurityProtocol#sap.com/irj#com.sap.security.core.client.ws.AuthenticationContext.setDestination#AICL0001#622##<host>_<sid>_3576650#AICL0001#4c1a62608ed511dfbe2a005056af1eb3#SAPEngine_Application_Thread[impl:3]_5##0#0#Info#1#com.sap.security.core.client.ws.AuthenticationContext#Java###An destination was set with the following properties:
    {0}.#1#{PROXY_ENABLED=false, CLIENT_AUTHENTICATION_KEYSTORE_VIEW=, SAP_SID=, SLD_URL=, USERNAME=ADSUSER, SLD_WS_NAME=, URL=http://<host>:50000/AdobeDocumentServices/Config?style=document, PROXY_URL=, SSL_SERVER_AUTHENTICATION=IGNORE, SLD_WS_SYSTEM_NAME=, PASSWORD=XXX, SLD_WS_PORT=, SAP_CLIENT=, DEFAULT_URL=http://localhost:50000/AdobeDocumentServices/Config?style=document, Authentication=BASIC, CLIENT_AUTHENTICATION_KEYSTORE_CERTIFICATE=, URL_CHOICE=Custom, SAP_LANGUAGE=}#
    #1.5 #005056AF1EB30072000000250000142000048B4D220A12ED#1279063306977#/System/Security/Authentication##com.sap.engine.services.security.authentication.logincontext#J2EE_GUEST#0##<host>_<sid>_3576650#Guest#4c1a62608ed511dfbe2a005056af1eb3#SAPEngine_Application_Thread[impl:3]_24##0#0#Info#1#com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.FAILED
    User: N/A
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          exception             true       Authentication did not succeed.#
    Successful direct access of URL http://<host>:50000/AdobeDocumentServices/Config?style=document (click on rpData test and manually log in as ADSUSER):
    #1.5 #005056AF1EB30070000000250000142000048B4D3E260016#1279063778670#/System/Security/Authentication##com.sap.engine.services.security.authentication.logincontext#ADSUSER#675##<host>_<sid>_3576650#Guest#812f72008ed611dfa62d005056af1eb3#SAPEngine_Application_Thread[impl:3]_14##0#0#Info#1#com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.OK
    User: ADSUSER
    Authentication Stack: com.adobe/AdobeDocumentServices*AdobeDocumentServices_Config
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   SUFFICIENT  ok          true       true                 
    Central Checks                                                                                true                  #
    #1.5 #005056AF1EB30070000000260000142000048B4D3E2666A6#1279063778702#/System/Security/Audit/J2EE##com.sap.engine.services.security.roles.audit#ADSUSER#675##<host>_<sid>_3576650#ADSUSER#812f72008ed611dfa62d005056af1eb3#SAPEngine_Application_Thread[impl:3]_14##0#0#Info#1#com.sap.engine.services.security.roles.audit#Java###{0}: Authorization check for caller assignment to J2EE security role [{1} : {2}].#3#ACCESS.OK#SAP-J2EE-Engine#all#

  • Invalid user Id and password for signon to Application designer!!

    Hi There,
    I am trying to instal peoplesoft HRMS 9.0 on Vista and Oracle 10g release 2.
    - Installed Weblogic server
    - Tuxido
    - Installed Peopletools 8.49
    - Installed HRMS 9.0
    - Created initHCDMO and created the database
    - ran the scripts under the scripts/nt folder
    - logged onto datamover with 'system' as user and 'manager' as password and successfully ran the script
    - ran the rel849n.sql script and grants.sql after logging onto sqlplus with 'system' as user and 'manager' as password
    - after that when I am trying to login to the application designer in 2 tier mode, with PS as user and PS as password, I am getting the error 'Invalid User ID and password for signon'
    Can anybody please help me|?
    Thanks,
    Partho

    Thanks Nicholas,
    It solved my problem, and I have moved on with the rest of the steps and I am stuck at starting the Application server. I have ran all the datamover scripts and all other configurations for the database. I can login to the database, with sql plus with SYSADM, SYSADM.
    Quick-configure menu -- domain: ps
    Features Settings
    ========== ==========
    1) Pub/Sub Servers : No 15) DBNAME :[HCDMO]
    2) Quick Server : No 16) DBTYPE :[ORACLE]
    3) Query Servers : No 17) UserId :[SYSADM]
    4) Jolt : Yes 18) UserPswd :[SYSADM]
    5) Jolt Relay : Yes 19) DomainID :[TESTSERV]
    6) WSL : Yes 20) AddToPATH :[D:\oracle\product\10.1.0\Db_1\BI
    N]
    7) PC Debugger : No 21) ConnectID :[people]
    8) Event Notification: Yes 22) ConnectPswd:[peop1e]
    9) MCF Servers : No 23) ServerName :[]
    10) Perf Collator : No 24) WSL Port :[7000]
    11) Analytic Servers : Yes 25) JSL Port :[9000]
    12) Domains Gateway : No 26) JRAD Port :[9100]
    Actions
    =========
    13) Load config as shown
    14) Custom configuration
    h) Help for this menu
    q) Return to previous menu
    =================================
    when I boot the domain, I get the following error:
    Command to execute (1-10, q) : 1
    PeopleSoft Domain Boot Menu
    Domain Name: ps
    1) Boot (Serial Boot)
    2) Parallel Boot
    q) Quit
    Command to execute (1-2, q) [q]: 1
    psappsrv.cfg has changed archiving old one...
    Copying ps\Archive\psappsrv.cfg to ps\Archive\psappsrv_070609_1915_55.cfg
    Attempting to boot bulletin board...
    tmadmin - Copyright (c) 1996-1999 BEA Systems, Inc.
    Portions * Copyright 1986-1997 RSA Data Security, Inc.
    All Rights Reserved.
    Distributed under license by BEA Systems, Inc.
    Tuxedo is a registered trademark.
    No bulletin board exists. Entering boot mode.
    INFO: BEA Tuxedo, Version 9.1, 32-bit, Patch Level (none)
    INFO: Serial #: 650522264137-2065448083901, Expiration NONE, Maxusers 1000000
    INFO: Licensed to: Oracle-Peoplesoft-ISV
    Booting admin processes ...
    exec BBL -A :
    process id=492 ... Started.
    1 process started.
    Attempting to boot ...
    INFO: BEA Tuxedo, Version 9.1, 32-bit, Patch Level (none)
    INFO: Serial #: 650522264137-2065448083901, Expiration NONE, Maxusers 1000000
    INFO: Licensed to: Oracle-Peoplesoft-ISV
    Booting server processes ...
    exec PSWATCHSRV -A -- -ID 52849 -C psappsrv.cfg -D TESTSERV -S PSWATCHSRV :
    process id=3120 ... Started.
    exec PSAPPSRV -s@..\psappsrv.lst -s@..\psqcksrv.lst -sICQuery -sSqlQuery:SqlRequ
    est -- -C psappsrv.cfg -D TESTSERV -S PSAPPSRV :
    CMDTUX_CAT:1685: ERROR: Application initialization failure
    tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error ha
    ndler
    tmshutdown -qy
    ==============ERROR!================
    Boot attempt encountered errors!. Check the TUXEDO log for details.
    ==============ERROR!================
    Do you wish to see the error messages in the APPSRV.LOG file? (y/n) [n] :y
    PSADMIN.2228 (0) [07/06/09 19:28:42](0) Begin boot attempt on domain ps
    PSWATCHSRV.3120 (0) [07/06/09 19:28:50] Checking process status every 120 second
    s
    PSWATCHSRV.3120 (0) [07/06/09 19:28:50] Server started
    PSAPPSRV.2104 (0) [07/06/09 19:28:51](0) PeopleTools Release 8.49 (WinX86) start
    ing
    PSAPPSRV.2104 (0) [07/06/09 19:28:51](0) Cache Directory being used: D:\PSHOME\a
    ppserv\ps\CACHE\PSAPPSRV_2\
    PSAPPSRV.2104 (0) [07/06/09 19:28:51](1) GenMessageBox(0, 0, M): Database Signon
    : Invalid user ID or password for database signon. (id=SYSADM)
    PSAPPSRV.2104 (0) [07/06/09 19:28:51](0) Server failed to start
    PSWATCHSRV.3120 (0) [07/06/09 19:28:52] Shutting down
    PSADMIN.2228 (0) [07/06/09 19:28:58](0) End boot attempt on domain ps
    Do you wish to see the error messages in the TUXLOG.070609 file? (y/n) [n] :y
    192842.PSOFTSERVER!PSADMIN.2228: Begin attempt on domain ps
    192844.PSOFTSERVER!tmadmin.436.428.-2: TMADMIN_CAT:1330: INFO: Command: boot -A
    192846.PSOFTSERVER!tmboot.876.3860.-2: 07-06-2009: Tuxedo Version 9.1, 32-bit
    192846.PSOFTSERVER!tmboot.876.3860.-2: CMDTUX_CAT:1851: INFO: TM_BOOTTIMEOUT is
    set to 60 seconds
    192846.PSOFTSERVER!tmboot.876.3860.-2: CMDTUX_CAT:1855: INFO: TM_BOOTPRESUMEDFAI
    L option is selected
    192848.PSOFTSERVER!BBL.492.3540.0: 07-06-2009: Tuxedo Version 9.1, 32-bit, Patch
    Level (none)
    192848.PSOFTSERVER!BBL.492.3540.0: LIBTUX_CAT:262: INFO: Standard main starting
    192850.PSOFTSERVER!tmboot.3456.3228.-2: 07-06-2009: Tuxedo Version 9.1, 32-bit
    192850.PSOFTSERVER!tmboot.3456.3228.-2: CMDTUX_CAT:1851: INFO: TM_BOOTTIMEOUT is
    set to 60 seconds
    192850.PSOFTSERVER!tmboot.3456.3228.-2: CMDTUX_CAT:1855: INFO: TM_BOOTPRESUMEDFA
    IL option is selected
    192850.PSOFTSERVER!PSWATCHSRV.3120.1072.-2: 07-06-2009: Tuxedo Version 9.1, 32-b
    it
    192850.PSOFTSERVER!PSWATCHSRV.3120.1072.-2: LIBTUX_CAT:262: INFO: Standard main
    starting
    192850.PSOFTSERVER!PSAPPSRV.2104.2068.0: 07-06-2009: Tuxedo Version 9.1, 32-bit
    192850.PSOFTSERVER!PSAPPSRV.2104.2068.0: LIBTUX_CAT:262: INFO: Standard main sta
    rting
    192851.PSOFTSERVER!PSAPPSRV.2104.2068.0: LIBTUX_CAT:250: ERROR: tpsvrinit() fail
    ed
    192851.PSOFTSERVER!tmboot.3456.3228.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal err
    or encountered; initiating user error handler
    192855.PSOFTSERVER!BBL.492.3540.0: CMDTUX_CAT:26: INFO: The BBL is exiting syste
    m
    192858.PSOFTSERVER!PSADMIN.2228: End boot attempt on domain ps
    ==========================**********************===================
    I have followed the steps as mentioned in the installation manual.
    Please help.
    Thanks Partha

  • Auto-update: invalid user name / password

    Hello,
    I have changed out the CCO username and password for an IPS configured for auto-update but cannot get the IPS to correctly update its signature any longer.  I have verified that the CCO login is correct and that it can download a signature file directly using a web browser interface. However, every attempt to get the IPS to update automatically results in the following error:
    Auto Update Statistics
       lastDirectoryReadAttempt = 15:05:29 UTC Mon Sep 29 2014
        =   Read directory: https://72.163.4.161//cgi-bin/front.x/ida/locator/locator.pl
        =   Error: invalid user name/password combination
    (Note: I have the URL set to 'www.cisco.com')
    Thanks,

    FYI - just to close my own issue.
    The issue was resolved by using the cli to set the values and perform a one-time update. Once that was successful, all future signature updates have worked fine through the gui.

  • Download Helper, even with paid converter upgrade, gives "Invalid Capture File" errors and will not record audio, with "File Creation Error - Unable to rename/copy audio file" Error.

    Download Helper Screen Capture worked to capture video if the default "no audio" option is active. But, no audio. The "speakers" or "microphone" audio options are confusing....the audio to be captured is from the video, so what do you choose? With either "speakers" or "microphone" selected, the captured file has poor audio and no video. Re-capture efforts (speakers) get "Invalid capture file error" and "File Creation error- Unable to rename/copy audio file"
    The paid upgrade of "Converter" doesn't work.
    Instructive documentation - not very good.
    Suggestions - Need time delay between initiation of "Record" and starting the video to be recorded.
    Could use timer tracking of the record process.
    Are there operating system limitations? (Have Windows XP Pro)

    That is an issue for the developer of that Download Helper.

  • "Invalid User ID" error while running OSoft Application in browser

    Hi,
    I have installed BPC 7.5 SP04 in Multi Server environment where SQL Server, OLAP Server, Reporting Server on one machine and Application Server and Web Server on other machine, After installing I tried to run Osoft application via url "http://Application Server name/OSoft" as suggested in Install guide but receiving "Invalid User ID" error
    Error Information
    Server Error in '/OSoft' Application.
    Invalid UserID
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Exception: Invalid UserID
    Please guide me on this as what can be the cause of this error and how to fix it.
    I have used Windows Server 2008 with IIS 7.
    Thanks,
    Rohit
    Edited by: Khatak Rohit on Mar 18, 2011 10:57 AM

    First login must be done with Installation user.
    In your case you tried to login from your PC where you were conected with your user.
    This user  is used to connect to BPC and this user has no rights into BPC.
    It was used this user because BPC allow Windows authentication.
    So you have to go into IE - Tools - Internet Options
    Select Security Tab - Select Intranet
    Push Custom Level
    Go to section - User Authentication - select "Prompt always user and pwd"
    Close IE
    Open again and try http://nameofserver/osoft you will receive now a prompt for user and pwd.
    Input an user and pwd with access to BPC and you will see this time the page will be load correct.
    Regards
    Sorin Radulescu

  • Error in user creation in portal

    While Creating a user named as  SLDADMIN in portal i am getting error the log file contains
    #1.5#0016E69E70D20069000006A80000143400044E33DA212183#1211884516747#com.sap.security.core.wd.maintainuser.MaintainUserComp#sap.com/tcwddispwda#com.sap.security.core.wd.maintainuser.MaintainUserComp.public void saveModifications( )#J2EE_ADMIN#76936#SAP J2EE Engine JTA Transaction : 0ffffffcb6812052b5#sapserver2.delhi_BS1_13330450#J2EE_ADMIN#da4e23e12bd711ddc1ac0016e69e70d2#SAPEngine_Application_Threadimpl:3_6##0#0#Error##Java###Error in the persistence
    EXCEPTION
    #1#com.sap.security.core.wd.exception.UmeUiPersistenceException: The UME/ABAP user management connector is set to read-only mode and therefore rejects the creation request for user SLDADMIN
    Please help

    Hi,
    You should control in ABAP via SU01 the user SAPJSF (JSF Service User).
    This user should can have 2 roles :
    For read-only access from the AS Java to the ABAP system, choose the role SAP_BC_JSF_COMMUNICATION_RO.
    For read-write access from the AS Java to the ABAP system, choose the role SAP_BC_JSF_COMMUNCIATION.
    You can have more information [here|http://help.sap.com/saphelp_nw04s/helpdata/en/9e/fdcf3d4f902d10e10000000a114084/content.htm]
    Best regards,
    Mathieu
    PS : reward points if helpful

  • Transport user error: invalid object name while starting CMS in CCM

    Hi Experts,
            I'm not able to start the CMS in CCM.It was working fine. Suddenly it went down due to some data base access failure. After that Iu2019m not able to start the CMS.
    Kindly find the event viewer error and information.
    Error: The root server reported an error Initialization Failure.
    Error: Failed to register object..   Reason: Transport user error: invalid object name..
    Information: Central Management Server stopped
          Could you please tell me how to start the CMS in CCM? Since I can able to setup CMS Database and audit database successfully.
    Regards,
    Sridharan

    Hi ,
            Thanks for the response.I have trace the CMS.I found some error in log file.any idea on the following errors,
    trace message: CNSClientManager::VerifyConnection() : search fails(37) - Transport user error: object with the specified name not found.
    trace message: CNSClientManager::VerifyConnection() : Failed to query for APSs.  Empty cluster list returned.
    trace message: TheAPSServer::RegisterApsInNameServer: Fail to register the current APS(Transport user error: invalid object name.)
    trace message: CNSClientManager::ClusterInfo::InvalidateAPS: Removing APS  from m_ActiveMembers and adding to m_InactiveMembers
    trace message: SIServerController:run: Fail to initialize or uninitialize.  Reason is The root server reported an error Initialization Failure.:
    Regards,
    Sridharan

  • SAP Installation with DB2/LINEX  ,User creation error

    Dear All,
       I have started sap installation with DB2/lLinex at the moment i am struggling in step 2:Creating user for sap system
    Error:Invalid password DIAGNOSIS .The password you specified for user db2ec1 is wrong .(CJS -20004 :Invalid password DIAGNOSIS)
    Solution:Enter the correct password .
    Please advice how to correct the issue ..
    Thanks,
    Rajmohan .s

    Hi Dinesh Sadasivan,
    While doing the sap installation please avoid using special character in password. Use the simple password like password123.
    One more thing is that also cross check the password policy from your os admin, like complexity lenth etc. If its there then tell him to temporary disable the policy.
    Regards,
    Kamal

  • Error when install Oracle XE in Ubuntu: invalid user && ...

    When I install Oracle XE in Ubuntu I got message from Terminal
    /bin/chown: `oracle:dba': invalid user
    /bin/chown: `oracle:dba': invalid user
    /bin/chmod: cannot access `/etc/init.d/oracle-xe': No such file or directory
    /var/lib/dpkg/info/oracle-xe-univ.postinst: 30: /sbin/chkconfig: not found
    -e You must run '/etc/init.d/oracle-xe configure' as the root user to configure the database.
    I don't know how to resolve this problem!
    Have anyone can help me?
    Thank you anyway!

    >
    I don't know how to resolve this problem!
    Have anyone can help me?
    >
    I have done a number of Oracle Database XE installations and one thing I am very confident about is that fact that the only certified Linux distros are below.
    >
    <li>Red Hat Enterprise Linux RHEL3 and RHEL4</li>
    <li>Suse SLES-9</li>
    <li>Fedora Core 4</li>
    <li>Red Flag DC Server 5.0/MIRACLE LINUX V4.0/Haansoft Linux 2006 Server (Asianux 2.0 Inside)</li>
    <li>Debian 3.1</li>
    >
    The only way you can sort out this issue is by installing your software on a Linux Distro that has been certified for Oracle Database XE.
    You perhaps might want to go through the installation manual; unlike the other Oracle Database Installation manuals, it is something you can finish reading in less than an hour.
    http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm#BABGGAJA
    There is an Oracle Database XE forum here {forum:id=251}; do a quick search and see if you will find people who have managed to install XE on Ubuntu
    Regards,
    Phiri

Maybe you are looking for

  • Adapter Engine on XI

    Hi, What are the different types of adapter engines and when do we use Plain J2SE adapter engine?.... why is it used?...Is the installation a diff instance compared to the regular installation?

  • How large can a PDF be?

    I have 50 large PowerPoint files that I want to combine all their slides into a single PDF, is this possible. How large of a file can the adobe software handle, I suspect the final PDF will be large, about 3 gigabytes and 1,200 slides. Yes this is la

  • Does the iPod fifth generation have Wi-Fi?

    Does the iPod fifth generation have Wi-Fi?

  • How to convert pdf to excel

    How do I convert a pdf file to excel format?  I have a new computer and can't find how to convert.

  • Problem in designing

    hi all i m developing online test(aptitude test) i want to add images or figures like circle or rectangle wat tech i should use for desiging the page frontpage or java is it possible in html thanx in advance rachna Message was edited by: rachna_arora