11i Error when modifying account

eBus 11.5.10.2, DB 10.2.0.4, OID 10.1.4.0.1, RHEL4
Apps and OID on are on the same server, single instance, DB is on a seperate server.
Recently when we try to modify the account of a user we experience an error when trying to save the changes.
The pop-up error states:
Unabled to call fnd_ldap_wrapper.update_user due to the following reason:
ORA-20001: Unabled to call fnd_ldap_wrapper.update_user due to the following reason:
An unexpected error occured. Please contact System Administrator.. (USER_NAME-XXXXXXX)
I enabled logging for FND and got the following in the fnd_log_messages table:
fnd.plsql.oid.fnd_oid_plug.get_realm_dn: LDAP SESSION closing in EXCEPTION BLOCK - START
fnd.plsql.oid.fnd_oid_plug.get_realm_dn: LDAP SESSION closed in EXCEPTION BLOCK - END
fnd.plsql.oid.fnd_ldap_wrapper.update_user: ORA-06503: PL/SQL: Function returned without value
fnd.plsql.oid.fnd_ldap_wrapper.update_user: l_err_code :FND_SSO_UNEXP_ERROR, l_tmp_str :ORA-06503: PL/SQL: Function returned without value
So it seems something returns without a value, but I am not sure how to track down what. I checked and the user account is in OID. It seems to be occuring to accounts that are linked via the "Customer" field on Define as opposed to "Person"
What can I enable log wise or check to find the cause of this issue? I have searched metalink and all the documents I have found concerning Function not returning a value are for other items and not accounts.
Thanks
Edited by: Toolman21 on Sep 16, 2010 10:47 AM

Just to update the forum post, I have finally discovered the issue. The Global User ID that was in eBus did not match that in OID, therefore it was returning not found.
The solution was to update the GUID in APPS.FND_USER to match what OID contained. If the SSO link on the fly feature is used in provisioning you can simply set the USER_GUID column in APPS.FND_USER to null for that user and once they log in again it will be repopulated from OID. Alternatively you can use the script $FND_TOP/patch/115/sql/fndssouu.sql to change this for a user as well.
@$FND_TOP/patch/115/sql/fndssouu.sql USERNAME
Thanks for the help.

Similar Messages

  • Problems publishing a web-access on Sharepoint: Error when modifying list schemes

    Good afternoon.
    I have an application built with an access database with several forms and web macros which is published on Sharepoint 2010. Through this application - not too big not too complex (ca. 10 tables / less than 2000 records at most) - I receive updates
    that are loaded into external applications, mainly excel worksheets, ms project files and so on.
    I have been going through the cycle of developing and publishing new versions of the application on the same site for more than a year; suddenly, from severeal weeks ago on, I started receiving the following error affecting random tables (not always the
    same) which crashes the compilation and publishing:
    "Error when modifying lists schemes. Changing name to "ID" field on list XXXX failed"
    And each time the list is different. And of course I am no trying at all to change the name of any ID field !????
    Any clue of what might be happening?
    Thank you

    The article might have missed the step where the blogger might have missed the step. Read the following article and which confirms that you cannot use user controls in SB solutions.
    http://msdn.microsoft.com/en-us/library/gg615454.aspx
    If you are trying to build this in SharePoint 2013 then you must know that custom code is deprecated from SB solutions.
    Deprecation
    of Custom Code in Sandboxed Solutions
    For SP 2013 your best bet is to create an APP or create a farm solution (God please forgive me). :)
    Amit

  • Encounter "500 Unexpected Error" when admin account access to ECP

    Symptom: 
    In Exchange 2013, when using admin account to access ECP, you will get an error “500 Unexpected” as below. However, when using the same account to access OWA, everything is ok, and other normal accounts can access OWA also.
    At the same time, if you check the event log, you will get the following error:
    Current users: “yourdomain.com/User/admin”Request for URL 'https://servername.yourdomain.com:444/ecp/default.aspx(https://servername/ecp/)' failed with the following error: System.Configuration.ConfigurationErrorsException: “                                               
    ” (hexadecimal value 0x03)is an invalid character. Line 1, position 1 (C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\ecp\quarantine\web.config line 1) ---> System.Xml.XmlException: “                                               
    ” (hexadecimal value 0x03)is an invalid character. Line 1, position 1     System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)     System.Xml.XmlTextReaderImpl.ParseRootLevelWhitespace()    
    System.Xml.XmlTextReaderImpl.ParseDocumentContent()     System.Configuration.XmlUtil..ctor(Stream stream, String name, Boolean readToFirstElement, ConfigurationSchemaErrors schemaErrors)     System.Configuration.BaseConfigurationRecord.InitConfigFromFile()
    Cause:
    According to the error information, there are some invalid characters in the file (C:\Program Files\Microsoft\Exchange Server\V15\ClientAccess\ecp\quarantine\web.config ).
    In Exchange Mailbox server, when we open this file with notepad, we will find that all the content are garbled. That is the cause.
    Solution: 
    1. Try to copy the following code to replace the contents of the file, and save it.
    2. Restart mailbox server.
    <?xml version="1.0"?>
    <configuration>
      <location path="Quarantine.slab">
        <system.web>
          <authorization>
            <allow roles="Get-QuarantineMessage@R:Organization"/>
            <!-- Deny everyone else -->
            <deny users="*"/>
          </authorization>
        </system.web>
      </location>
      <location path="EditQuarantineAdvFilter.aspx">
        <system.web>
          <authorization>
            <allow roles="Get-QuarantineMessage@R:Organization"/>
            <!-- Deny everyone else -->
            <deny users="*"/>
          </authorization>
        </system.web>
      </location>
      <location path="QuarantineDetails.aspx">
        <system.web>
          <authorization>
            <allow roles="Get-QuarantineMessage@R:Organization"/>
            <!-- Deny everyone else -->
            <deny users="*"/>
          </authorization>
        </system.web>
      </location>
      <location path="QuarantineSDO.aspx">
        <system.web>
          <authorization>
            <allow roles="Get-QuarantineMessage@R:Organization"/>
            <!-- Deny everyone else -->
            <deny users="*"/>
          </authorization>
        </system.web>
      </location>
      <location path="ReleaseQuarantine.aspx">
        <system.web>
          <authorization>
            <allow roles="Release-QuarantineMessage@R:Organization"/>
            <!-- Deny everyone else -->
            <deny users="*"/>
          </authorization>
        </system.web>
      </location>
    </configuration>
    Reference: https://social.technet.microsoft.com/Forums/zh-CN/74a108a8-21f3-4f5e-8fee-94942698797a/exchange-2013ecp500?forum=exchangeserverzhchs
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hi,
    According to your description, I understand that open a shared mailbox and modify the setting of Outlook Voice Access by OWA, then return an error “500 unexpected error”.
    If I misunderstand your concern, please do not hesitate to let me know.
    Basis on my testing, run Enable-UMMailbox to enable UM feature for shared mailbox, and enable shared mailbox account in AD. Then login OWA to double check the setting of Voice mail, everything is OK.
    However, I get the same error as your mentioned when login another account in OWA and open shared mailbox to modify the setting of voice mail. Also, I get same error when doing this way to access another mailbox.
    I find an similar thread about your question, it may be caused by the license of shared mailbox. For your reference:
    http://community.office365.com/en-us/f/148/t/160652.aspx
    Best Regards,
    Allen Wang

  • Error when modifying VM Memory - "Invalid minimum memory amount"

    Good day,
    I am trying to modify a virtual machine's static memory setting using VMM 2012 R2 with UR 2.  The VM is running on a Hyper-V 2012 R2 host cluster.  Whether I use the VMM GUI or attempt to issue the command via VMM Command Shell, I get the same
    result:
    PS C:\Windows\system32> $VM= Get-SCVirtualMachine -name "SomeVM"
    PS C:\Windows\system32> set-scvirtualmachine -VM $VM -MemoryMB 4096
    set-scvirtualmachine : VMM cannot complete the host operation on the hyperv.domain.com server because of the error: 'SomeVM' failed to modify device 'Memory'. (Virtual machine ID22AD6F9F-E5B6-4B8D-9AB6-6A48A9521297)Invalid minimum memory amount assigned for 'SomeVM'. The minimum amount of memory you can assign to a virtual machine is '32' MB. (Virtual machine ID22AD6F9F-E5B6-4B8D-9AB6-6A48A9521297) (Error ID: 12700, Detailed Error:Unknown error (0x8005))
    Resolve the host issue and then try the operation again.
    To restart the job, run the following command:
    PS> Restart-Job -Job (Get-VMMServer localhost | Get-Job | where { $_.ID -eq"{8301e122-b69e-4ac0-82d7-82c473d99e3a}"})
    At line:1 char:1
    + set-scvirtualmachine -VM $VM -MemoryMB 4096
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   
    + CategoryInfo          : ReadError: (:) [Set-SCVirtualMachine], CarmineEx   ception   
    + FullyQualifiedErrorId : 12700,Microsoft.SystemCenter.VirtualMachineManag   er.Cmdlets.SetVMCmdlet
    The error indicates that I am attempting to set the VM memory to something less than 32 MB, but as shown above I am actually trying to set it to 4096 MB.  I also get this error when I attempt to modify the value using Hyper-V Manager (or in this case
    the Failover Cluster Manager).  Note that I am not attempting to configure dynamic memory on this VM.
    One more note about this VM - it was migrated from a Hyper-V 2012 host cluster performed by exporting the VM from the old host, and importing it to the new one.
    Not sure if anyone else has experienced this error or if there is a work around.

    Really what the error is not telling you, is that you need to set the value for minimum memory in addition to the value you are setting.
    if dynamic memory is on, you need to set them all: 
    http://technet.microsoft.com/en-us/library/hh801341.aspx
    -MemoryMB<Int32>
    Specifies, in megabytes (MB), the amount of random access memory (RAM) on the host that is allocated to a virtual machine. The default value is 512 MB. For a virtual machine on which dynamic memory is enabled (on a host running Windows Server 2008 R2 SP1
    or later), use MemoryMB to specify the startup memory value.
    I have run into this issue what I had VMs that I migrated to Hyper-V 2012 R2, because the minimum was actually lower.  Or it was empty if the VM had fixed memory.  And now it can no longer be an empty setting.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Error When Modifying a Resource Event as Designate

    Hi,
    I'm developing an app for a conference room device using the C APIs and am having a problem modifying an event for a resource. If I use the same user ID as with which the event was created, everything works fine. However, I'm attempting to use an ID that is set as a designate for a group of resources, and when I do, I get a CAPI_STAT_DATA_UID_NOTFOUND error when using the CSDK_FLAG_STORE_MODIFY flag.
    Here's the data I'm sending:
    VERSION:2.0
    PRODID://Oracle//CAPI//EN
    BEGIN:VEVENT
    UID:20070111T141735Z-101b6d4-65-3559-Oracle
    X-ORACLE-EVENTTYPE:APPOINTMENT
    DTSTART:20070111T092000
    DTEND:20070111T095000
    END:VEVENT
    END:VCALENDAR
    Flags CSDK_FLAG_STORE_MODIFY | CSDK_FLAG_STREAM_NOT_MIME
    The SDk version is 10.1.2.0.0
    Is there any inherent problems with this approach?
    Thanks,
    Dave Bowman

    Here's some additional information on the problem and the sequence of events:
    1) Open the connection using user ID that is a designate for the resource.
    2) Change the user ID to the resource identifier ("?/RS=RENCI - Europa
    Conference 520/") using CSDK_SetIdentity with the flags set to CSDK_FLAG_NONE.
    The function call appears to work correctly and returns no errors.
    3) Modify the event data using CSDK_StoreEvents with the the above data.
    4) The error returned is: CAPI_STAT_DATA_UID_NOTFOUND. And the event ID is
    correct.
    I've tried both with and without using the CSDK_SetIdentity function, with the
    same results.
    Is it feasible to use this approach to have a resource be able to modify an
    event that was created by another user? Or is the use of another ID with
    higher privileges required? Such as 'SYSOP'? If the latter, obtaining SYSOP
    privileges may be problematic as we are just users of the Calendar system and
    not the owners.
    Thx.......

  • Portal Runtime error when modifying: com.sap.portal.runtime.logon.par

    Hello,
    We need some help because we get 'Portal Runtime error: iView: N/A Component Name:N/A' error when trying to access portal logon screen.
    This is what we've done:
    We've modified com.sap.portal.runtime.logon.par file and we've uploaded it but it doesn't work. Because of the error, we've overwritten this file with the original one but now it's imposible to access portal.
    The situation it seems to be like before the modification of the .par file but we get the same error and can't access portal.
    Please, do you know what could be the problem?
    Thanks in advance

    Hi Belen,
    Here are the steps you would need to take
    1. import the original par file into the NWDS and name the project as  
        com.sap.portal.runtime.logon
    2. Make sure the project name is com.sap.portal.runtime.logon
    3. use winzip/winrar to extract the com.sap.portal.runtime.logon.par file in
        a local directory
    4.Under the lib you would find two jar files copy them and paste them in your project
       under dist>PORTAL-INF>lib directory
    5.move the files cert....till umResetPass....jsp into the  PORTAL-INF directory
    6. export the par to the server in question
    7. restart your server
    This should solve your problem..
    Thanks,
    Gokul

  • JNDI error when modifying schema

    While modifying some objectclasses on IPlanet LDAP using JNDI I get the following error:
    [ERROR] [LDAP: error code 1 - The objectclass is malformed. Missing opening "(" around allowed attributes]
    Note that this happens on certain object classes and not in others but I can not determine a pattern. I also get the same error when removing certain objectclasses (it works ok with others).
    I'm using the code given as an example in the Java tutorial to modify the schema.
    Any input would be apreciated.
    Regards.
    -- Paul

    Pls pass either of following two properties to the environment parameter of InitialDirContext:
    New property name: com.sun.jndi.ldap.netscape.schemaBugs=true
    Old property name: com.sun.naming.netscape.schemaBugs=true
    They are used by Sun's JNDI LDAP driver to work with Netscape LDAP server.

  • Sync Setup gives unknown error when creating account

    Getting "unknown error" when trying to setup sync account. i have the latest version of firefox. i cleared the cache. I did a factory reset. none of it worked.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    Did you ever used sync before and have previously created an account?
    *https://services.mozilla.com/ Firefox Sync » Home
    *https://account.services.mozilla.com/

  • Error when release account plan via CRM_ACC_PL

    Hi expert,
    Getting error 'Overlapping validity periods for two condition records' when release account plan via CRM_ACC_PL.
    Any idea what caused this error?
    Cheers.

    Hello,
    could you please check notes 1311405, 1067232, 1044090, 1041830.
    Hopefully they can help.
    Regards,
    Gerhard

  • Error when switching accounts in XP

    I get an error when I switch to another account on my win xp prof.
    the error message is "
    Core Center
    Failed to load hardware monitor driver
    When I click OK I get the next error message "
    No Hardware Monitor !
    After clicking OK again the systems craches en reboots
    Anyons know how to fix this ??
    TiA

    I personally don't reccomend the use of "corecenter" and I don't have a solution, but what it sounds like to me is a poorly scripted peice of software. See, when you "switch" accounts, but don't log off, some of the registry remains, and possibily the software doesn't see that you have switched users, so it's looking around for something that isn't there.
    So in other words, I don't like corecenter, most of us around here use speedfan.
    So if anyone knows of a solution....

  • Errors when Modifying a Weblogic EJB example to make it connect to mySQL

    Hello,
    I am learning the example codes shipped with weblogic server, which is under ...samples\examples\ejb20\basic\beanManaged. The original connection pool was on cloudscape. I was trying to modify it and make it connect to mySQL.
    In ejb-jar.xml and weblogic-ejb-jar.xml, I replaced "demopool" (which was the original pool name) with "demopool1".
    After starting the server, I configured a new connection pool as following:
    Name: demopool1
    URL: jdbc:mysql:///test
    Driver Classname: org.gjt.mm.mysql.Driver
    Properties
    (key=value): user=none
    server=none
    But when I run the example, I got the following error:
    ----------------Server Side:------------------------------------
    <2007-10-6 &#19979;&#21320;03&#26102;23&#20998;18&#31186;> <Error> <JDBC> <Error during Data Source creation:
    weblogic.common.ResourceException: DataSource(examples-dataSource-demoPool1) can't be created with non-existent Pool (connection or multi) (demoPool1)>
    setEntityContext called
    ejbFindByPrimaryKey (ID: 0)
    Failed to lookup JDBC Datasource. Please double check that
    the JNDI name defined in the resource-description of the
    EJB's weblogic-ejb-jar.xml file is the same as the JNDI name
    for the Datasource defined in your config.xml.
    ---------------------Client Side:-----------------------
    C:\bea\wlserver6.1\samples\examples\ejb20\basic\beanManaged>java examples.ejb20.
    basic.beanManaged.Client "t3://localhost:7001"
    Beginning beanManaged.Client...
    Trying to find account with id: ID: 0
    There was an exception while creating and using the Accounts.
    This indicates that there was a problem communicating with the server: java.rmi.RemoteException: Exception in ejbFindByPrimaryKey; nested exception is:
    javax.ejb.EJBException
    - with nested exception:
    [javax.naming.LinkException:  [Root exception is javax.naming.NameNotFoundException: Unable to resolve examples-dataSource-demoPool1. Resolved: '' Unresolved:'examples-dataSource-demoPool1' ; remaining name '']; Link Remaining Name: 'examples-dataSource-demoPool1']
    What should I do to solve this problem?
    Thanks a lot.

    The exception leads me to believe that you never set up the connection pool with that name in WebLogic. Why not try it? Do you know how to set up a connection pool? Start up the admin console and add it in.
    http://localhost:7001/console
    %

  • Error when modifying tabular form

    Hi
    In Apex 3, I created a tabular form based on the query below:
    select user_id /* PK */, name, dob
    from users
    It works perfectly well; I am able to update the name and dob fields.
    Then I changed the query to:
    select user_id /* PK */, name, null dob
    from users
    ...(i.e. not interested in the dob column anymore but want to keep the report column) and cleared the properties reference table owner/name/column name of the dob report column.
    However, when I try to update the name of a user, I get the error:
    Error in mru internal routine: ORA-20001: Error in MRU: row= 1,
    ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process.
    current checksum = "7C3CD9C5DA0B5AF45AE616959020A0AA",
    item checksum = "6910D5C7015D84773A9E8F65299991F6".,
    update "SCHEMA"."USERS" set "USER_ID" = :b1, "NAME" = :b2, "DOB" = :b3Why is dob still being included in the update statement?
    Did I miss something?
    Thanks,
    Luis

    Since the DOB was one of the columns specified when you created the tabular form, the internal PL/SQL process that it uses for making updates is still trying to update that column. As you have now modified the underlying query for the form and are passing a NULL for your DOB, you will find that any update made using this form would set the DOB to NULL, so beware!
    Unfortunately, once you have created a tabular form, you cannot make changes to the process that it uses for manipulating data. Another drawback of the tabular form is that it uses the primary key of the table as a way of knowing which record it is updating when it processes the changes. As a result, you cannot modify the primary key value itself - and that is why you are getting the error.
    Generally speaking it is not a good idea to edit primary key values. If this piece of information does require editing, I would suggest you find another candidate for the primary key - perhaps a standard sequence-populated column that could act as a surrogate key?
    Cheers,
    Colin

  • Error when Modifying Application

    Hey Experts!
    We've recently upgraded to BPC 7.0 - Microsoft 2008 DB.  When I tried to modify one of our Applications for the first time, I get the following message:
    Error message:: Access to the path "F:\BPC\Data\Webfolders\AdminTemplates\AuditRpt.rdl" is denied.
    This occurs on Step 8 of the Modify Application Process.
    I've ensured that the User ID I'm running this process under is a BPC administrator and has full Local Admin rights on the server.  Any idea why this is occuring?
    Thanks!
    Sean

    Hi Sean,
    Do you have access to the application server? If not, please check with your DBA who created the ID for you.
    My take is that your ID somehow doesnt have sufficient privileges because when you modify application through BPC, you are essentially modifying the folder on the application server.
    Also, does your application has data? Try running the 'Clear' package to delete data from your application, then modify the application. See if it works!
    Tagz

  • Error when modifying global services plan

    I'm trying to modify the global services part of my wireless plan.  When I try submitting this change, I get the error message "You currently are on the selected plan. Please select another plan."  Is this a bug with the site or is there some other way to change just the global services part of my plan?

        I can help you with that, c_b1. Which plan do you currently have? Which plan are you attempting to change to?
    ChaunceyM_VZW
    Follow us on twitter @VZWSupport

  • Deployment error when modifying measures and my heirarchy

    I am working on Lesson 3 on analysis services tutorial where i am modifying measures and my heirarchy
    and this is my error message.
    Warning 1 Dimension [Date] : Avoid visible attribute hierarchies for attributes used as levels in user-defined hierarchies. 0 0
    Warning 2 Dimension [Customer] : Avoid visible attribute hierarchies for attributes used as levels in user-defined hierarchies. 0 0
    Warning 3 Dimension [Product] : Avoid visible attribute hierarchies for attributes used as levels in user-defined hierarchies. 0 0
    Warning 4 Dimension [Product] : Define attribute relationships as 'Rigid' where appropriate. 0 0
    Warning 5 Errors in the OLAP storage engine: A duplicate attribute key has been found when processing: Table: 'dbo_DimDate', Column: 'CalendarQuarter', Value: '4'. The attribute is 'Calendar Quarter'. 0 0
    Error 6 Internal error: The operation terminated unsuccessfully. 0 0
    Error 7 Server: The current operation was cancelled because another operation in the transaction failed. 0 0
    What can i do to fix this?

    Hi Cook959,
    In your scenario, it seems that the issue was related to the error message.
    Errors in the OLAP storage engine: A duplicate attribute key has been found when processing: Table: 'dbo_DimDate', Column: 'CalendarQuarter', Value: '4'. The attribute is 'Calendar Quarter'. 0 0
    There are many reasons that can cause this issue, here are some blogs which list the reasons and explanation, please refer to the links below to see the details.
    http://ms-olap.blogspot.com/2009/11/duplicate-attribute-key-has-been-found.html
    http://blog.oraylis.de/2013/08/a-duplicate-attribute-key-has-been-found-during-processing-revisited/
    Hope this helps.
    Regards, 
    Charlie Liao
    TechNet Community Support

Maybe you are looking for