Data is not populated in Dimension as per Hierarchy

Hi All,
I have a table DIM_ITEM with following structure,
ITEM_KEY      NUMBER(10,0)
ITEM_NAME     VARCHAR2(50 BYTE)
ITEM_SHORT_NAME     VARCHAR2(25 BYTE)
ITEM_CATEGORY     VARCHAR2(50 BYTE)
ITEM_TYPE      VARCHAR2(50 BYTE)
ITEM_BRAND     VARCHAR2(50 BYTE)Below is the data populated
insert into dim_item values (1, 'Samsung 42 LED Television', 'Sam 42 LED', 'Electronic', 'Television', 'Samsung');
insert into dim_item values (2, 'Samsung 530L Double Door Refrigerator', 'Sam 530L DD Ref', 'Electronic', 'Refrigerator', 'Samsung');
insert into dim_item values (3, 'Samsung 32 LED Television', 'Sam 32 LED', 'Electronic', 'Television', 'Samsung');
insert into dim_item values (4, 'Samsung 57 LED Television', 'Sam 57 LED', 'Electronic', 'Television', 'Samsung');
insert into dim_item values (5, 'Samsung 75 LED Television', 'Sam 75 LED', 'Electronic', 'Television', 'Samsung');
insert into dim_item values (6, 'Sony 32 LCD Television', 'Sam 32 LCD', 'Electronic', 'Television', 'Sony');
insert into dim_item values (7, 'Sony 42 LCD Television', 'Sam 42 LCD', 'Electronic', 'Television', 'Sony');
insert into dim_item values (8, 'Samsung 175L Single Door Refrigerator', 'Sam 175L SD Ref', 'Electronic', 'Refrigerator', 'Samsung');
insert into dim_item values (9, 'Samsung 230L Double Door Refrigerator', 'Sam 230L DD Ref', 'Electronic', 'Refrigerator', 'Samsung');
insert into dim_item values (10, 'Samsung 230L Single Door Refrigerator', 'Sam 230L SD Ref', 'Electronic', 'Refrigerator', 'Samsung');
insert into dim_item values (11, 'Whirlpool 530L Double Door Refrigerator', 'WP 530L DD Ref', 'Electronic', 'Refrigerator', 'Whirlpool');
insert into dim_item values (12, 'Whirlpool 1110L Double Door Refrigerator', 'WP 1110L DD Ref', 'Electronic', 'Refrigerator', 'Whirlpool');
insert into dim_item values (13, 'Royal 3+2 Sofa Set', 'Ryl 3+2 sofa', 'Furniture', 'Sofa', 'Royal');
insert into dim_item values (14, 'Royal 4+4 Sofa Set', 'Ryl 4+4 sofa', 'Furniture', 'Sofa', 'Royal');
insert into dim_item values (15, 'TMT 3+2 Sofa Set', 'tmt 3+2 sofa', 'Furniture', 'Sofa', 'TMT');
insert into dim_item values (16, 'TMT 4+4 Sofa Set', 'tmt 4+4 sofa', 'Furniture', 'Sofa', 'TMT');
insert into dim_item values (17, 'TMT 4 Person Dinning Table', 'tmt 4P DT', 'Furniture', 'Dinning', 'TMT');
insert into dim_item values (18, 'TMT 10 Person Dinning Table', 'tmt 10P DT', 'Furniture', 'Dinning', 'TMT');As per this data
Samsung has TV and Refrigerator
Sony has only TV
Whirlpool has only Refrigerator
I have created the Hierarchy in AWM as,
1. All Items
2. Item Category
3. Item Brand
4. Item Type
5. Item Name
When I maintain my Dimension and view the data, it displays as
  - All Items
    - Electronic
      - Samsung
      - Sony
        - Television
          - Samsung 42 LED Television
          - Samsung 32 LED Television
          - Samsung 57 LED Television
          - Samsung 75 LED Television
          - Sony 32 LCD Television
          - Sony 42 LCD Television
      - Whirlpool
        - Refrigerator
          - Samsung 530L Double Door Refrigerator
          - Samsung 175L Single Door Refrigerator
          - Samsung 230L Single Door Refrigerator
          - Samsung 230L Double Door Refrigerator
          - Whirlpool 530L Double Door Refrigerator
          - Whirlpool 1110L Double Door Refrigerator
    FurnitureNothing is there under Samsung. But the expect result is,
  - All Items
    - Electronic
      - Samsung
        - Refrigerator
          - Samsung 530L Double Door Refrigerator
          - Samsung 175L Single Door Refrigerator
          - Samsung 230L Single Door Refrigerator
          - Samsung 230L Double Door Refrigerator
        - Television
          - Samsung 42 LED Television
          - Samsung 32 LED Television
          - Samsung 57 LED Television
          - Samsung 75 LED Television
      - Sony
        - Television
          - Sony 32 LCD Television
          - Sony 42 LCD Television
      - Whirlpool
        - Refrigerator
          - Whirlpool 530L Double Door Refrigerator
          - Whirlpool 1110L Double Door Refrigerator
    FurnitureWhen I change the Hierarchy as
1. All Items
2. Item Category
3. Item Type
4. Item Brand
5. Item Name
AWM displays the data as,
  - All Items
    - Electronic
      - Television
        - Samsung
          - Samsung 42 LED Television
          - Samsung 32 LED Television
          - Samsung 57 LED Television
          - Samsung 75 LED Television
          - Samsung 530L Double Door Refrigerator
          - Samsung 175L Single Door Refrigerator
          - Samsung 230L Single Door Refrigerator
          - Samsung 230L Double Door Refrigerator
        - Sony
          - Sony 32 LCD Television
          - Sony 42 LCD Television
      - Refrigerator
        - Whirlpool
          - Whirlpool 530L Double Door Refrigerator
          - Whirlpool 1110L Double Door Refrigerator
    FurnitureBut the result expect for this Hierarchy is,
  - All Items
    - Electronic
      - Television
        - Samsung
          - Samsung 42 LED Television
          - Samsung 32 LED Television
          - Samsung 57 LED Television
          - Samsung 75 LED Television
        - Sony
          - Sony 32 LCD Television
          - Sony 42 LCD Television
      - Refrigerator
        - Whirlpool
          - Whirlpool 530L Double Door Refrigerator
          - Whirlpool 1110L Double Door Refrigerator
        - Samsung
          - Samsung 530L Double Door Refrigerator
          - Samsung 175L Single Door Refrigerator
          - Samsung 230L Single Door Refrigerator
          - Samsung 230L Double Door Refrigerator
    FurnitureWhat exactly I am missing here? Could you please anybody help me on this?
NOTE: Data I used here are just dummy and learning purpose
Thanks & Regards
M Thiyagarajan

The problem is that the definition of parent is ambiguous for some of your members. A good example of this is the member 'Refrigerator', which appears under both Samsung and Whirlpool in your data set. There will only be one member named Refrigerator in the AW, and it can have only one parent. In practice the code is choosing Whirlpool, but my guess is that the choice is arbitrary and you could get different answers each time.
The solution is to make the member have unique names -- "Refrigerator-Samsung" and "Refrigerator-Whirlpool" say. You can do this in the data set itself or in the mapping. To do it in the mapping you could map the "Item_Type" level to an expression like this.
DIM_ITEM.ITEM_TYPE || '-' || DIM_ITEM.ITEM_BRAND(Make sure you clear out the dimension before reloading with the new data since otherwise the old members will remain.)

Similar Messages

  • Data is not populated in List based on custom Query

    Hi
    I want to query the BO and display only certain instances in a advanced ListPane based on a query condition. But when i bind the custom query to the advanced list pane no data is displayed.
    1. Created a Bo PersistForcastBo.
    2. In Ti screen of PersistForcastBo add a tab QUALIFICATIONS.
    3. Two Advanced List Panes are created in QUALIFICATIONS tab
    4.fields of second advancedlist pane are bound to respective fields of Bo.
    5.Also an absl action script I created which displays data in the advanced listpane on click of QUALIFICATIONS tab.
    6.created a SADL Query in the controller and added the fields required for selection.
    6.also created condition in the selected parameter
    6. In AdvancedListPane added the default set created., but after the querying the Bo data doesnt display in AdvancedlistPane
    Can Anyone Please suggest a solution to this.
    Regards

    hi  Fred,
    On click of QUALIFICATIONS tab , Eventhandler gets called . In the eventhandler a Bo action is called first which is a absl script- displayforecast, to get all the data . The data in the list pane is populated due to this script. But when i created the query and binded the default set to the listpane the data is not populated
    the Eventhandler is called on Click of Qualifations Tab, first action gets called and then eventhandler  that executes defaultset is fired . This eventhandler is the handler created when query->defaultset is created
    but after firing this query no data is displayed.

  • Data is not populating in Idoc To File Scenario

    Hi Experts,
    My scenario is Idoc To File,
    I have developed a scenario and triggered the idoc at outbound, when i check in SXMB_MONI the status is processed successfully, and once i check in destination i am not getting the values, simply one file has come with the name which i have specified in Communicatio channel that's it no data in it. Kindly suggest me the possibilities for getting such a  problem. I am confused why the data is not getting populated.
    Thanks & Regards,
    Venkat

    Venkat, check ur file receiver communication channel..
    a, if it is configured correctly
    (runtime workbench->communication channel monitoring)
    b, if yes, check your target structure, if it matches the requirements of structure in the receiver comm channel
    How it configured ur terget message type?
    Peter

  • Billing date is not populating into the sales order

    Hi Experts,
    I am creating the sales orders by filling the IDOC's Segment data from a file. Sales orders are getting created however the BILLING DATE is not getting populated by the date from file instead it is taking the system date.
    Segments used are
    Header: E1EDK03   016  021  and  026.
    Item: E1EDP03  016  021  and  026.
    Please help me in this regard.
    TIA.
    Regards,
    Kishore.
    Edited by: kishore gaddam on Jul 18, 2009 10:06 AM

    Hi,
    Check with function guy , there could be some settings need to be done for getting external date populated in billing date field.
    Thanks,

  • Configuartion data is not populated using BAPI_SALESORDER_CREATEFROMDAT2

    Hi All,
    I am using BAPI_SALESORDER_CREATEFROMDAT2 to create the sales order and to add the characteristics for my material in the configuration.
    my code for configuration to BaPI
        w_order_cfgs_ref-posex = '000010'.
        w_order_cfgs_ref-config_id = '1'.
        w_order_cfgs_ref-root_id = '00000001'.
        w_order_cfgs_ref-complete = 'T'.
        w_order_cfgs_ref-consistent = 'T'.
        w_order_cfgs_ref-sce = '1'.
        w_order_cfgs_ref-kbname = w_sdsales_sap-matnr.
        w_order_cfgs_ref-kbversion = '1'.
        append w_order_cfgs_ref to i_order_cfgs_ref.
    INSTANCE
        w_order_cfgs_inst-config_id = '1'.
        w_order_cfgs_inst-inst_id =  '00000001' .
        w_order_cfgs_inst-obj_type = 'MARA'.
        w_order_cfgs_inst-class_type = '300'.
        w_order_cfgs_inst-complete = 'T'.
        w_order_cfgs_inst-consistent = 'T'.
       w_order_cfgs_inst-OBJ_TYPE = .
        w_order_cfgs_inst-obj_key = w_sdsales_sap-matnr.
        append w_order_cfgs_inst to i_order_cfgs_inst.
        w_order_cfgs_part_of-config_id = '1'.
        w_order_cfgs_part_of-inst_id = '00000001' ..
        w_order_cfgs_part_of-obj_type = 'MARA'.
        w_order_cfgs_part_of-class_type = '300' .
        w_order_cfgs_part_of-obj_key = w_sdsales_sap-matnr .
        append w_order_cfgs_part_of to i_order_cfgs_part_of.
    *characteristics value
        w_order_cfgs_value-config_id = '2'.
        w_order_cfgs_value-inst_id = '00000001'.
        w_order_cfgs_value-charc = 'VC_MODEL'(025).
        w_order_cfgs_value-value = w_sdsales_sap-model.
        w_order_cfgs_value-valcode = '1'.
        append w_order_cfgs_value to i_order_cfgs_value.
    It is creating sales order but configuration data is not getting populated in the sales order item.
    Please advise me
    Thanks in adv
    sangeetha

    hi see this
    SAP Note number  774346

  • Info-Object Master Data is not populated using Attribute View

    Hi Colleagues,
    I have one info-Object 'Resource', compounded with client, resource type and scenario.
    I want to fill its master data using an attribute view.  In Master data tab, i have mentioned the package and attibute view (SAP HANA MODEL).
    Assigned all the attributes to respective fields in attribute view.
    I can see data using the 'Data Preview' in my attribute view.
    Two issues --
    1. Maintain master data option is disabled in the context menu of 'Resource' Info-Object.
    2. Also the data available in attribute view is not populating in master data of info-Object ( I tried seeing by creating a report).
    Please suggest what is wrong here.
    Thanks in advance.
    Regards,
    Rohit

    Hi,
    When you are loading data from DSO to IO, seems like some filtering is happening. Just check the active table of DSO and make sure that you have all the 59 records available.
    Another important thing is check the primary key of your master data i.e. if there is any compounding attribute if not then records from DSO might be getting overwritten in the master data. i.e. only 6 unique records.
    Regards,
    Durgesh.

  • ASR901 y.1731 Latest Data Table Not Populated

    Why would SNMP data for a y.1731 test on an ASR901 not be populated in the ipslaEtherJitterLatestStatsEntry table?
    All the data in the table is being populated with zeros, even though valid tests are being performed.  There is data in the ipslaEtherJitterAggStatsEntry but only getting zeros when polling the latest table.
    I have verified that following objects exist per the MIB:
    - rttMonCtrlAdminRttType
    - rttMonEchoAdminProtocol
    Please let me know if you need anything else.

    Hi,
    Q Table is generated if we have time dependent display attributes for base Info Object where as Y Table is generated if we have at least one attribute defined as time-dependent navigational attribute.
    Normally both Q and Y table contain same no.of entries, however in your case the reason could be that SID for some records might not have generated(assuming this could be the reason) hence you are seeing this discrepancy in record count.
    Also before you proceed with any action in RSRV, you can check the records which are missing from Y table and analyze the reason for it. In RSRV if there is any is inconsistency we can see reason(error message) for inconsistency which helps us to understand the cause for this inconsistency.
    By analyzing this way we can know reason for discrepancy.
    Regards,
    Venu Gopal

  • Siebel - BIP Issue: Data is not populating in the report

    Hi Guru's
    You have any idea why there's no output data in a section of the report? I generated the xml for a record from siebel and tested that with my updated template and it's working fine. All sections are populated. But when I tried to upload it in Siebel the template and the updated xlf (from generated xml) and run the report, one section of the report don't have populated data. It's pretty weird bip. In that section of the report that without populated data, this is the codes:
    <?for-each:/SiebelMessage/ListOfBipPubHlsIncidentIo/PubHlsIncident/ListOfHs1IncidentContact/Hs1IncidentContact?><?sort:Household2;'ascending';date-type='number'?><?sort:Role;'ascending';date-type='text'?>.................<?end for-each?>
    Need your thoughts.
    Thanks,
    JP
    Edited by: BIPnewbie on Nov 18, 2011 3:06 AM
    Edited by: BIPnewbie on Nov 18, 2011 3:06 AM

    HI,
    Give the same Selections in the list cube same as in Report and run see if there are any values coming in the Listcube.....If u r getting the values then you should get same in the Report....
    Check with the authorizations to view the data....
    Thanks/tarak

  • Bf  datasource data is not populating in R/3 side

    Hi Folks,
    I have loaded 2lis_03_bx first for a plant using MCNB transaction,its showing data in RSA3 then I have loaded 2lis_03_bf datasource for the same plant using transaction 0LI2BW. but it is not showing data in RSA3.
    I have done the above process in background.
    In SM37 it is showing the following message for the 2lis_03_bf datasource
    Job started
    Step 001 started (program RMCBNEUB, variant &0000000000003, user ID TCS_SRM)
    Date fields for info structure S032 are not generated
    Job finished
    steps:
    1.Before loading the data I have deleted data using LBWG
    2.In LBWE, 2lis_03_bf is already activated.
    Please help me out on resolving the above issue
    Thanks in Advance

    Few sanity checks -
    1)From SBIW - Logistics > Inventory > Transaction key > Execute or select the required
    352344 - Process key + reversals in Inventory Management
    492828 Determining the transaction key for 2LIS_03_BF + 2LIS_03_UM
    2)From SBIW - Logistics > Inventory > Industry - Choose STANDARD" ) bu default is NONE which makes difference
    LBWG- Deleted the set up tables for 03
    Run the t code OLI1BW to fill the set up table for 2LIS_03_BF .
    3)Also check the tcode BF11 or table TBE11 , BW and NDI are check marked, these are more of imperative than prerogative.
    Hope it Helps
    Chetan
    @CP..

  • Infopath form promoted columns data is not populated to sharepoint library

    hi ,
    I have an Team site with Sub Site .
    Example :Http://{hostname}/{teamsite}/{TestSubsite}
    In Dev Environment
    in the above TestSubsite , we have an form library "testformlib" .We have an infopath form named "informpath1" which is published to the testformlib library and promoted some of the columns to the library.
    Now i can see the promitted columns data in the library.
    Taken CMP which is TestSubsite.cmp for the TestSubsite
    Production
    Http://{Productionhostname}/{teamsite}/{TestSubsite}
    I have imported the above Dev. TestSubsite.cmp to the production TestSubsite which has same library,
    Also activated the same infopath form to the library "testformlib" in production sub site.
    Problem
    The Problem is I cannot see the columns which i have promoted in production subsite library.
    What I am thinking is "testformlib" library guid is changed in prosecution while i am importing cmp.
    Can i know what is the mistake or i need to change to do.
    Is there any chance to change the existing share point form library guid using Power shell.
    Please suggest.
    Thanks
    Raghava

    Hi Victoria,
    Please check the scenario, what i worked and issue.
    Scenario:-
    I have a site ,ex:- http://host/sitecollection/subsite1 in dev. machine, the subsite1 have a form library "TestFormLib".
    published infopath form wtih some promotional fields (ex:- Test1) to "TestFormLib" library.
    i am able to see all promoted 'Test1' field data  in the library.
    taken  back up form the dev upto sitecollection and restored in the production.
    created subsite1 in prodiction server and taken subsite1 cmp from dev , imported into production server and published form which have promoted columns to "TestFormLib" library.
    able to see the promoted (Test1) field data in "TestFormLib" library in production subsite1.
     re-activated info path form to "TestFormLib" library in dev machine with additional (Test2) field promotion.
    i am able to see the "Test2" promotion field data(Value) in dev machine "TestFormLib" library.
    then , taken cmp for "SubSite1"  from the dev. machine, imported into production server on "SubSite1" .
    re-activated the latest form which is promoted "Test2" field to production server.
    i am able to see the promoted column name "Test2" , but not able to see the data(Value) of the "Test2" in production server "TestFormLib" Library.
    Issue:-
    i am able to see the promoted column name "Test2" , but not able to see the data(Value) of the "Test2" in production server "TestFormLib" Library when i did second time promoted in second time imported subsite cmp.
    Any Suggestions to solve the above issue and i dont want to recreate the library in production . Because the data has been deleted.
    Help please..
    Thanks & Regards,
    Raghava Reddy S.

  • Previous fiscper data is not populating in FIAP Query

    Hi All,
    I am designing a query in FIAP, i copied the standard query which is built on 0FIAP_C02, my requirement is as follows.....
    User enters the Fiscal  Year Period (  ex 01.2010) and the query result should show values of  Credit posting value , debit posting value and balance for Current  fiscal year period  and previous fiscal year period values respectively...
    i tried with variable offset to get the result i.e Fiscal yrperiod-12 , but this is not working.......i tried with selections and restricted keyfigures but it doesnt work for me.
    Plz suggest me any alternate solutions.
    Thanks,
    Yunus

    if you use fiscal period - 12 then it will show for last 12 months rather than last year data..use fiscal year - 1 rather than period...

  • Data is not populated

    Hi to all ,,
           iam not able to see all the records in the production server, only some data records are coming..if i want to get all the data to production , what should i do. pls help me..
       Thanks and regards
    chaitanya
    [email protected]

    Hi,
    Go to RSMO. there is filter in context menu (Y shaped button)..give free date and execute.
    Then all data till date will be avaiable.
    Now select the data target and see the data loaded in that DT.
    Regards,
    San!

  • Actual data is not populated in Budget Fund Check Results for Project Budge

    Dear All,
    Please help me with the following issue:
    1) Create Project Budget integrated to GL Budget (Top Down Integration for encumbrance).
    2) Enter Time Sheets through pre-approved batches (we are aware fund check will happen only for Requisition, PO & Supplier Invoices and not for other transactions).
    3) Now Actual Cost is updated for the time sheet entered in point number (2) in Expenditure Inquiry & PSI.
    4) But the same Actual Cost is not updated in Budget Fund Check Results window (hence funds available is not updated). Navagation: Projects implementation Super User Responsibility
    Budget> History> Tools >View Fund Check Results
    Please provide us solution why Actual Cost is not updated at Fund check Results window because of this there is a huge impact on funds available.

    Hi,
    Please check the below for more help
    http://www.ncoaug.org/archives/ncoaug_20070613/presentations/2002-Aug/Projects_Koziski.ppt
    Rgds
    Raghu

  • Return order BUS2102 Workflow container data not populated

    Hi All,
    Please requesting you to provide your advise on the below issue.
    I have created a custom workflow with business object BUS2102
    In the Workflowtemplate (E.g. WS90000XXX)
    i have included the triggering event for BUS2102 with EVENT "CREATED" and
    added a container element SDReturnCN of type BUS2102
    Once the Return Order is created the Workflow is getting triggered successfully
    but data is not populated into the container SDReturnCN.
    Do i need to write and EXIT to populate container UNLIKE as in Credit memo bussiness object :BUS2094
    if yes please let me know which part i am missing.
    Thanks & Regards,
    Veeru.

    Hello,
    "but data is not populated into the container SDReturnCN."
    Check the bindings. Where is the value coming from?
    regards
    Rick Bakker
    hanabi technology

  • A&B schemas are not populated with data after successfull deployment in BCC

    Hi all,
    Initially I'm able to up the site with the data in my catalog schemas(A & B), But all of sudden the data is deleted in both schemas after performing full deployment and
    the data is not populated.
    From then, even If I do incremental deployment the data is not populated in targeting schemas. Please suggest me where I've done the mistake.
    Please help as soon as possible.
    Thanks,
    Kushal.
    Edited by: 916721 on Jun 5, 2012 11:23 AM

    Check the publishing (CA) and production (target) server logs when you start the deployment after setting loggingDebug as true for the following components through dyn/admin.
    on CA Server:
    /atg/epub/DeploymentServer
    on Target site:
    /atg/epub/DeploymentAgent
    /atg/deployment/DeploymentManager
    /atg/commerce/catalog/ProductCatalog_production or /atg/commerce/catalog/ProductCatalog_staging/ (depending upon your configuration)
    See if you can find any exception or other error from debug logs.

Maybe you are looking for

  • What's it worth without LCD?

    I have a PowerBook G4 12" 1.33 GHz. Upgraded to 768MB RAM. It's a great computer, but about seven months ago the screen stopped working. I didn't even notice, as I had been using it as a desktop computer for a while, hooked to an external monitor and

  • TAB key behavior illogical

    When creating a new iCal event, after its title, the TAB key takes to the field "location" (logical, OK). The next TAB key goes to the "minutes" in the starting date field (illogical, not OK). From that field, hitting the TAB key takes, again to the

  • Error Message in SP_Transaction Notification

    Dear Experts, is it possible to include for example the row number or the item code into the error message from the SP_Transaction Notification? I have edit the SP to avoid that items with property 3 can be used in Sales Order. It works fine, but if

  • CF8 Dev Enviroment

    My company recently switched to CF8 on their servers. I came here to look at the demos and get some ideas for how to take advantage of some of the new stuff. However, they seem to be using some mystery dev enviroment in the demo videos. I have HS 5.5

  • How do I remove the battery when the battery release latch won't move?

    HPg71  laptop. Product VM114UA#ABA. Is there a service center I should know about in San Diego California?