Rollup of Subtraction of Child Entities

Hello All,
How can I achieve Roll up of Subtraction of two child entities into Parent Entity.
for example I have
A (Parent Entity)
   |--------A&B (Child 1)
   |--------B (Child 2)
We want to upload summation of A&B trail in Child 1 and only B trail as Child 2 and want to calculate Parent A as Subtraction of both Child 1 & Child 2.
what are the possible ways to achieve this, please share your views.
Thanks & Regards.

Hi,
Suggest you do a sign flip of data loaded for child B so that when you consolidate A it will give you the required result.
To still get data of B appearing correctly create reports for B with reverse sign flip in FR.
Hope this helps.
Regards,
Darshana

Similar Messages

  • Filtering child entities

    Hello !
    I have situation where depending on several conditions I construct a query step by step .
    This is the code :(Article has 2 relationship with F1 and F2)
    Dim list1 As IEnumerable(Of Article)
            list1 = From t In context.Articles.Include("F1").Include("F2") Order By t.name Ascending
                        Select t
            If condition1 then
                list1 = list1.Where(Function(t2) t2.tp = 1)
            End If
            If condition2 then
                list1 = list1.Where(Function(t2) t2.id = 7)
            End If
            Myreport.datasource=list1.ToList()
    This code is working , but now I want to add a new condition , and if this is true the child "F1" should be filtered.
    How can I filter the Child "F1" 
    Thank you !

    Hello,
    From my experience, the LINQ query could not perform a step by step query as you described, I suggest that you could try with the ESQL as darnold mentioned or post a wish to the team to below site so that the team might consider adding it to the further version:
    https://data.uservoice.com/forums/72025-entity-framework-feature-suggestions
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [solved] JPA - persisting parent & child entities in one hit

    Hi,
    I have an object say, "Bus" and it has a one to many relationship to another object, "Commuter". Suppose i create one Bus instance and one commuter instance and associate them to each other and i want them to save to the database and store the relationship via a foriegn key relationship in the Commuter table, what would the pojo look like? What exact annotations would i require for it to work. Working examples appreciated!

    Thanks for the link, and thats exactly why i want to do this (adf).
    However, the sample does not demonstrate the code for creating a new Department with a Employee at the same time, and wiring up the relational foriegn key.
    Any ideas on how to extend this example to do this? I'd like a form create one entity of each in one action. I followed some advise before to create my own persist() function which persists the Employee object first, then the Department object.
    They both successfully persist but the foriegn key does not get mapped in the table. Any sample code available?

  • Parent-Child post order exception; FK constraint violation

    I've seen the discussion and answer recently in this forum for configuring BC4J
    to post the parent first, then the child, to avoid the FK constraint exception??
    So I have to appologise for re-asking, but I can't get the search function to find
    any thing that needs multiple key words. :(
    I've got two Entities, parent child, with Links, and Association between them on the FK.
    What was the trick to get the framework to correctly post the parent first??
    I've looked over the FkLink and FkAssoc and all these components are included by
    the AppModule...
    Thanks, curt

    Edit the association object between your parent and child entities and set the "Composition" flag (Composite Assocation in the UI), to true. You may elect to enforce "CascadeDelete" option, if you have database Cascade-delete turned on between the associated tables and want to avoid multiple DMLs for the details.

  • How to model parent child relationship with DPL? @Transient?

    Hello All,
    I want to model a parent entity object with a collection of child entities:
    @Entity
    public class Parent{
    @PrimaryKey
    String uuid;
    List<Child> children;
    @Entity
    public class Child{
    @PrimaryKey
    String id;
    I know that the DPL won't support automatic persistence where it'll recursively go through my parent bean and persist my children with one call. Is there a way of applying the equivalent to JPA's @Transient annotation on "children" so I can persist the children manually and have the engine ignore the collection?
    If not and I want to return to the user a Parent with a List named "children," do I have to create a new object which is identical to Parent, but doesn't have the BDB annotations and manually assemble everything? If possible, I'd like to avoid defining redundant objects.
    Thanks in advance,
    Steven
    Harvard Children's Hospital Informatics Program
    Edited by: JavaGeek_Boston on Oct 29, 2008 2:22 PM

    Hi Steven,
    The definition of persistence is here:
    http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/persist/model/Entity.html
    And includes this: "All non-transient instance fields of an entity class, as well as its superclasses and subclasses, are persistent. static and transient fields are not persistent."
    So you can use the Java transient keyword. If that isn't practical because you're using transient in a different way for Java serialization, see the JE @NotPersistent annotation.
    In general a parent-child relationship between entities is implemented almost as you've described, but with a parentId secondary key in the Child to index all children by their parent. This enables a fast lookup of children by their parent ID.
    I suggest looking at this javadoc:
    http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/persist/SecondaryIndex.html
    as it describes all types of entity relationships and the trade-offs involved. The department-employee relationship in these examples is a parent-child relationship.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • EJB-3 Shouldn't persiting/removing child objects be reflected in OneToMany?

    I'm a bit puzzled by behaviour I'm finding. (Toplink)
    I modify the list of children under an entity, removing some child entities and inserting others.
    The odd thing is that I seem to have to do two things each time. To add a child I set the child's parent pointer to the existing entity and persist is, but I also have to add the child to the OneToMany collection.
    Conversely, on delete, I have to remove the child both from the collection and the entityManager.
    Shouldn't the changes in the collection be automatic? Or, conversely, given that the parent link it mandatory, shouldn't removing the child from the collection suffice to delete it?
    ps. to clarify:
    If I don't change the OneToMany collection object the child changes aren't reflected even though I find the parent entity again.
    Message was edited by:
    malcolmmc

    I'm afarid not - a generic feature that will allow to
    delete orphan children didn't make it into the final
    spec.
    regards,
    -marinaDo you happen to have any links to public discussions about this feature with regard to the development of the spec? This is a very nice feature in Hibernate and it's absence in EJB 3.0 is rather disappointing.
    Thanks.

  • How to validate presence of child rows

    Hello,
    I'm running Studio Edition Version 11.1.2.3.0
    I have a parent entity that has 3 child entities. I need to create a validation rule to check that at least one of the 3 child entities has a row in it.
    Can people please advise?
    Many thanks.
    Edited by: user576183 on Oct 30, 2012 11:36 AM

    Hi,
    You can create a script validation rule using groovy expression.
    Check out this pdf on how to use the groovy to get values from other entities. http://www.oracle.com/technetwork/developer-tools/jdev/introduction-to-groovy-128837.pdf
    -Arun

  • Displaying different child data within another grouped child.

    Hi,
    I'm trying to configure a Siebel BI report and have come up against an issue I'm hoping someone can help with. I have a parent entity (not sure what this would be called in BI terms, en element?) which has several child entities.
    The parent entity is a repeating group and has a child entity within it which is also grouped. Within that child grouping I would like to list (and ultimately filter) another child entity but I cannot it to display any records. If I remove it from the child grouping the records are displayed fine.
    Sorry if the above is not clear!

    Do paste your XML here and let us know the requirement.

  • Creating a PDF with Bookmarks using Excel

    Hello All,
    I've been attempting to find an means of producing a PDF document from an Excel workbook with the resulting PDF displaying a bookmark tree which included parent/child relationships. I am running Excel 2010 and Adobe Acrobat X Pro.
    At present, I am saving the workbook as a PDF document and then opening the PDF in Adobe in order to create the bookmarks. The bookmarks are created using the "New Bookmarks From Structure" option in Adobe and then choosing "Worksheet" as the structure element. The bookmarks are displayed in a tree but there are no parent/child relationships within the tree. Each member of the tree simply listed as the worksheet names were.
    My goal is to display each rollup entity and its various children. The parent and the child entities are all individual worksheets within the source workbook. I have not been able to figure out how to structure my Excel source to make this happen in Adobe. Can anyone offer any insight? Thanks in advance for your help!
    Jared

    I've been looking for the same answer.
    After I've enabled Acrobat on my Excel, and click preferences, then the whole programs crashes.
    I found a couple of updates here http://www.adobe.com/support/downloads/detail.jsp?ftpID=2611 which I am going to try out now... ifilter
    Also check out this http://support.microsoft.com/kb/2800094.

  • Translating at Prior Year and Plan Rates

    I have a rule with a few accounts that are populated by values out of the P&L rollup. Here is an example: in my Calculate Sub, I have:
    If pov_TransCur = False then          
    HS.Exp "A#NetSales_PYRates=A#NetSales.I#[ICP Top]"
    End If
    Where pov_TransCur = HS.Value.IsTransCur
    And in my Sub Translate, I have:
    PY_Avg_Rate = HS.GetRate("A#AverageRate.Y#Prior")
    HS.Clear"A#NetSales_PYRates"
    HS.TransPeriodic "A#NetSales_PYRates","",PY_Avg_Rate,""
    The Results in my Child Entity are:
    Entity Currency USD
    Net Sales 7.194 Mill. 7.203 Mill
    NetSales_PYRates 7.194 Mill. 6.144 Mill.
    Which is Great, that is what I want.
    However at the Parent Level I get:
    Entity Currency USD
    Net Sales 7.203 Mill. 7.203 Mill
    NetSales_PYRates 7.203 Mill. 7.203 Mill.
    I need to see the 6.144 Million in USD in the NetSales_PYRates accounts , the other child entities don't have any data.
    Any ideas in how to correct this issue?
    Thanks in advance

    Wow, it took me a while to set this reply, I was stuck on Rich Text format, and I did not have a box for the body of the message. Anyway, thanks; however, I keep getting the same results. My rules are quite simple, in the calculate sub routine I only have the population of Beginning Balances for Rollforward accounts, plus these Prior Year and Plan Rate accounts. While there is more than just the net sales account, there is nothing else in it. Here is What I have
    If HS.Entity.IsBase("", "") = True And HS.Value.Member() = "<Entity Currency>" Then
              HS.Exp "A#NetSales_PYRates=A#NetSales.I#[ICP Top]"
              HS.Exp "A#Material_PYRates=A#CosMat+A#DirMatVar"
              HS.Exp "A#DirLabor_PYRates=A#CosLabor+A#DirLaborVar"
              HS.Exp "A#FactoryOH_PYRates=A#CosOH+A#Manufacturing"
              HS.Exp "A#OthCostOps_PYRates=A#OtherCostOfOps"
              HS.Exp "A#InvProv_PYRates=A#ShrinkProv+A#ObsolProv+A#LIFOFIFOProv"
              HS.Exp "A#ShipHand_PYRates=A#ShipHand"
              HS.Exp "A#Engin_PYRates=A#Engineering"
              HS.Exp "A#Sell_PYRates=A#Selling"
              HS.Exp "A#Admin_PYRates=A#Admin"
              HS.Exp "A#GLSPPE_PYRates=A#GainLossSalePPE"
              HS.Exp "A#MiscIncExp_PYRates=A#MiscIncExp"
              HS.Exp "A#ONon_PYRates=A#NonOpIncExp-A#GainLossSalePPE-A#MiscIncExp"
              HS.Exp "A#NetSales_PLRates=A#NetSales.I#[ICP Top]"
              HS.Exp "A#Material_PLRates=A#CosMat+A#DirMatVar"
              HS.Exp "A#DirLabor_PLRates=A#CosLabor+A#DirLaborVar"
              HS.Exp "A#FactoryOH_PLRates=A#CosOH+A#Manufacturing"
              HS.Exp "A#OthCostOps_PLRates=A#OtherCostOfOps"
              HS.Exp "A#InvProv_PLRates=A#ShrinkProv+A#ObsolProv+A#LIFOFIFOProv"
              HS.Exp "A#ShipHand_PLRates=A#ShipHand"
              HS.Exp "A#Engin_PLRates=A#Engineering"
              HS.Exp "A#Sell_PLRates=A#Selling"
              HS.Exp "A#Admin_PLRates=A#Admin"
              HS.Exp "A#GLSPPE_PLRates=A#GainLossSalePPE"
              HS.Exp "A#MiscIncExp_PLRates=A#MiscIncExp"
              HS.Exp "A#ONon_PLRates=A#NonOpIncExp-A#GainLossSalePPE-A#MiscIncExp"
    End If
    End Sub
    and for the Translate Sub I have:
    Sub Translate ()
    Plan_Avg_Rate = HS.GetRate("A#AverageRate.S#Plan")
    PY_Avg_Rate = HS.GetRate("A#AverageRate.Y#Prior")
    'HS.Clear"A#NetSales_PYRates"
    HS.TransPeriodic "A#NetSales_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Material_PYRates"
    HS.TransPeriodic"A#Material_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#DirLabor_PYRates"
    HS.TransPeriodic"A#DirLabor_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#FactoryOH_PYRates"
    HS.TransPeriodic"A#FactoryOH_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#OthCostOps_PYRates"
    HS.TransPeriodic"A#OthCostOps_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#InvProv_PYRates"
    HS.TransPeriodic"A#InvProv_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#ShipHand_PYRates"
    HS.TransPeriodic"A#ShipHand_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Engin_PYRates"
    HS.TransPeriodic"A#Engin_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Sell_PYRates"
    HS.TransPeriodic"A#Sell_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#Admin_PYRates"
    HS.TransPeriodic"A#Admin_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#GLSPPE_PYRates"
    HS.TransPeriodic"A#GLSPPE_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#MiscIncExp_PYRates"
    HS.TransPeriodic"A#MiscIncExp_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#ONon_PYRates"
    HS.TransPeriodic"A#ONon_PYRates","",PY_Avg_Rate,""
    'HS.Clear"A#NetSales_PLRates"
    HS.TransPeriodic"A#NetSales_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Material_PLRates"
    HS.TransPeriodic"A#Material_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#DirLabor_PLRates"
    HS.TransPeriodic"A#DirLabor_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#FactoryOH_PLRates"
    HS.TransPeriodic"A#FactoryOH_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#OthCostOps_PLRates"
    HS.TransPeriodic"A#OthCostOps_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#InvProv_PLRates"
    HS.TransPeriodic"A#InvProv_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#ShipHand_PLRates"
    HS.TransPeriodic"A#ShipHand_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Engin_PLRates"
    HS.TransPeriodic"A#Engin_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Sell_PLRates"
    HS.TransPeriodic"A#Sell_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#Admin_PLRates"
    HS.TransPeriodic"A#Admin_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#GLSPPE_PLRates"
    HS.TransPeriodic"A#GLSPPE_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#MiscIncExp_PLRates"
    HS.TransPeriodic"A#MiscIncExp_PLRates","",Plan_Avg_Rate,""
    'HS.Clear"A#ONon_PLRates"
    HS.TransPeriodic"A#ONon_PLRates","",Plan_Avg_Rate,""
    End Sub
    There is nothing in here that can cause the results I have. I don't understand why yours will work and my won't, but I will keep looking for a solution.

  • How to use one application with multiple schema without copying application?

    Hi,
    Previously we are using oracle forms and by that we can manage by using a set of folders containing fmx and use different schema/database for different customers. so the source code comes from one individual file but used for different database users.
    is it possible to do this without copying application in apex?
    reason is because if applications are copied for each customer, and in a situation where a page has a bug, the developer must correct multiple pages across all the application. This would not be appropriate to manage.
    could this be done in apex? or is there any other approach?

    Hi,
    An application is tied to its parsing schema, so it is not possible to have one code base which you can then point to different schemas. I have seen some threads relating to dynamically setting the parsing schema, but I don't think it has worked to well, and would not be a supported configuration by Oracle.
    The normal way to do this is to have one schema and for each entity where it is logical you will have an extra key which is the customer id. I mention where it is logical, because not every entity needs its own data defined by customer. Some data will be common across all customers, such as lookup data and some entities will comprise child entities by which the data separation will be implied by the parent. You can then use Oracle's Virtual Private Database feature to implement a seperate view of the data through the application, based most likely on the customer who is logged on.
    Hope this helps.
    Regards
    Andre

  • Autocommit and Cursor commit Behaviour

    Hi,
    I need help to set and get the Autocommit and Cursor commit behavior attributes
    in Oracle.
    AUTOCOMMIT:
    For DDL Statement, this attribute is set while executing the OCIStmtExecute() api
    as below:-
    r = OCIStmtExecute(d->svc, d->sql, d->err, 1,0,
    (CONST OCISnapshot *) NULL,
    (OCISnapshot *) NULL,
    d->transaction ? OCI_DEFAULT :                                         OCI_COMMIT_ON_SUCCESS);
    For DML Statement, from the OCI documentation the database parameter attributes
    support OCI_ATTR_AUTOCOMMIT_DDL with the values OCI_AC_DDL and OCI_NO_AC_DDL.
    Since this is a parameter attribute, I couldn't set using OCIAttrSet() API.
    I need help in implementing AUTOCOMMIT for both DDL / DML statements.
    CURSOR COMMIT BEHAVIOUR:
    Similarly, I have observed that Oracle support cursor commit behavior attributes
    using OCI_ATTR_CURSOR_COMMIT_BEHAVIOR and the attribute values are OCI_CURSOR_OPEN and OCI_CURSOR_CLOSED.
    I have tried setting this attribute as below:-
    ub1 nCommitType = OCI_CURSOR_OPEN;
    oraRC = OCIAttrSet((dvoid *)d->svc, (ub4)OCI_HTYPE_SVCCTX,
         (dvoid *)&nCommitType,
         (ub4)sizeof(nCommitType),
         OCI_ATTR_CURSOR_COMMIT_BEHAVIOR, d->err);
    This always fails with the error ORA-24315: illegal attribute type.
    I need help in setting this attribute using OCI.
    Another approach to set Autocommit / Close Cursor attributes:-
    Oracle support SET commands for autocommit and closecursor, I have prepared
    and executed these set commands using OCIStmtPrepare and OCIStmtExecute api. The OCIStmtExecute() API fails to execute the below command texts.
    SET AUTOCOMMIT ON/OFF
    SET CLOSECURSOR ON/OFF
    Is it the right method of setting these attributes?
    Thanks,
    Sankar.P.

    Hi.
    You are trying to commit "child" information before your Parent information is commited.
    Can you describe how you dragged & droped your views?.
    Dragged relationship views or single views?.
    Can you put output log with jbo with FINEST level?.
    To find a solution try next solutions:
    1) Disable "strong" association between your parent-child entities. To achieve it follow next steps:
    - Go to your "Assoc" that describes your foreign key.
    - In "Realtionship" tab, "Behaviour" disable "Composition Association".
    Image: http://1.bp.blogspot.com/-Em8NZvjOUzo/T_NQbJTcLjI/AAAAAAAAAm4/hPsDwtEhJQ4/s1600/4.png
    2) Drag and Drop correct views as a Master-Detail (cascading views in your Data Control).
    http://2.bp.blogspot.com/-1By5vNNGMFQ/T_NQdYzexKI/AAAAAAAAAnE/DGn7Gr0RSDw/s1600/6.png (in spanish).
    In the image, drag & drop PortalwebView2 is the correct way for Master-Details tables. Probably you dragged PortalwebView1 that have dependecy to master table.
    Steps that you have followed:
    - Drag & Drop dependen View Object as a Master-Detail with two tables.
    - Add Create operations from these views to create Rows.
    - Add Commit general operation from Data Control.
    Try to drag & drop Master-Detail views correctly before disable association.
    PD: To try your model faster run Model project instead of your application.
    Regards.
    Edited by: Daniel Merchán on 30-jul-2012 12:05

  • Losing SFSB after exception thrown - how can I avoid this?

    I am using Sun Java System Application Server 9.0
    I am using a State Full Session Bean (SFSB) via a Remote Business Interface. In this SFSB I do a �try/catch� to perform an update on an entity with child entities. My catches look for an OptimisticLockException and any other exception. When Oracle throws an OptimisticLockException the catch does not recognize this and catches the any other exception. In both case another exception is thrown, see below for the code. But when this happens the SFSB is destroyed and no longer available causing the client to fail when it tries to use one of the SFSB�s business interface methods.
    Can anyone please tell me how I avoid losing the SFSB or how to reload it automatically and quickly?
    A plus would be can you tell me why the Oracle exception is not caught by the correct catch? The full exception is oracle.toplink.essentials.exceptions.OptimisticLockException and I have no idea whether is a subclass of another exception type.
    } catch (OptimisticLockException ole) {
         Debug.debugPrintln("OrderControllerBean.updateOrder() - optimistic lock exception: " + ole.getMessage());
         throw new EntityAlreadyUpdatedDeleted("Order number: "
                        + oldOrderHeader.getOrderNumber()
                        + "cannot be updated because it has changed or been deleted since you last looked at it");
    } catch (Exception ex) {
         Debug.debugPrintln("OrderControllerBean.updateOrder() - other exception persist failed orderNumber: "
                        + oldOrderHeader.getOrderNumber()
                        + " exception: " + ex.getMessage());
         throw new EJBException(ex);
    Many thanx����.
    Edited by: jdraven on Mar 27, 2008 11:06 PM

    No worries!
    Thank you for sharing the solution to your problem with the community!
    Kameralina
    Ask NI (ni.com/ask)
    Search The KnowledgeBase
    NI Developer Zone
    Measure It. Fix It. ni.com/greenengineering/
    NI Vision ni.com/vision/

  • Multiple TableExtension/Tableview in a single view...

    Hi,
           I'm facing a problem creating multiple TableExtension elements in a single view. The relationship between the business objects is like this.
    Header--->Order(s)--
    >Item(s)
    As you can see, each header can have multiple orders and each order can have multiple items.
    The number of orders is known only during runtime..
                  In the last page of my bsp application, created using component workbench, I should allow the user to view/edit item list of all orders found under a particular header. That is to say, the view should contain multiple EditList tables for editing items.
               But, I have only one context node for Item and I'm able to show only one table at a time. One solution that works, but not usable in my case is to use navigation buttons to change the Order focus entity. When the focus changes, the Item table shows relevant child entities of that particular order. But, only single table in that view and so, useless.
             Classic BSP application is a big NO. The table should allow customizing viewable columns and have toolbar buttons. The Chtmlb:tableExtension is very suitable and convenient while working with BOL objects, but how to generate multiple tables that are independent of each other?
    Please provide some pointers...
    Thanks,
    Arun Prakash
    Edited by: Arun Prakash Karuppanan on Jun 21, 2008 11:49 PM

    Hi,
          Got it. I used field symbol for specifying the table and looped the tableview tag the number of times I wanted. Each time, the tableview and configtable IDs are also generated uniquely, as I would need them later.  Each time, the field symbol is assigned by a method implemented in the controller. This controller method, creates a internal table dynamically and populates it with relevant data fetched from my BOL collection. Ofcourse, I need to implement a separate iterator class for the ConfigTable and use appropriate events to make changes to my BOL collection. It's a little bit complicated, but not impossible.
    Regards,
    Arun Prakash.

  • Error While Promoting the Numbers to Next Level

    We have hierarchy defined for entities in Hyperion and are using Phased submissions under Process control . We have all the immediate child entities at 'SUBMITTED' phase but when we are promoting the Parent entity to 'SUBMITTED' phase we are getting following error
    "Cannot promote a process unit to a level higher than any of its direct dependents."
    I know that a parent can be promoted only to a level that is less than or equal to the lowest level of its immediate children.
    However we have few of the Entities which are at "NO ACCESS" stage or "Not Started" stage so if this affecting the Parent from promoting to next stage. But these entities are not started only and the Parent Entity has already been promoted from Not Started to "First Pass" stage that point of time no error crept in.
    Please let me know the probable cause of the error.
    Regards
    Rahul
    Edited by: rj_700 on Jun 9, 2012 11:35 AM

    Hi Rahul ,
    I am a learner.
    As per my Knowledge.
    When we have issues about Phased Submission- Process Control there are certain things which are worth making note of.
    1. Validation Accounts ,which might be preventing you from Promoting the Phase to the next level.
    2.And Before promoting the submission group to the Next Phase, make sure all your child members have passed all the review levels to be promoted to next level
    please check with experts if my reply is inappropriate.
    Thanks,
    David

Maybe you are looking for

  • Smartforms for SAP process orders.

    Hi, We want  to use smart forms instead of SAP scripts for process order for various reasons. COnfig does not allow using smart forms. So we called the smart form in the print program of the sap script. But this process is not using the configuration

  • Complete hard drive failure.  Advice?

    I was having hard drive issues last month that I thought were resolved, but now I'm pretty sure my internal hard drive in my iBook is totally dead. My internal hard drive started making really bad grinding noises during start up, so I booted my iBook

  • HTML generator script (in Ruby) - what do yout think about it?

    Hi folks, since I have a lot of time recently, I decided to create a little (non-dynamic) website with HTML and CSS. So, when I began writing I noticed that there is a lot of "typing overhead" what really went on my nerves. Be it as this may... I was

  • Premiere CS5 & GTX470, 2.5Ghz quad performance ?

    Hi All, Thanks for the great contributions in this forum. I am having trouble with a multicam project with 5 video layers of HD (2 layers 1440 x 1080 HDV and 3 layers 1920 x 1080 from Canon DSLR's) at 29.97. The playback performance is stuttering and

  • I really need help !!!!!!!!! please :D

    hey i just bought ana ipad mini i really love it but are all the movie on the itunes store are not free cause i dont have a credit card