Error deleting Hierarchy leaf nodes

Hi SDNers,
I have hierarchy table whose values I want to delete.
If I check in the Main table, none of the records are assigned the hierarchy values. But if I try to delete it, i am getting the error "one or more values are set to records in another table" !!
If I select all the records in the main table, and try to modify the heirarchy field value.. the error is "Records cannot be modified because their data is out of date"
I have tried unloading n loading again with update indices.. but same error!!
Note: In the hierarchy table one of the leaf node i want to delete is greyed out!!
Thanks,
Priti

Hi Priti,
If I check in the Main table, none of the records are assigned the hierarchy values. But if I try to delete it, i am getting the error "one or more values are set to records in another table" !!
I faced the similar kind of error, on carefully evaluating the repository  in our case i found that this hierarchy values are assigned to a field in Qualified table. So i would suggest you to please check all the other sub-tables (flat tables, Qualified tables etc) where may be a field in any of this sub-table is look-up to this hierarchy table.
Regards,
Mandeep Saini

Similar Messages

  • Hierarchy Leaf node does not display in F4 functionality

    Hello,
    Scenario:
    - profit center based hierarchy
    - user has access to only leaf nodes in that hierarchy.
    - authorisation works perfectly and displays only the correct values
    Problem:
    When we run the query in the portal and use the F4 functionality to select the profit center value nothing is displayed.
    This is ok for the particular case where one profit center needs to be accessed by the user since it is automatically filled out, but if that user has access to more than one profit centers this is a problem.
    System:
    BI7 BCS
    Support Package Stack 10 ABAP+Java
    SAP_BW is on SP11
    Please note that the profit center field is also not greyed out.  We raised an oss about this and SAP responded with "this is working as intended".  Thus the use is able to type the values into the profit center hierarchy box.

    Check whether you are filtering any level of the hierarchy when running this query? or you are using a hierarchy variable and defaulting it to certain level which doesnot show what you are looking at.
    Hope this helps you.

  • Retrieve Hierarchy Leaf Node using API.

    Hello All,
      Is there a way to search in the Hierarchy Lookup table only on it leaf node.
    Example.
    I have a Hierarchy structure
    Americas
       I
       ___ North America
                        I
                        _____ United States and Virgin Island
                                                          I
                                                          ______ United States,US,USA.
    For the above structure if i search by "United States" and put in CONTAINS as a constrain then, i need to retrieve only "United Stated,US,USA". Is there a Java API, to do this search.
    Thanks,
    Priya.

    Hi Priya,
    yes there is API Command available for retrieving the Hierarchy elements.
    All you need is the Record ID of the selected innermost leaf noe that you can get by performing a search.
    Once you get his record ID for the innermost leaf node, you need to use the RetrieveHierAncestors Command to get the Values for the parent of the leaf node.
    Documentation is avaible at: [http://help.sap.com/javadocs/MDM/SP06/com/sap/mdm/data/commands/RetrieveHierAncestorsCommand.html]
    Hope his helps!!
    Cheers,
    Arafat

  • How to get the leaf node in a hierachy????

    if i get a record that a parent node in a hierachy table ,so how can i get the leaf node of this parent node quicklly?????thank you!

    Hi xuhuanjun ,
    Refer to the below threads which disucss the same.
    Re: how to ensure a hierarchy tree's node is a internal leaf???????
    Re: Retrieve Hierarchy Leaf Node using API.
    Hope it helps.
    Thanks,
    Minaz

  • Hierarchy VIewer - Card only on Leaf nodes

    I am using version 11.1.2.3.0.
    Is there a way to show a Card only on the leaf nodes of the Hierarchy VIewer?
    I have information that only applies to the nodes on the very bottom of the tree.
    Thanks in advance.

    This should be possible.
    I've not tested this but you can use the rendered property of the panelCard component and set it to an EL which evaluates to false is the node has children (node.hasChildren? or some other data which lets you know if you want to show the card).
    If this does not work you leaf the rendered property as is and use the visible or rendered property of the component which holds the information you only want to show in leaf nodes.
    Timo

  • INCFL Flag in SID table is missing for hierarchy leaf Error

    Hello:
    We are having issues with 0mat_sales hierarchy.
    The RSRV  check on individual hierarchy for 0mat_sales is giving multiple following error message.
    u201CINCFL Flag in SID table is missing for hierarchy leaf 560135 with sid 560135u201D.
    RSRV correct error functionality Is not rectifying the error.
    Did anyone have similar issues previously? We have recently upgraded to 7.3 version.
    Thanks!

    Hi,
    Check the below given thread might help you, they are talking about running program RRINCLTAB_REBUILD in background to repair the infoobjects.
    [http://forums.sdn.sap.com/thread.jspa?threadID=316796]
    Regards,
    Durgesh.

  • Leaf node Hierarchy based on tree position

    Hi All,
    I need to find the Hierarchy of given leaf node. Can you please help me. Here are details
    create table t_rk_4 (child_id number, parent_id number, treenum varchar2(100));
    insert into t_rk_4 values (2,1,'1');
    insert into t_rk_4 values (3,1,'1');
    insert into t_rk_4 values (6,2,'1.2');
    insert into t_rk_4 values (7,6,'1.2.6');
    insert into t_rk_4 values (4,3,'1.3');
    insert into t_rk_4 values (5,4,'1.3.4');
    insert into t_rk_4 values (7,5,'1.3.4.5');
    insert into t_rk_4 values (8,7,'1.2.6.7');
    insert into t_rk_4 values (4,9,'1.9');
    insert into t_rk_4 values (9,1,'1');
    In the above date, child 8's parent is 7 only in case if tree context 1.2.6.7
    select child_id,parent_id connect_by_isleaf,level,lpad(' ',level*3)||a.child_id
    from t_rk_4 a
    start with child_id = 8 connect by child_id = prior parent_id ORDER SIBLINGS BY child_id;
    when I run the above query I am getting all tree contexts,
    Is there a way I can only get tree positins thru 1.2.6.7 ?
    In real table I have more than 1 million records..
    Any help would be helpful..
    Thanks
    ay.

    Hi,
    Welcome to the forum!
    Thanks for posting the CREATE TABLE and INSERT statements! It clarifies things a lot and makes it much easier to reply.
    Another very helpful thing is to post the results you want from the data you posted. In this case, I think you want:
    . CHILD_ID  PARENT_ID CONNECT_BY_ISLEAF      LEVEL INDENTED
             8          7                 0          1    8
             7          6                 0          2       7
             6          2                 0          3          6
             2          1                 1          4             2Is that right?
    Notice how multiple spaces are not compressed in the section above. That's because I typed {code} (all small letters, in curly brackets) before and after that section.
    To get those results, I just added one line to your CONNECT BY clause, saying that the parent's treenum has to be the first part of the child's treenum:
    SELECT     child_id
    ,     parent_id
    ,     CONNECT_BY_ISLEAF
    ,     LEVEL
    ,     LPAD (' ', LEVEL * 3) || a.child_id     AS indented
    FROM     t_rk_4     a
    START WITH     child_id = 8
    CONNECT BY     PRIOR parent_id     = child_id
    AND          PRIOR treenum     LIKE treenum || '.%'     -- *** NEW CONDITION ***
    ORDER SIBLINGS BY     child_id;What do you want to do if the node you're starting with has two (or more) parents?
    If we START WITH child_id = 7, the query above produces this output:
    . CHILD_ID  PARENT_ID CONNECT_BY_ISLEAF      LEVEL INDENTED
             7          5                 0          1    7
             5          4                 0          2       5
             4          3                 0          3          4
             3          1                 1          4             3
             7          6                 0          1    7
             6          2                 0          2       6
             2          1                 1          3          2That is, there are two rows in the table with child_id = 7, so the query shows two lines of ascent. The alternate route, going through the node with child_id = 9, is not shown. Is that what you want?

  • Copy Top node of a hierarchy to the leaf node of another - within dimension

    Hi,
    Scenario is, user uploads monthly data in the respective leaf nodes of Monthly Input hierarchy. But at a later stage user might want to adjust figures directly on the Annual level.
    For that matter I've got 2 hierarchies in Time Dimension, which look like as below:
    Monthly Input
    2007.TOTAL
    2007.Q4
    2007.Dec
    2007.Nov
    2007.Oct
    2007.Sep
    2006.TOTAL
    Annual Input
    xxxx.ANL
    2009.ANL
    2008.ANL
    2007.ANL
    I could think of two solutions:
    1- To upload monthly data directly into .ANL leaf nodes and add signed data values w.r.t. key dimensions and YEAR. Problem is Append functionality isn't available if you loading/importing data from flat file. Can guide me if, somehow, it is workable or not? 
    2- To copy the .TOTAL nodes to the respective member of  .ANL nodes (e.g. 2007.TOTAL to 2007.ANL). I'm not sure if it is possible or not?
    Many thanks in advance for more suggestions and earliest reply.
    Regards,
    Shabbar
    Edited by: Ali Shabbar on Jun 30, 2009 1:00 PM

    Hi Shabbar,
    If I was faced with the requirement to provide a means for allowing both monthly inputs and annual adjustments, I would use one hierarchy, rather than trying to sync signdata values between two hierarchies.  With the structure I've shown below, users could report on unadjusted values with 2007.YEAR, annual adjustments with 2007.ADJ or both with 2007.TOTAL.
    2007.TOTAL
    |
    |--2007.ADJ
       |--2007.ANL
    |
    |--2007.YEAR
       |--Q4
           |--2007.DEC
           |--2007.NOV
           |--2007.OCT
    Best regards,
    [Jeffrey Holdeman|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/jeffrey+holdeman]
    SAP BusinessObjects
    Enterprise Performance Management
    Regional Implementation Group

  • Alternate hierarchy with only the Leaf nodes

    Hi,
    I have an account hierarchy with multiple levels in it. Now I want to make an alternative hierarchy with only the leaf nodes of that hierarchy with using the same nodes. Can anyone please explain the steps how to do it.

    Unless you have any special requirements it will be straight forward, get an export of all the leaf members in an action script format and execute the INSERT action on your alternate hierarchy, you can create your alternate hierarchy with only the TOP node and insert the leaf members under it, in case you have thousands of them, you can split them by introducing dummy parents, also if you wish to maintain any local properties, please have them updated accordingly.

  • Tree's leaf node as commandLink throws up error

    Hello,
    I have a tree component in a .jsff. This tree has its leaf node as a af:commandlink. The command link component has an actionListener and action methods configured. When a leaf node is clicked for the first time we are seeing an ADF Faces message that there is a NPE turning up. The messages in the logs are
    WARNING: ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase APPLY_REQUEST_VALUES 2
    Throwable occurred: javax.el.ELException: java.lang.NullPointerException
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
    Caused by: java.lang.NullPointerException
         at oracle.adf.model.binding.DCBindingContainer.callAfterRowNavigated(DCBindingContainer.java:2542)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.internalSetCurrentRow(JUCtrlHierNodeBinding.java:591)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.internalSetCurrentRow(JUCtrlHierNodeBinding.java:558)
    Upon clicking the OK button, the navigation continues fine; indicating that the actionListener and the action methods are fine. I have confirmed this with diagnostic messages in the server logs(thanks ADF Logging!)
    Subsequent clicks on the same or other leaf nodes do not throw this error.
    Has anyone seen this kind of behaviour or could anyone help me understand what is going wrong.
    Thanks in advance.
    Nachi

    Just an update, enabled logging on the adfinternal classes to see the following in the log files.
    [2013-03-20T13:47:28.983+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: popContextChange] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] Context change about to be be popped. Current stack size: 1
    [2013-03-20T13:47:28.983+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.controller.util.LogUtils] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: stopCurrentEvent] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.util.LogUtils] TimedEvent Stack is empty!
    [2013-03-20T13:47:28.984+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: pushContextChange] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] Context change about to be pushed. Current stack size: 0
    [2013-03-20T13:47:28.984+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: pushContextChange] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] Context change about to be pushed. Current stack size: 1
    [2013-03-20T13:47:28.984+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: popContextChange] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] Context change about to be be popped. Current stack size: 2
    [2013-03-20T13:47:28.985+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: popContextChange] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl] Context change about to be be popped. Current stack size: 1
    [2013-03-20T13:47:28.985+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for public listener 'oracle.adf.controller.internal.debug.AdfLifecycleBreakpointFacadeFwk'.
    [2013-03-20T13:47:28.985+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.view.faces.activedata.FacesBindingRewiringListener'.
    [2013-03-20T13:47:28.986+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.application.model.SaveStateTokenListener'.
    [2013-03-20T13:47:28.986+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.application.model.DispatchContextualEventListener'.
    [2013-03-20T13:47:28.986+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.application.model.UpdateBindingListener'.
    [2013-03-20T13:47:28.986+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.debug.ActivityBreakpointFacadeImpl'.
    [2013-03-20T13:47:28.987+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.application.SaveStateListener'.
    [2013-03-20T13:47:28.987+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.application.NewWindowStateListener'.
    [2013-03-20T13:47:28.987+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.application.PageParameterPagePhaseListener'.
    [2013-03-20T13:47:28.988+00:00] [WC_CustomPortal_2] [TRACE:32] [] [oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: afterPhase] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.lifecycle.ADFLifecycleImpl$PagePhaseListenerWrapper] ADFc: afterPhase 'jsfApplyRequestValues' for listener 'oracle.adfinternal.controller.application.SyncNavigationStateListener'.
    [2013-03-20T13:47:28.988+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.controller.util.LogUtils] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: stopCurrentEvent] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.util.LogUtils] TimedEvent Stack is empty!
    [2013-03-20T13:47:28.988+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.controller.engine.ControlFlowEngine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: handleException] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.engine.ControlFlowEngine] ADFc: Handling exception [java.lang.NullPointerException]
    [2013-03-20T13:47:28.988+00:00] [WC_CustomPortal_2] [TRACE] [] [oracle.adfinternal.controller.engine.ControlFlowEngine] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [SRC_METHOD: handleException] [URI: /jlpportal/faces/navigator] [SRC_CLASS: oracle.adfinternal.controller.engine.ControlFlowEngine] ADFc: No exception handler found.
    [2013-03-20T13:47:28.989+00:00] [WC_CustomPortal_2] [WARNING] [] [oracle.adfinternal.view.faces.lifecycle.LifecycleImpl] [tid: [ACTIVE].ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: 12057258] [ecid: 000001qO8s^B5EHMyuicMG00M03c001C7A,0:1] [APP: XXJLPPartnerLinkApp#V2.0] [URI: /jlpportal/faces/navigator] ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase APPLY_REQUEST_VALUES 2[[
    javax.el.ELException: java.lang.NullPointerException
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1300)
         at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:225)
         at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
         at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
         at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:232)
         at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:902)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:357)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.wls.filter.SSOSessionSynchronizationFilter.doFilter(SSOSessionSynchronizationFilter.java:276)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at xxjlp.oracle.apps.por.portal.filter.XXJLPIECompatibilityOverrideFilter.doFilter(XXJLPIECompatibilityOverrideFilter.java:39)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at xxjlp.oracle.apps.por.portal.filter.XXJLPCustomFacesFilter.doFilter(XXJLPCustomFacesFilter.java:424)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.lifecycle.filter.LifecycleLockFilter.doFilter(LifecycleLockFilter.java:151)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(AccessController.java:284)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1459)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.NullPointerException
         at oracle.adf.model.binding.DCBindingContainer.callAfterRowNavigated(DCBindingContainer.java:2542)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.internalSetCurrentRow(JUCtrlHierNodeBinding.java:591)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.internalSetCurrentRow(JUCtrlHierNodeBinding.java:558)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.syncCurrentRow(JUCtrlHierNodeBinding.java:529)
         at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.setRowAsCurrentOnTargetIterator(JUCtrlHierNodeBinding.java:543)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierNodeBinding.setRowAsCurrentOnTargetIterator(FacesCtrlHierNodeBinding.java:129)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel.makeCurrent(FacesCtrlHierBinding.java:488)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
         at java.lang.reflect.Method.invoke(Method.java:611)
         ... 75 more
    Appreciate any help on this one. thanks!

  • Drill and Navifgate only from leaf node

    Hi
    I have implemented level based hierarchy for my dimension. I want to navigate to another report only from the leaf node of the hierarchy.
    Can you please let me know how can this be achieved? How can i identify the leaf node in a level based hierarchy

    This is not a duplicate of the item mentioned. With one I have a node anywhere in the tree and need to walk up to find the parent. In this one, I have the parent and need to delete leaf nodes up to this parent. I each one I have a different set of constraints and different ids to work with. Thanks for your help.

  • Hierarchy leaf not shown while data exists

    Hi experts,
    We have the following issue regarding the (in)visibility of hierarchy leafs:
    We know that transactional data exists for a particular item in the hierarchy (total value is zero). This item is not shown by default in the report output (while zero suppression has been turned off). There are a few ways to make the item visible, e.g:
         1. Deactivate the hierarchical display
         2. Filter on the item
         3. Filter on another characteristic value for which the transaction data doesn't add up to zero.
         4. .........
    However, we would like to show the item in any case, so even when the underlying transactional data sums up to zero.
    Has anyone faced a similar problem before? Any idea how to solve the issue?
    If necessary, I can send some screenshots with detailed information by email.
    Thanks in advance !
    Kind regards,
    Rene

    Hi,
    We had a similiar issue in the Cost Element Hierarchy & got resolution.
    I followed the below method an extract from SDN Forum reply.
    You need to make the InfoObject an InfoProvider. Then you create a multiprovider with your InfoCube and the InfoObject. When you create a query, insert a new column that contains the key figure 0ROWCOUNT and a restriction on 0INFOPROV to your InfoObject.
    When you right click on 0INFOPROV you now have the option to select Constant Selection. When you've turned it on you do a right click again and you're able to activate "Display non-posted values."
    Finally hide the new column and execute the query.
    Also we found out that for the nodes that were not appearing , the master data was incomplete. there was no source system assignment to those, we updated the field manually & with the above method the query worked.
    Regards
    Lalan

  • Hierarchical Query from a leaf node

    I have thist table
    create table employee(
    emp_id number(7) not null
    name varchar(30)
    supervisor_id number(7)
    Constraint PK_employee primary key(emp_id))
    This is my data
    Insert into employee(emp_id,name) values (1,Boss)
    Insert into employee values(2,Subordinate1,1)
    Insert into employee values(3,Subordinate2,1)
    Insert into employee values(4,Subordinate3,1)
    Insert into employee values(5,Subordinate4,2)
    Insert into employee values(6,Subordinate5,5)
    Insert into employee values(7,Subordinate6,3)
    In my program, I'll be given the leaf node lets say, Subordinate5, I want to get the whole hierarchy for that subordinate like this:
    Boss\Subordinate1\Subordinate4\Subordinate5
    or Subordinate 6
    Boss\Subordinate2\Subordinate6
    Help will be greatly appreciated. Thanks.

    Here is another - a little bit rewritten - version:
    michaels>  SELECT full_path
      FROM (SELECT LTRIM (SYS_CONNECT_BY_PATH (NAME, '\'), '\') AS full_path
                  FROM employee e
            CONNECT BY PRIOR emp_id = supervisor_id ORDER BY LEVEL DESC)
    WHERE ROWNUM = 1 AND SUBSTR (full_path, INSTR (full_path, '\', -1) + 1) = 'Subordinate5'
    FULL_PATH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
    Boss\Subordinate1\Subordinate4\Subordinate5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
    1 row selected.

  • Hierarchical Dimension with a leaf node w/o any parent

    Hi
    We have a Product Dimension with five levels L0, L1, L2, L3 and L4 (L0-lowestlevel, L4-HighestLevel).
    With one Hierarchy STANDARD as
    L4, NULL (Parent)
    L3, L4 (L4 is the parent of L3)
    L2, L3
    L1, L2
    L0, L1 (L1 is the parent of L0)
    The product dimension table has a record with values only for L0 and NULL values for other Levels..
    (ie) We have a requirement to create a value in L0 which will have no parents.. The rest of the values in L0 will have parents.
    Would like to know if this is possible in AW. This was possible in Express Server
    regards
    uma

    HI
    yes we have run into a big problem. We have created leaf nodes w/o parent in aw and created relational views of those. The measure views thus created has data for these dimension values but when accessed thru BI Beans (ie in the cross-tab if we have this measure) the data is not getting displayed for these dimension values (Which do not have parent)
    Any immediate response will be of greate help to us.

  • TechTool 4 Volume test and "invalid leaf node"

    Just a "heads up". I just installed TechTool 4 and ran the usual diagnostics as a level-set. I was surprised to discover that I had two volumes with invalid leaf nodes. To make a long story short, the discussion with TT support revealed that there's apparently nothing wrong with my drives. They've both been re-formatted, surface scanned, repaired, etc. I've never had any errors from either of them. One is a Seagate 250GB and the other is a WD 160GB. TT support asked to borrow one of my drives for a couple weeks(!) because they think it's a bug and can't reproduce it. Disk Utility says there's nothing wrong. Take Volume Scan leaf node errors reported by TT4 with about a pound of salt, since the bug is still there (and will be, since I can't live without the drive for weeks and they won't buy it). I'm reporting it here, because they suppressed the majority of our discussion on their forum and I don't particularly approve of them hiding a known bug from customers. I have the TT logs and anyone who wants to see them can just ask, BTW. This isn't a vendetta against them so much as an attempt to spare others the 2 days of lost work I experienced while running various things for TT support, all to find out that I'm not the one with the problem.
    Mac Pro   Mac OS X (10.4.9)   3GHz, 4GB

    Oh Yeah, that I know. I run two intermediate backups and a full clone daily. The awkward thing is that one of the drives is my "snapshot backup" drive, naturally. They swear that they've only had one other report of this and it went away with a reformat. Mine did not. You'd think that a reformat and surface scan would reveal a hard, repeatable, drive error - which TT4 implies I have. What are the odds that I have two drives with a totally unique problem (such as they described it), made by different manufacturers, with hard and repeatable errors that only their program can detect? SMART says they're OK, Disk Utility says they're OK, no errors are logged, their temperatures are the same. If this error is so rare, how is it that I just happen to have it on 50% of my drives? It's been a Royal Pain to re-jigger my drives so that the backups go to a drive that doesn't have the "error", just in case.

Maybe you are looking for

  • How do you remove a iphone from a itune account

    I set up my iphone to my wifes itunes account by accident. I want it to be set up to my itunes account under my library.  How do I remove my iphone 4 from my wifes itunes account?

  • Photoshop CS6 constant crashes, can't save to server

    We recently upgraded our Adobe Creative Suite from CS3 to CS6. Now I am experiencing issues with Photoshop CS6 I have not seen in previous versions, it seems it cannot save files across a network any longer. If I try to work normally, saving my files

  • Import video clip from DVD

    Can anyone help me learn what I need to import video clips from my family video DVD's? I created the DVD's from tapes through Pinnacle Studio 8 (before becoming a Mac fan). Thanks for any help you can give me, Ann

  • Losing history, cookies, settings, and plug-ins when rebooting

    I am having a problem with Firefox that is driving me NUTS! Every time I have a need to reboot my computer, I lose my settings, cookies, history, and add-ons. My bookmarks are still there however. After rebooting and clicking FF, it changes my settin

  • Itunes installation file wont run

    I have successfully downloaded itunes801Setup.exe. When I run it it gives the usual XP warning stating publisher not verified. When I click run nothing happens. I have also downloaded the quicktime installer file with identical results. Everything el