ORAMED-01002:[Metadata error in assign operation]

Im using the Oracle Mediator component to assign an expression to a property. The assign expression uses the dvm:lookupValue() function to assign the outcome of the function to the property. When I invoke a message from e.g. SoapUI or the em testfeature it all works perfect. But when I use a testsuite with an initiate message that is similar to the request from SoapUI, the message fails with the following error:
Non Recoverable System Fault:
ORAMED-01002:[Metadata error in assign operation]Metadata Error occurred while assigning to target "$out.property.jca.db.XADataSourceName" using invalid expression "dvm:lookupValue("oramds:/apps/dvm/RegioCode.dvm","RegioCode",$in.request/sadr:GetHoofdaanvragerAdressenRequest/ns6:PersoonKey/ns5:RegioCode,"Datasource","jdbc/DoNotUse")".Possible Fix:Fix the expression. Cause:internal xpath error
Invoke via SoapUI results in the following instance message fragment:
<message>
Assigned "dvm:lookupValue("oramds:/apps/dvm/RegioCode.dvm","RegioCode",$in.request/sadr:GetHoofdaanvragerAdressenRequest/ns6:PersoonKey/ns5:RegioCode,"Datasource","jdbc/DoNotUse")" to "$out.property.jca.db.XADataSourceName"
</message>
Any suggestions.
Regards,
Melvin

Hi Clemens,
We've reported a service request on metalink regarding this issue. See : 3-1154677691
I've summarized the messages for you:
A SoapUI message that works:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adr="http://www.xyz.nl/Services/AdresService"
xmlns:geb="http://www.xyz.nl/Contracten/Gebruiker"
xmlns:elem="http://www.xyz.nl/Contracten/Common/Elementen" xmlns:obj="http://www.xyz.nl/Contracten/Aanbod/Object">
<soapenv:Header/>
<soapenv:Body>
<adr:GetObjectAdresRequest>
<geb:Autorisatie>
<elem:Gebruikersnaam>xxx</elem:Gebruikersnaam>
<elem:Locale>nl-NL</elem:Locale>
<elem:Kanaal>1</elem:Kanaal>
</geb:Autorisatie>
<obj:ObjectKey>
<geb:Autorisatie>
<elem:Gebruikersnaam>xxx</elem:Gebruikersnaam>
<elem:Locale>xxx</elem:Locale>
<elem:Kanaal>x</elem:Kanaal>
</geb:Autorisatie>
<elem:RegioCode>xxx</elem:RegioCode>
<elem:Type>0</elem:Type>
<elem:Reference>xxx</elem:Reference>
</obj:ObjectKey>
</adr:GetObjectAdresRequest>
</soapenv:Body>
</soapenv:Envelope>
The testsuite initiate message which fails :
<GetObjectAdresRequest xmlns="http://www.xyz.nl/Services/AdresService">
<Autorisatie xmlns="http://www.xyz.nl/Contracten/Gebruiker">
<Gebruikersnaam xmlns="http://www.xyz.nl/Contracten/Common/Elementen">xxx</Gebruikersnaam>
<Locale xmlns="http://www.xyz.nl/Contracten/Common/Elementen">xxx</Locale>
<Kanaal xmlns="http://www.xyz.nl/Contracten/Common/Elementen">x</Kanaal>
</Autorisatie>
<ObjectKey xmlns="http://www.xyz.nl/Contracten/Aanbod/Object">
<RegioCode xmlns="http://www.xyz.nl/Contracten/Common/Elementen">xx</RegioCode>
<Type xmlns="http://www.xyz.nl/Contracten/Common/Elementen">x</Type>
<Reference xmlns="http://www.xyz.nl/Contracten/Common/Elementen">xx</Reference>
</ObjectKey>
</GetObjectAdresRequest>
The composite Test.xml file
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Generated by Oracle SCA Test Modeler version 1.0 at [11/12/09 8:59 AM]. -->
<compositeTest compositeDN="Adres" xmlns="http://xmlns.oracle.com/sca/2006/test">
<about/>
<initiate serviceName="AdresService_ep" operation="GetObjectAdres" isAsync="false" delay="PT0S">
<message>
<part partName="request">
<content>
<GetObjectAdresRequest xmlns="http://www.xyz.nl/Services/AdresService" xmlns:ns2="http://www.xyz.nl/Contracten/Gebruiker" xmlns:ns3="http://www.xyz.nl/Contracten/Aanbod/Object">
<ns2:Autorisatie xmlns:ns4="http://www.xyz.nl/Contracten/Common/Elementen">
<ns4:Gebruikersnaam>xxx</ns4:Gebruikersnaam>
<ns4:Locale>xxx</ns4:Locale>
<ns4:Kanaal>x</ns4:Kanaal>
</ns2:Autorisatie>
<ns3:ObjectKey xmlns:ns5="http://www.xyz.nl/Contracten/Common/Elementen">
<ns5:RegioCode>xxx</ns5:RegioCode>
<ns5:Type>x</ns5:Type>
<ns5:Reference>xxx</ns5:Reference>
</ns3:ObjectKey>
</GetObjectAdresRequest>
</content>
</part>
</message>
</initiate>
</compositeTest>
Regards,
Melvin

Similar Messages

  • Error while assigning Operating concer to Controlling Area

    Hi...
    while I am trying to assign operating concern to controlling area, the system is showing the following error message.
    Diagnosis
    Controlling area 7500 and operating concern 7500 have different fiscal year variants (01 and K4). However, for cost center assessment, settlement, and many other types of postings to Profitability Analysis, the controlling area and the operating concern must have identical fiscal year variants, otherwise error messages or serious data inconsistencies can occur.
    But i already changed fiscal year variant from K4 to 01 in Operating concern and i run the generate operating concern environment also. still the system is showing the same error message.
    Is there anything more i need to do after changing fiscal year variant in Operting concern.
    Please help me.
    Thank you,
    Regards,
    Santosh

    I have got the solution.
    Thank you,
    Regards,
    Santosh

  • Error on Remove operation in Assign

    I have a remove operation within an assign, that removes unused attributes from an element. The problem is (I think) that the element and the attributes are from different namespaces. The remove operation is as follows:
    <bpelx:remove>
    <bpelx:target variable="DDSRequest" part="vraagBericht" query="/ns3:vraagBericht/ns3:body/ns3:PRS/@ns4:sleutelVerzendend"/>
    </bpelx:remove>
    When executing my BPEL process, I receive the following error:
    Assign Operation Misuse.
    The selection result at list entry # 0 does not have a parent node; remove operation cannot be performed.
    This is stupid, since if I assign a value in an attribute right next to it:
    <copy>
    <from expression='"F"'/>
    <to variable="DDSRequest" part="vraagBericht" query="/ns3:vraagBericht/ns3:body/ns3:PRS/@ns4:soortEntiteit"/>
    </copy>
    this works fine....
    How do I remove those unused attributes? Is there anyway to change the default behaviour of the Assign activity to leave out all unused elements/attributes, instead of putting them in as empty elements/attributes?

    No I can't, since I don't have all parameters in a single XML document variable. And I can't define my own document through an XSD, because then JDeveloper complains if I try to create a variable with that XSD, that it's not being used in a partnerlink. For some stupid reason you can't create your own variables with an XSD that's not used for any partnerlinks.So I can't create a single simple document to transform into the format I need.
    Unless you mean that I can transform the document 'into itself'?

  • Multi-thread failure - Error in assignment

    Hello
    I have a c++ program processor running under Windows XP with Oracle 9i. My program access to oracle by an ODBC driver version 9.2.0.4.0. It could be launched in multi-thread to increase performance. When I launch it with one thread everything is fine. When I use several threads I have problems. ODBC driver returns to me a "error in assignment ... General error" message and my updates queries failed. Under SQl server it works without problems. It seems to be a kind of deadlock. When I disable check box in my odbc driver of "enable query timeout" my program encounter a problem and freezes...
    Could someone help me ?

    user13335017 wrote:
    I have thought of the above solutions as workable, however, it is not. Some exhibited errors are:
    A. "Attempt to use database while environment is closed." This error applies to 2, 3 and 4 all the way;
    B. "Attempt to read / write database while database is closed." This error applies to 3 in particular;
    C. "Attempt to close environment while some database is still open." This error applies to 5.
    Please help me with designing a better strategy to solve the concurrent issue. Many thanks in advance.All these are expected errors. You should design the application so that you do not close an environment handle while database handles are still open, keep database handles open for as long as operations need to be performed on the underlying databases, open the database handles after opening the database handles, and close database handles before closing the environment handle.
    In short, in pseudo-code, you should have something like this:
    - open environment handle,
    - open database handles,
    - perform whatever operations are needed on the databases,
    - close database handles,
    - close environment handle.
    You can refer to the Getting Started with Data Storage and the Getting Started with Transaction Processing guides appropriate for the API you are using, from the Berkeley DB documentation page.
    Regards,
    Andrei

  • Error in arithmetic operation in record

    Hi all
    when I'm loading from flat file i'm getting the following error
    "Error in arithmetic operation in record"
    Also one more error is
    "Error 8" error
    Pl reply with solution asap
    Thanks and Regards
    Shyam

    Hi Shyam,
    Delete Infosource - Source system assignment (with PSA tables etc.).
    Then save (activate) the Infosource (communication structure).
    Then assign source system, create infopackage and load data again.
    Should work fine then.
    Sham'm

  • Left side of assignment operator must be variable or property

    I Need Help!!!
    How do I prevent getting the message "Left side of assignment
    operator must be variable or property."
    Im trying to use 'onRelease' on the instance named "Item1"
    I have a variable named "sRange"
    sRange+Item1.onRelease=function(){

    Sry I didnt mean to send it through
    I meant to have it like this
    var sRange:String = "Zodiac";
    this.attachMovie("mcProducts","Zodiac",1);
    this.attachMovie("mcProducts","GTop",2);
    this.attachMovie("mcProducts","Triple",3);
    this.attachMovie("mcProducts","Custom",4);
    this.attachMovie("mcProducts","Special",5);
    sRange+ ".Item1".onRelease=function(){
    trace(sRange + "Item1 Selected");
    // I get this error:
    //**Error** Scene=Scene 1, layer=Item12, frame=1:Line 23:
    Left side of assignment operator must be variable or property.
    // sRange+ ".Item1".onRelease=function(){

  • Default assignment operator not created

    I am updating a large old C++ MFC program to VS2013.
    Several classes are failing to compile with C2248 errors, because the relevant default assignment operator has not been created.
    Attempting to force the creation of the default assignment operator using =default; results in C2280 errors saying that the affected classes are attempting to use a deleted function.
    Does this mean that the compiler is refusing to create the default assignment operator?  If so, why would this be?  There is another assignment operator explicitly defined in the class, but that one is for objects of the base class.
    TD

    The program works when compiled with VC5 in VS97 but not when compiled with VS2013.
    I am fairly sure that the derived class assignment operator is used, because I can see data items being copied that are not included in the code for the base class assignment operator.
    Here are some code snippets which show the structure of the code:
    // Base Class
    class CAuxIO : public CObject
    DECLARE_SERIAL(CAuxIO)
    public:
    enum eTypes { eNotDefined=-1, eKeyboard=0, eSerial, … };
    CAuxIO();
    virtual ~CAuxIO();
    virtual CAuxIO& operator=(const CAuxIO& rai);
    void CopySettings(const CAuxIO& rai);
    // Assignment Operator
    CAuxIO& CAuxIO::operator=(const CAuxIO& rai)
    if(this!=&rai)
    m_iType=rai.m_iType;
    m_iIndex=rai.m_iIndex;
    CopySettings(rai);
    return *this;
    // Derived Class
    class CAuxInput : public CAuxIO
    DECLARE_SERIAL(CAuxInput)
    public:
    CAuxInput();
    virtual ~CAuxInput();
    virtual CAuxIO& operator=(const CAuxIO& rai);
    protected:
    CObArray m_DigInSignalArray;
    // Assignment Operator
    CAuxIO& CAuxInput::operator=(const CAuxIO& rai)
    if (this != &rai)
    CAuxIO::operator=(rai);
    return *this;
    // Typical Derived Class
    class CAuxInputKeyboard : public CAuxInput
    DECLARE_SERIAL(CAuxInputKeyboard)
    public:
    CAuxInputKeyboard();
    virtual ~CAuxInputKeyboard();
    virtual CAuxIO& operator=(const CAuxIO& rai);
    // Assignment Operator
    CAuxIO& CAuxInputKeyboard::operator=(const CAuxIO& rai)
    if(this!=&rai)
    CAuxInput::operator=(rai);
    CAuxInputKeyboard* p=(CAuxInputKeyboard*)&rai;
    m_bSeparateArchive=p->m_bSeparateArchive;
    return *this;
    Example of the problem.
    *pci and *pciNew have static types of CAuxInput but run-time types of a derived class
    which has an explicit Assignment operator.
    while(pos)
    CAuxInput* pci=(CAuxInput*)rcl.GetNext(pos);
    int iType=pci->GetType();
    if(((-1)==m_iType) || (iType==m_iType))
    CAuxInput* pciNew=rcl.NewAuxInput(iType);
    if(pciNew)
    // The following line causes C2248
    *pciNew=*pci;
    m_cAuxInputList.AddTail(pciNew);
    TD

  • Error while assigning group

    Hi friends,
      1. Iam getting the following error when assigning the group to a user.
      <b>An error occurred while adding group assignments; to see the correct status, perform a new assigned groups search</b>
    2. When uploading the template also its throwing the java.null exception..
       template contains , user name, password, roles , mail_id, group..
      after uploading the template all the above information is created except group
      when i search for the user which is created based on uploading template ,
      the group is not assigned.
       I need to send users list asap with groups assigned. but its giving problem...
      can anyone suggest me on this..
      Thanks & regards
      Sireesha.

    Hello Sireesha,
    Have u followed standard format while uploading the text file....
    If not use this format while preparing the groups and users etc.....
    http://help.sap.com/saphelp_nw04/helpdata/en/ae/7cdf3dffadd95ee10000000a114084/content.htm
    Rgds
    Pradeep

  • Error while Assigning database level role (db_datareader) to SQL login (Domain Account)

    Team,
    I got an error while creating a User for Domain Account. Below is the screen shot of the error (error : 15401)
    Database instance is on SQL 2000 SP3. ( I know it is out of support, But the customer is relutanct to upgrade)
    On Google search, i found below article which is best matching for this error
    http://support.microsoft.com/kb/324321
    I have follows each step of troubleshooting. But still the issue persists.
    Step 1. The login does not exist == The login is very much exist in the domain as i am able to add the same domain id to other database instances
    Step 2. Duplicate security identifiers == i have used this query to find duplicate SID
    /*  SELECT name FROM syslogins WHERE sid = SUSER_SID ('YourDomain\YourLogin') */
    But there was only one row returned with create date of today's.
    Error while Assigning database level role (db_datareader) to SQL login (Domain Account) 
    Step 3. Authentication failure == Domain is available. User is able to login on other servers via RDP connection.
    Step 4. Case sensitivity == Database collation is set to Case insensitivity. (CI)
    Other two 5. Local Accounts & 6. Name resolution == is not applicable to me.
    I tried other ways also.
    A. Creating login and providing permission in one go only = User account is not created
    B. Instead of GUI, use query to create login and provide required permission = Same error.
    Does anybody has faced any such situation
    Chetan

    See the below output
    srvid
    sid
    xstatus
    xdate1
    xdate2
    name
    password
    dbid
    language
    isrpcinmap
    ishqoutmap
    selfoutmap
    NULL
    0x010500000000000515000000A1F66E1BFC1DC75D26E72530A2B80400
    14
    20:25.9
    57:33.4
    UKBAA\LHRAPPMuttavarapuS
    NULL
    1
    us_english
    0
    0
    0
    Chetan

  • Product: BusinessObjects Edge Series 3.0 -- Error 2902. Operation ixfAssemb

    Good Afternoon.
    I want to upgrade XIR3 to XIR3.1 for enabling IIS+SSO with Active Directory.
    But when I want to upgrade my system, I have the Following error:
    Product: BusinessObjects Edge Series 3.0 -- Error 2902. Operation ixfAssemblyCopy called out of sequence.
    Windows Server 2003 SP2 (Fully Patched)
    BusinessObjects Edge Standard XI 3.0 Windows (working)
    Patch I want to Install: 51036069.exe ,BusinessObjects Enterprise XI 3.1 FixPack 1.1 - WIN - INTL
    Thanks in advance for your help

    Hi All,
    Please clarify my following doubt,
    We are migrating from BO 6.5 to BO XI 3.1 intergrating with our application.
    I want to use the COM XI 3.1 SDK for the Desktop Intelligence. I did some code changes in the previous 6.5 SDK which we already used.
    Say, I changed the LoginAs() method to Logon() in the C++ file.When I tried to create the .dll file using Visual Studio 6.0, I got the following error,
    'Logon' is not the member of Application class.
    From this message, I understood that, still Application class of BO 6.5 was used and not BO xi and some libraries were also missing.
    Please correct me, if my understanding is wrong.
    Where can I get the BO xi 3.1 com SDK for DESKI? When searched in SAP portal, I get only the API reference and Developer guides.
    Thanks.

  • Cannot backup my files / copy my files and folders due to error message " The operation can't be completed because an item with the name ".DS_Store" already exists. "

    Hi Apple community!
    I have a [rather worrying] problem.
    When I try to copy all my files from my documents on my mac [or the entire documents folder] into an external drive, I get this error message
    " The operation can’t be completed because an item with the name “.DS_Store” already exists. "
    I am not given an option to skip this file or anything else.
    But I simply cannot complete the operation!
    I have tried deleting a few of the .ds_store files, [both in the original and in the destinations]
    but no success.
    The same thing keeps happening.
    At first, this was just happening when I was trying to backup to my dropbox folder [the one on my mac's harddrive, which gets synced to the cloud],
    but then I tried to back up my documents to my external hard drive, and I realized it is giving me the same error message.
    So effectively, it seems I cannot backup my files anywhere!
    Any help or advice would be greatly appreciated.
    Thank you.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Error message "The operation can't be completed because an item with the name .DS_Store already exists"

    Major headaches with copying files and folders between drives. I constantly (and I mean constantly) have to resort to copying files across in small batches (fewer than 10 works best) because anytime I try to copy lots of files and folders from my mac to an external hard drive (or from one external HD to a second external HD), I ALWAYS get the error message  "The operation can't be completed because an item with the name .DS_Store already exists".
    The files and folders are all Mac-generated, so hint or trace of foreign OSs in the mix.
    All file types are susceptible
    the HDs are all Mac OS X formatted, no foreign file formats involved
    the HDs are all journal-enabled, OS X extended formats
    have looked on here for previous posts, past suggestion was to disable creation of DS_Store files - not really a solution and realistically, defeats the purpose of their creation
    any ideas anyone?
    would appreciate any thoughts or sugestions, this has got me beat
    the context is that I have a lot of image files that I am copying (trying to...) new external 3TB drives for backup and the job appears endless if I have to do this in batches of 10 or so..!
    many thanks for any suggestions

    This is definitively a nuisance. When copying large amounts of files between volumes  try opening a terminal window and use use ditto. You need to type the directory paths of the source and the destination volume. When it starts ditto just coupes and optionally overwrites anything on the destination. You can get a verbose mode where it lists all activities.
    gunnars-mac-mini-i7:Volumes gunnar$ man ditto
    NAME
         ditto -- copy directory hierarchies, create and extract archives
    SYNOPSIS
         ditto [-v] [-V] [-X] [<options>] src ... dst_directory
         ditto [-v] [-V] [<options>] src_file dst_file
         ditto -c [-z | -j | -k] [-v] [-V] [-X] [<options>] src dst_archive
         ditto -x [-z | -j | -k] [-v] [-V] [<options>] src_archive ... dst_directory
         ditto -h | --help

  • Send and Recieve Error code " Receiving reported error (0x80004005): The operation failed"

    This is what is happening after installing 2010 on to a computer that was running 2007 Outlook.  Currently using Office 365 so everything is on the cloud but when the user sends one or two emails the error on the bottom of outlook says send and receive
    error. Then a pop up dialog box comes up with the following error
    Receiving reported error (0x80004005): The operation failed
    Does anyone know how to fix this
    Nexusxox

    Hi,
    Glad to know that you have found the solution.
    Thanks for your generous sharing. Have a nice day : )
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • ERROR: The Propagation operation ended in error. java.lang.reflect.Undeclar

    Dear all,
    i am using bea weblogic 10.0 ant i am downloading the running Inventory.
    but the below problem occurc when i run ant task for downloading that is
    ant -buildfile propagation_ant.xml downloadSrc the below problem occurs. i am new to bea so how can i debug the problem
    VERBOSE: InventoryTreeWalker: visiting node: Application:ContentServices:BEA Repository:ContentNodes:Webmasters:Sports:I won`t step down from presidency Khan.txt
    ERROR: The Propagation operation ended in error.
    java.lang.reflect.UndeclaredThrowableException
    at weblogic.security.providers.xacml.authorization.XACMLAuthorizerMBeanImpl.policyExists(XACMLAuthorizerMBeanImpl.java:245)
    at sun.reflect.GeneratedMethodAccessor477.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.bea.p13n.security.internal.SecurityProviderProxy.invoke(SecurityProviderProxy.java:48)
    at $Proxy54.policyExists(Unknown Source)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate$3.run(SecurityPolicyDelegate.java:241)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate$3.run(SecurityPolicyDelegate.java:239)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate.kernelRunAs(SecurityPolicyDelegate.java:433)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate.policyExists(SecurityPolicyDelegate.java:246)
    at com.bea.p13n.entitlements.management.internal.RDBMSSecurityPolicyManager.getSecurityPolicy(RDBMSSecurityPolicyManager.java:204)
    at com.bea.p13n.entitlements.management.SecurityPolicyManager.getSecurityPolicy(SecurityPolicyManager.java:119)
    at com.bea.propagation.content.online.util.SecurityHelper.getSecurityPolicy(SecurityHelper.java:146)
    at com.bea.propagation.content.online.util.SecurityHelper.getSecurityPolicies(SecurityHelper.java:122)
    at com.bea.propagation.content.online.hierarchy.ContentNodeHierarchy.discoverChildren(ContentNodeHierarchy.java:113)
    at com.bea.propagation.framework.hierarchy.ListNodeHierarchy.getChildrenNodes(ListNodeHierarchy.java:113)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:215)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst(InventoryTreeWalker.java:158)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst(InventoryTreeWalker.java:102)
    at com.bea.propagation.framework.tool.io.InventoryTreeExport.walkDepthFirst(InventoryTreeExport.java:88)
    at com.bea.propagation.framework.tool.io.InventoryFolderExport.walkDepthFirst(InventoryFolderExport.java:110)
    at com.bea.propagation.framework.tool.io.InventoryArchiveExport.walkDepthFirst(InventoryArchiveExport.java:103)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.writeInventoryToLocalFile(InventoryManagementServlet.java:1017)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.writeInventoryToLocalFile(InventoryManagementServlet.java:991)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.downloadOperation_Remote(InventoryManagementServlet.java:510)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.downloadOperation(InventoryManagementServlet.java:453)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.doService(InventoryManagementServlet.java:318)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.doPost(InventoryManagementServlet.java:199)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    ERROR: The Propagation operation ended in error.
    java.lang.reflect.UndeclaredThrowableException
    at weblogic.security.providers.xacml.authorization.XACMLAuthorizerMBeanImpl.policyExists(XACMLAuthorizerMBeanImpl.java:245)
    at sun.reflect.GeneratedMethodAccessor477.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.bea.p13n.security.internal.SecurityProviderProxy.invoke(SecurityProviderProxy.java:48)
    at $Proxy54.policyExists(Unknown Source)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate$3.run(SecurityPolicyDelegate.java:241)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate$3.run(SecurityPolicyDelegate.java:239)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate.kernelRunAs(SecurityPolicyDelegate.java:433)
    at com.bea.p13n.entitlements.management.internal.SecurityPolicyDelegate.policyExists(SecurityPolicyDelegate.java:246)
    at com.bea.p13n.entitlements.management.internal.RDBMSSecurityPolicyManager.getSecurityPolicy(RDBMSSecurityPolicyManager.java:204)
    at com.bea.p13n.entitlements.management.SecurityPolicyManager.getSecurityPolicy(SecurityPolicyManager.java:119)
    at com.bea.propagation.content.online.util.SecurityHelper.getSecurityPolicy(SecurityHelper.java:146)
    at com.bea.propagation.content.online.util.SecurityHelper.getSecurityPolicies(SecurityHelper.java:122)
    at com.bea.propagation.content.online.hierarchy.ContentNodeHierarchy.discoverChildren(ContentNodeHierarchy.java:113)
    at com.bea.propagation.framework.hierarchy.ListNodeHierarchy.getChildrenNodes(ListNodeHierarchy.java:113)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:215)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:224)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst(InventoryTreeWalker.java:158)
    at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst(InventoryTreeWalker.java:102)
    at com.bea.propagation.framework.tool.io.InventoryTreeExport.walkDepthFirst(InventoryTreeExport.java:88)
    at com.bea.propagation.framework.tool.io.InventoryFolderExport.walkDepthFirst(InventoryFolderExport.java:110)
    at com.bea.propagation.framework.tool.io.InventoryArchiveExport.walkDepthFirst(InventoryArchiveExport.java:103)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.writeInventoryToLocalFile(InventoryManagementServlet.java:1017)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.writeInventoryToLocalFile(InventoryManagementServlet.java:991)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.downloadOperation_Remote(InventoryManagementServlet.java:510)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.downloadOperation(InventoryManagementServlet.java:453)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.doService(InventoryManagementServlet.java:318)
    at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.doPost(InventoryManagementServlet.java:199)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:315)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)

    your error seems to indicate that your embeddedLdap isnt in sync with the Database ? Did you either delete files from your file systems or cleanup the portal db or finally used a copy of some existing database for your domain?

  • IMovie error message "The operation could not be completed"

    I am trying to create a new movie and got this error message " The operation could not be completed" after selecting the Themes.
    Any suggestions?
    Thanks

    My problem was because I had moved my Movies folder from the system drive (which is an SSD) over to another drive with a larger capacity. I then created an Alias in my home folder.  Turns out this is what was causing the problem. I shoulda known. Some apps absolutely hate this. iMovie, being the dumbed down garbage that it is, simply MUST have it's library in a certain folder, apparently. Would be nice if we had a choice about it.
    I find Premiere Elements is actually the better (and friendlier) program. However in this case, I had to slum it with iMovie due to the Quicktime file I was working with.

Maybe you are looking for

  • Voicemail not working after several IP phones are in busy/not answering mode

    Hi all,     I have a problem regarding our voicemail system using a CME-CUE infrastructures. It seems that if our Sales and Marketing dept are all busy or no one answer the call it will call forward to the other dept (Reservation).     In reality the

  • Error while updating drivers, help

    I've downloaded the new update drivers for X-Fi xtreme gamer soundcard and encountered the following error, while updating my X-Fi Pro sound card. SetupDLL\SetupDLL.cpp (298) aAPP:Sound Blaster X-Fi Drivers Web Release PVENDOR:Creative Technology Ltd

  • Premiere Pro CC won't read media source timecode?

    We recently switched over some of our editing systems to Premiere Pro CC, but for some reason Premiere Pro CC isn't reading the timecode from our source footage.  It works fine in CS6 and CS5, but on each of the CC systems, even though the timecode p

  • Getting Namespace From Document Object

    In my JSP I have an Document that contains the contents of an xsl file. I want to search for a specific variable element and then replace its contents with some new value. I think the problem I'm having though relates to namespaces. When calling meth

  • How can I get photoshop CS2 to work with Windows 8.1?

    how can I get photoshop CS2 to work with Windows 8.1?