Cardinality for Generalization Hierarchy

Is it possible to specify cardinality like disjoint or completeness with generalization hierarchy? I am using Data Modeler 3.1.4 Also, from a conceptual modeling standpoint can on suppress the foreign key display in the entity type structure?
Thanks.

Philip Stoyanov wrote:
It seems for 1:N relationship by default it shows the foreign key attribute in the child entity typeYou need to switch to DM 3.3 - relationship can be set to use one of natural keys or surrogate key. No foreign key attributes are created in latter case.
PhilipYes, it works from the diagramming standpoint. Thanks.
Edited by: user4197738 on Nov 14, 2012 11:22 AM

Similar Messages

  • Standard SAP report for vendor hierarchy

    Hi Gurus,
    Does SAP have standard report for vendor hierarchy?  We want to use vendor hierarchy to capture all the expense to a list of vendors and wondering if we can utilize some standard report to see the total supply or we should develop custom reports to handle them?
    Thanks a lot

    Hi,
    Check this link
    http://help.sap.com/saphelp_45b/helpdata/en/12/084635470311d1894a0000e8323352/frameset.htm
    Thanks
    suresh

  • Error in report for activated hierarchy

    Hello Experts,
                          I have following problem in my report:
    I have created 1 hierarchy for 0cust_sales infoobject other than Standard hierarchy.to get this hierarchy in place have done following steps:
    created authorization object with 0cust_Sales + Authorization for hierarchy infoobject 0TCTAUTHH and actiavted it in required data target.
    created authorization value for above hierarchy and maintained in the user role.
    then created 1 report where hierarchy for 0cust_Sales is active and 1 authorization variable has been created for that hierarchy and restricted 0cust_Sales.
    in my data target already 1authorization object is active which is based on 0sales_off.
    in my report where I have assigned 0cust_Sales hierarchy, 0sales_off hierarchy is also maintained.
    Problem comes when am executing the report where 0cust_sales hierarchy is not active with message - NO MASTER MAINTAINED FOR 0CUST_SALES HIERARCHY.
    My problem is, I want 0cust_sales hierarchy only in 1 report but as auth object of 0cust_Sales is active on data target, error comes whenever report NOT CONTAINING 0CUST_SALES hierarchy is executed.
    How to deal with the situation where hierarchy required only for 1 report..please guide me

    Thanks Ingo. We are going to open the case.
    Do we need to pull consistent detail objects of all the13 levels in the hierarchy to the WebI query ?
    For Example, I have pulled all 13 level dimension objects (Blue), Org unit Key (Detail Green Object) for only L03,L04 and Org Unit Medium Name  (Detail Green Object) for L08,L09.
    Do I need to pull all 13 dimension (Blue Object), all 13 Org Unit Key and all 13 Org Unit Medium Name? I mean do we need to select consistent detail objects consistent across the levels?
    Thanks
    Jai

  • Value  for variable *** hierarchy Version is invalid

    hi ALL
    for one Of the user, when he tries to run the report he is freequently facing this situation. he is getting the error like : "Value  for variable *** hierarchy Version is invalid" . but the same report is working for other users.
    The starange part is . those variables are not mandatory selections, they are userentry optional values.
    we tried with authorization team also . that is not the probelm.
    how can i solve this...
    any ideas?
    Praveen.
    Message was edited

    Praveen,
    Please check if there is any "Personalization of variable" setting for that variable.
    Raju

  • Infopackage for updating hierarchy doesn't work in process chain

    All:
    I have infopackages for Cost Center and they are part of a process chain. While cost center master data get populated after the process chain runs, cost center hierarchy does not get populated. Infopackage for cost center hierarchy is also part of the process chain.
    However, when I manually run the same infopackage (for CC hierarchy) cost center hierarchy in BW (BW 3.5) gets populated.
    Could anybody suggest what is wrong here?
    Thanks,
    Pranab

    Hi,
    Did you include "Attribute Change" process in your process chain which will activate the saved hierarchy? Otherwise the new loading hierarchy will be kept as "M" version instead of "A" version.
    Joe

  • No authorisation for displaying hierarchy

    Hello all,
    some user mentioned that there can not activate hierarchy for an InfoObject within an web application. When I do this, the hierarchy is displayed correct. Also within the simulation for those users in TA RSSMQ the hierarchy can be displayed.
    However: The user gets the message: No authorisation for reporting hierarchy.
    Where can I allow the user to see the hierarchy?
    The BW release is 3.5. Any ideas would be great.
    best Regards,
    Stefan from Munich/Germany

    Hi Stefanos.
    Please check the authorizations for the user. Make sure that he has the S_RS_HIER object specified correct.
    Hope it helps.
    BR
    Stefan

  • How correct rule for Pcon calc for different hierarchy withsame Ent andICP?

    Hi! My question is below, after problem and describing of current situation
    The problem:
    Calculation of percentage of consolidation is runnig only for fixed hierarchy by consolidation rule
    The situation:
    I've got three hierarchys for my Entity's in system: one is base and two others are alternative.
    #root ConsBase
    ConsBase BaseChild
    BaseChild BaseChild1
    BaseChild BaseChild2
    #root ConsAlt1
    ConsAlt1 BaseChild1
    ConsAlt1 BaseChild2
    #root ConsAlt2
    ConsAlt2 BaseChild1
    ConsAlt2 BaseChild2
    And I have different value for Pcon for each member of hierarchys:
    BaseChild.BaseChild1, pcon = 30%
    BaseChild.BaseChild2, pcon = 30%
    ConsAlt1.BaseChild1, pcon = 50%
    ConsAlt1.BaseChild2, pcon = 50%
    ConsAlt2.BaseChild1, pcon = 70%
    ConsAlt2.BaseChild2, pcon = 70%
    Because of the different pcon for same entity members I've wrote a rule for correct consolidation proccess:
    Pieces of elimination rule:
    'After checking possibility for elimination starts percentage of consolidation rule for Entitys and ICPs:
    If CanEliminate Then
    dPCon = HS.Node.PCon("")
    'ICP parent define (restriction: consolidate only hierarchy ConsAlt1)
    call GetParent(strICPParent, strICP)
    'calculate Pcon for ICP
    dPConICP = HS.Node.PCon("E#"&strICPParent&"."&strICP)
    'allow for portion of all parents
    call GetParent(strICPSecondParent, strICPParent)
    dPConICP = dPConICP * HS.Node.PCon("E#"&strICPSecondParent&"."&strICPParent)
    'Parent rule define for entitys and icps
    Sub GetParent(strParent, strEntity)
    +For each EntParent in HS.Entity.List("ConsAlt1",[Parents])+ '!!! fixed hierarchy ConsAlt1 !!!!
    If (HS.PARENT.ISCHILD(EntParent,strEntity) = TRUE) Then
    strParent = EntParent
    End If
    Next
    End Sub
    I want have a process of consolidation with correct calculation of percentage of consolidation for Entity, ICP and not in one fixed hierarchy (ConsAlt1) - but in ConsBase, ConsAlt2 without making corrections in rules to fix Entity. How can I do it in my situation?
    Edited by: 806947 on 02.11.2010 3:58

    Hi DST
    This is a great effort and gesture. thank you on behalf of all the newbies.
    PJ

  • Transaction VB02 - Search help for product hierarchy

    Hi Experts,
    I have a requirement to add a search help for product hierarchy in transaction VB02. Has anybody done this before? I am not able to assign the program & screen to a Z package.
    Thanks,
    Vitz.

    there are already search helps attached to it.. which fields exactly are you talking about?
    try to find BADI for that screen

  • Workflow for product hierarchy

    I have to create a workflow for product hierarchy.
    When  we Create/Modified/Delete one product hierarchy using Tcode  V/76 (entry in the table T179) I have to display that product hierarchy.  I am not able to find any object type for that. Which object type I have to use.
    I am new in this workflow. Please help me

    thanks

  • Hierarchy level for Site hierarchy idoen't load in BI

    Hi gurus,
    I have created a new hierarchy level for Site hierarchy in transaction CL01 in R/3. But this level is not load in BI.
    Site hierarchy and other levels load right, but no the new one.
    Do you now anything to resolve my issue?
    Any feedback will be really appreciated.
    Thanks

    Hi,
    I think,you have to follow the old concept only.
    Gana.

  • "Drilldown characteristic" not permitted for display hierarchy

    Hi Experts,
    I want to display the hierarchy in my BEx Analyzer for which i tried to activate the hierarchy for the same and got the below error.
    "Default values "Drilldown characteristic" not permitted for display hierarchy"
    Also I have used a standard variable for this infoobject and it is used for user input in the selection screen of the report.
    Eventhough we proceed further with this message, in the Report display, it is not showing the hierarchy in the display.
    Please respond ASAP.
    Rgds
    Kumar

    Hi,
        I don't know why you are getting this error. But we can create hierarchy either by using herarchy name or else by creating hierarchy variable......In characteristics for which you are creating hierarchy, in display tab of properties give DISPLAY AS KEY, SORT CHARACTERISTICS -- AS IN THE QUERY  and RESULT ROWS --- ALWAYS SUPPRESS....
    In HIERARCHY TAB --- Give Hierarchy name select use hierarchy setting check boxand select always show radio buttons......
    Do in this way and it may work......
    Regards,
    Kalyani.

  • BAPI for Product Hierarchy : COMM_HIERARCHY

    Can some body help me in finding BAPI for Product hierarchy upload.
    Transaction COMM_HIERARCHY.
    Many thanks in advance,
    Best Regards, Jilan

    HI ....did u got the BAPI for Product category??

  • What's use for Customer Hierarchy

    Dear Guru
    What's use for Customer Hierarchy? give me a step to config?
    regards
    Mohammed Renu.I

    Hi Mohammed Renu,
    CUSTOMER HIERARCHY:
    Customer hierarchies are available in Sales and Distribution, so that you can create flexible hierarchies to reflect the structure of customer organizations. If your customer base includes multi-level buying groups, cooperatives, or chains of retail outlets, for example, you can create hierarchies to reflect the structure of these groups. Use customer hierarchies during sales order processing and billing for determining pricing and running statistics.
     A customer hierarchy consists of nodes.
     To create a customer hierarchy:
    1. Create master records for each node.
    2. Assign the nodes to each other.
    3. Assign the customer master records to the relevant nodes.
     Hierarchy nodes are only valid for a certain period of time. They may also be moved. If a node is moved, the system automatically reassigns all related nodes and customer master records.
    With customer hierarchies, you can assign price or rebate agreements to a higher level node. The agreements are then valid for customer’s at all subordinate levels to this node. You can create pricing condition records for each node indicated as relevant for pricing. If one or more nodes in the hierarchy path of a sales order contain pricing information, the system takes them into account automatically during pricing.
    'How to check'
    All the customizing is in SD/Master Data/Business Partner/Customers/Customers hierarchy
    All the customizing is in SD/Master Data/Business Partner/Customers/Customers hierarchy
    1) Define hierarchy type: just put and ID and a name to the new hierarchy.
    2) Set partner determination: if you want to user the hierarchy in price determination, then, in the orders, at the header level, you have to have a Partner Procedure with a partner function for each level. In the partner procedure, in each partner function you must indicate the source partner function. With this information, in the order, you obtain the business partner for each partner function.
    3) Assign account groups: you indicate which accounts groups are allowed for being part or your hierarchy.
    4) Assign sales areas: simple you indicate which sales areas are allowed in your hierarchy. (Here you can customize common sales areas, just for not having to build de hierarchy in all the different sales areas).
    5) Assigning hierarchy type for pricing: you indicate which classes of documents uses hierarchy in pricing determination.
    It is possible to maintain so called customer hierarchies. This might be useful when for example you create a condition discount for a customer that is part of such a hierarchy structure. All subnodes in the hierarchy below that customer, will thus receive the same discount.
    Customer hierarchy setup, firstly decide the hierarchy type to be used.
    The standard is type A.
    You can also assign a partner function to the customer so that the higher level customer in the hierarchy is copied into a sales order as a partner function - but you don't need that right?
    Next assign your customer account group to the hierarchy type. And enter the combinations that will be allowed for creating the hierarchy.
    You want to assign a ship-to to a payer. So enter the ship to account group and enter the payer account group as the higher level.
    You must also make an entry for permitted sales area assignments. So if you want to a hierarchy for customers in the same sales area then enter the sales area and enter the same one as the higher level sales area.
    All these settings can be found in the IMG. Under SD - master data - business partners - customers - customer hierarchy
    You use for example customer hierarchy when you have an company like Unilever and you agree both on a discount. Unilever does have different locations / businesses and you have to maintain the discount for all customers. If you use a customer hierarchy you can maintain the discount for the partner in the top of the hierarchy and in this way it will be valid for all customers in the hierarchy.
    Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • Subtotals for a hierarchy

    Hi fellow SDNers:
      I wanted to find out if there is a way to display the "subtotals" for a hierarchy (consisting of 5 levels) wherein the requirement is to display the sales subtotals for the hierarchy levels 3, 4, 5 but nor for levels 1 & 2
    i.e. when the query is displaying the sales information for the product hierarchy levels 1 and 2 we do not want to see the subtotals but when further drilled down to level 3 onwards, we should be able to see the subtotals
    thanks in advance for your help !

    Hi PRE
          when  ever you dont want to some levels in your hierarchy... that you can do in query designer itself..  open your analyser.. in that  select ur  info object  and right click and   and goto  properties.. select ur hierarchy  name..
            and right click  and  select restrict    now you will get one pop up window..(variable  window) in that  you can  select  your required levels only..
        now execute it.. and check it... there you can get only selected levels only...for ur requirement.. now you can take results for each level ..
    if it helpfull  to u.. plz ASSIGN POINTS..
    Thanks
    @jay

  • Unable to see the data for the hierarchy in rsa3

    Hi Gurus,
    i am trying to check the data for the standard hierarchy in rsa3,but it is showing an  error message saying that error 6 in functional module rss_program_generate.Please help me out.
    thanks
    bhaskar

    Check if this helps seemed relevant
    Error 6 in function module RSS_PROGRAM_GENERATE
    Error 6 in function module RSS_PROGRAM_GENERATE
    error Error 6 in function module RSS_PROGRAM_GENERATE

Maybe you are looking for

  • Float cannot be dereferenced

    Hi, I get the following compilation error message: "float cannot be dereferenced" and i don't know what it meens. My code was compiling until i add the intValue methode in the last line. Here is the part of code : Dimension d,i; d = getSize(); // i g

  • Backup is locked with a password protect and i didnt set one...help

    HELP MY BACKUP IS PASSWORD PROTECTED AND I DIDNT SET ONE AND NOW I CANT RESTORE MY MUSIC/PICS/ETC.....

  • VPRS has condition value 0 in Returns Order item

    Hi Experts, Our customer created a returns order refer to F2 invoice, but in returns order its VPRS has condition value 0. It caused accouting document error in Credit for Returns. There was no cost related accouting posted. Our Credit for Returns is

  • Undo selection JComboBox

    Hi, How can i add an undo selection functionality in a jComboBox? I know how it works in textcomponents and buttons but i have a problem with jComboBoxs. Thnx

  • Proper Use of FM EQUIPMENT_SAVE

    Hi All, I need to modify the warranty dates of a material with specific serial number. I came across this FM EQUIPMENT_SAVE but don't know how to use this. I only have material and serial number as parameter. Material and serial number already create