Selection for loading hierarchies into BW

Hi friends,
I have a hierarchy to be loaded into BW from R/3. I created an Infopackage and there is only one radiobutton for hierarchy. I refreshed the available hierarchy list but still, I get only one selection. I checked in RSA3 and there also, I have only one selection available. But, in R/3, I have many more hierarchies to be loaded. I have to get the remaining hierarchies in the available list. How can I get them into the available list? Any help in this regard will be appreciated.
Thanks and Regards
Subray Hegde.

Only the top node of a hierarchy is displayed within an infopackage. 
Is it possible that your several hierarchies are actually lower level nodes of a higher-level hierarchy?  For example, it is possible to have several cost element groups (hierarchies), which rollup to higher level nodes.  It is only the top nodes which are available for extracting into BW. 
Using the cost element example (sorry, but I'm not well-versed in Funds Mgt), in R/3, access t-code KAH3 to display cost element groups.  After clicking the drop-down arrow, the system presents a dialog window which includes options of displaying "All nodes" and "Top nodes".  Within a hierarchy infopackage for 0COSTELMNT, you should see one hierarchy available for each top node displayed in R/3.
Hope this helps.

Similar Messages

  • Infopackage settings for loading Hierarchies

    Hi Experts,
                     Here i want to load master data for hierarchies into my BI system, according to my knowledge we hav to do some changes in infopackage for loading hierarchies. I want to knw the infopackage settings for hierarchies for BI 7.0 version, also i want to knw the infopackage settings for BW 3.5 version. It seems there is a hude difference on the infopackage window for both the versions, please advice on this.      
    Thanks in advance
    Shiva

    hi
    in BI7.0  version we cant load heirarchy's still using for loading hierarchy's BW3.5 verstion and migrate..
    thx
    vij

  • Steps to load Hierarchies into BPC

    Hi All
    I am new to SAP BPC.I have the following doubts on BPC.
    1.Can anyone let me know how to load hierarchies into BPC. If you have any links which explain this procedure its appreciated you pass on it to me.
    2. Difference between Planning and Forecasting.
    Thanks and Appreciate your quick response.
    Thanks & Regards
    ark

    Hi Ark-
    There is an excellent paper on how to load master data (including hierarchies) into BPC located at:
    [https://wiki.sdn.sap.com/wiki/display/BPX/Enterprise%20Performance%20Management%20%28EPM%29%20How-to%20Guides|https://wiki.sdn.sap.com/wiki/display/BPX/Enterprise%20Performance%20Management%20%28EPM%29%20How-to%20Guides]
    The article is titled: "How Tou2026 Automate BPC 7.0, version for the NetWeaver Platform Master Data Loads from BW to BPC".
    Planning and Forecasting are business processes.  Planning implies a process that is invoked to predict future performance.  More typically businesses use the terms Budgeting and Forecasting to describe how far out in time a prediction is made.  Budgeting is a process that delivers at least a full future year of performance expectations.  Forecasting is very similar to Budgeting forward looking view; however forecasting is typically focused on the current year's performance.  Forecasting will typically combine some actual values with a projection of the balance of the current year's anticipated results.  Each customer may call these activities by their own internal naming conventions.
    Regards,
    Sheldon

  • FDMEE Import error "No periods were identified for loading data into table 'AIF_EBS_GL_BALANCES_STG'

    Hi,
    We are having trouble while importing one ledger 'GERMANY EUR GGAAP'. It works for Dec 2014 but while trying to import data for 2015 it gives an error.
    Import error shows " RuntimeError: No periods were identified for loading data into table 'AIF_EBS_GL_BALANCES_STG'."
    I tried all Knowledge docs from Oracle support but no luck. Please help us resolving this issue as its occurring in our Production system.
    I also checked all period settings under Data Management> Setup> Integration Setup > Global Mapping and Source Mapping and they all look correct.
    Also its only happening to one ledger rest all ledgers are working fine without any issues.
    Thanks

    Hi,
    there are some Support documents related to this issue.
    I would suggest you have a look to them.
    Regards

  • Steps for loading data into the infocube in BI7, with dso in between

    Dear All,
    I am loading data into the infocube in BI7, with dso in between. By data flow looks like....
    Top to bottom:
    InfoCube (Customized)
    Transformation
    DSO (Customized)
    Transformation
    DataSource (Customized).
    The mapping and everything else looks fine and data is also seen in the cube on the FULL Load.
    But due to some minor error (i guess), i am unable to see the DELTA data in DSO, although it is loaded in DataSource through process chains.
    Kindly advise me, where did i miss.
    OR .. Step by step instructions for loading data into the infocube in BI7, with dso in between would be really helpful.
    Regards,

    Hi,
    my first impulse would be to check if the DSO is set to "direct update". In this case there is no Delta possible, because the Change log is not maintained.
    My second thought would be to check the DTP moving data between the DSO and the target cube. If this is set to full, you will not get a delta. It is only possible to create one DTP. So if you created one in FULL mode you can't switch to Delta. Just create the DTP in Delta mode.
    Hope this helps.
    Kind regards,
    Jürgen

  • Procedure for loading data into gl_interface

    hi all
    iam new to oracle applications.....i just want to know how to load data into gl_interface table using pl/sql (that is...first loading data into a temporary table and then using pl/sql procedure to load into gl_interface). can anybody help me out with this by providing the pl/sql structure for it??
    thanx in advance

    Asuming you have data in a datafile and file is camma delimited. I asume table has two columns you can add more columns also.
    CREATE OR REPLACE PROCEDURE p10
          IS
          lv_filehandle                                UTL_FILE.FILE_TYPE;
          lv_iicc_premium                              ref_cursor;
          lv_newline                                   VARCHAR2(2000); -- Input line
          lv_header_line                               VARCHAR2(20);
          lv_trailer_line                              VARCHAR2(20);
          lv_file_dir                                  VARCHAR2(100);
          lv_file_name                                 VARCHAR2(100);
          lv_col1                                      VARCHAR2(10);
          lv_col2                                      VARCHAR2(50);
          lv_comma                                     VARCHAR2(1) := ',';
        BEGIN
           gv_PrFnName := '[pr_iicc_premium]';
           DELETE FROM temp_table;
            lv_file_dir  := 'p:\temp';
            lv_file_name  := 'test.dat';
            lv_filehandle := UTL_FILE.FOPEN (lv_file_dir, lv_file_name, 'r', 32766);
            UTL_FILE.PUT_LINE (lv_filehandle, lv_header_line);
            LOOP
               FETCH lv_iicc_premium INTO lv_newline;
               EXIT WHEN lv_iicc_premium%NOTFOUND;
               UTL_FILE.PUT_LINE (lv_filehandle, lv_newline);
               lv_col1 := substr(lv_newline, 1, instr(lv_newline, ',', 1)-1);
               lv_col2 := substr(lv_newline, instr(lv_newline, ',', 1)+1, instr(lv_newline, ',', 2)-1);
               INSERT INTO temp_table VALUES (lv_col1, lv_col2);
               COMMIT;
            END LOOP;
            INSERT INTO your_production_tables VALUES ( SELECT * FROM temp_table );
            COMMIT;
            UTL_FILE.FFLUSH (lv_filehandle);
            UTL_FILE.FCLOSE (lv_filehandle);
        EXCEPTION
           WHEN UTL_FILE.INVALID_PATH THEN
             RAISE_APPLICATION_ERROR(-20100,'Invalid Path');
           WHEN UTL_FILE.INVALID_MODE THEN
             RAISE_APPLICATION_ERROR(-20101,'Invalid Mode');
           WHEN UTL_FILE.INVALID_OPERATION then
             RAISE_APPLICATION_ERROR(-20102,'Invalid Operation');
           WHEN UTL_FILE.INVALID_FILEHANDLE then
             RAISE_APPLICATION_ERROR(-20103,'Invalid Filehandle');
           WHEN UTL_FILE.WRITE_ERROR then
             NULL;
           WHEN UTL_FILE.READ_ERROR then
             RAISE_APPLICATION_ERROR(-20105,'Read Error');
           WHEN UTL_FILE.INTERNAL_ERROR then
             RAISE_APPLICATION_ERROR(-20106,'Internal Error');
           WHEN OTHERS THEN
           UTL_FILE.FCLOSE(lv_filehandle);
        END p10;
    /Code is not tested.
    Hope this helps
    Ghulam

  • How to create keyboard for Load Files into Photoshop

    does anyone know if there is a way to create or is there an existing keyboard shortcut to Load Files into Photoshop from Bridge?

    I should have been more specifc.
    Much like in bridge-tools-photoshop-load files into photoshop, I want to load multiple files into a layered photoshop document.
    Can't seem to find a keyboard shortcut for this action. Though I don't know how to write scripts very well but there are far too many keyboard shortcut posts I've searched and can't seem to find a way.
    thanks

  • Interface for loading data into customer products

    I am trying to find if there is any interface for loading Customer products in Install Base apart from entering them manually. I understand that this exists in Oracle Apps version 11.5.7 but I need this for version 11.5.4.

    Hi,
    In 11.5.4 , you've to write yourself the loader, using Oracle standard API.
    I've performed it, it is working fine.
    Hugues

  • Selecting and loading songs into an already full Nano (8G)

    Hello: I had loaded months ago my Nano with all my songs in the Library as it was less than 8G. Now I want to connect my Nano and 'reload' (not sure the right term) songs I want on it (along with Playlists). My current Library has many more songs now (meaning, I just can't tranfer my whole Library to the Nano any more). So, do I need to delete all the songs on my Nano, then some how select only the songs I want loaded, and transfer? Do you select the songs you want transfered by marking the box to the left of each song or do you create a Playlist and dump it into the Nano. Sorry for this basic question. FYI -- I have iTunes 7.6.x. Thanks in advance.

    The easiest way (in my opinion at least) to do this is to manually manage the songs on you iPod. To do this open itunes and connect the ipod. When it loads select the iPod (so you see the restore ipod and update ipod options). Towards the bottom of the screen check the box that says "manually manage music." To update the songs and play lists, just drag them to the icon for you ipod. To delete songs click the arrow next to the ipod to bring up the submenus. select the music menu then go through the ipod and delete what you don't want. This might be an extra step or two, but its sure to get you exactly what you want.

  • Best Practise for loading data into BW CSV vs XML ?

    Hi Everyone,
    I would like to get some of your thoughts on what file format would be best or most efficient to push data into BW. CSV or XML ?
    Also what are the advantages / Disadvantages?
    Appreciate your thoughts.

    XML is used only for small data fields - more like it is easier to do it by XML rather than build an application for the same - provided the usage is less.
    Flat files are used for HUGE data loads ( non SAP ) and definitely the choice of data formats would be flat files.
    Also XML files are transformed into a flat file type format with each tag referring to the field and the size of the XML file grows to a high value depending on the number of fields.
    Arun

  • Loading hierarchies for 0GL_ACCOUNT InfoObject

    Hi,
    I cannot load hierarchies into 0GL_ACCOUNT InfoObject. I have created InfoPackage and in Update Data options I can only choose 'Only PSA' option. I have loaded attributes and texts without any problems. What should I do?
    Regards,
    Maciek

    Hi Maciej,
    Hope you had customized your 0GL_ACCOUNT hierarchy on R/3. Refer the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/97a16a65fb11d3971c006094b969cf/frameset.htm
    Bye
    Dinesh

  • Wht is the relevant for BW Flag option in the infopackage for loading Hier

    Hello Gurus,
    Whta is the relevant for BW Flag option in the infopackage for loading Hierarchies? What happens when you turn this on?
    Thanks
    Simmi

    As the hierarchies are stored in combination with the OLTP system, when you tend to load from a flat file, the system doesnt allow you to maintain this feature, as this hierarchy would be relevant to BI.
    Diagnosis
    The relevant hierarchies in BI are stored according to the combination DataSource/source system.
    If you want to change the selection of BI-relevant hierarchies, this change is effective for all InfoPackages that have been created for the same DataSource/source system combination.
    Procedure
    Check all other InfoPackages for DataSource 0COSTCENTER_0101_HIER and source system PRDCLT100 to see whether the change executed is also appropriate for these InfoPackages.
    Procedure for System Administration
    If you want to load a hierarchy in a different InfoPackage (which will be marked as non BI-relevant as a result of your changes) the selections made for this InfoPackage will be lost and The InfoPackage can no longer load.
    Errors will occur when you start the InfoPackages. The monitor produces an error message to say that a valid hierarchy selection has to be made.

  • Loading fonts into FInal Cut Pro 5.0.4

    Is it possible to load addtional fonts into FCP 5.0.4?
    I loaded the font into all the font folders I could find and still they have not shown up in the Final Cut pro fonts? I restarted twice?
    Am I missing some hidden file that I must load the fonts into?
    Thanks for your help

    There is no provision for loading fonts into FCP. Use FontBook to add fonts; choose to make the fonts available to all users so they'll be installed in .[boot drive]/Library/Fonts.
    But even with that, FCP won't see just any font. FCP seems to be partial to TrueType Data Fork fonts.
    -DH

  • Loading data into two files

    Hi
    I have written sql loader script for loading data into two tables.
    Script is working ..But output is not coming properly.
    I want to load data into first table which lines are having first char 'R'.
    In the second table I have to load data which are related from the first line. Incase
    first line data is not properly (means discarded) then related second table data
    will not be load.
    But I am getting both rows.Though the first table record is discarded. Please find below
    the output.
    Any other solution also ....Ok..external tables..Utl_file.
    LOAD DATA
    infile "inputFileForRmaReceiptAcknowledgement.dat"
    BADFILE 'inputFileForRmaReceiptAcknowledgement.bad'
    DISCARDFILE 'inputFileForRmaReceiptAcknowledgement.dsc'
    APPEND
    INTO TABLE XXGW_RMA_HEDR_RCPTACK_TAB
       WHEN (01)='R'
          (  LINE_TYPE              POSITION(1:1) "substr(:Line_Type, 1)",
             RMA_ORDER_NO           POSITION(2:16)  CHAR,
             ACKNOWLEDGEMENT_NO     POSITION(17:31) CHAR,
             ACKNOWLEDGEMENT_DATE   POSITION(32:45) 
    "to_date(substr(:acknowledgement_date,3),'YYMMDDHH24MISS')",
             DETAIL_LINE_COUNT      POSITION(46:51) INTEGER EXTERNAL,
             FLAG                   CHAR)
    INTO TABLE XXGW_RMA_RCPT_ACKLDGMNT_TAB
       WHEN (01) = 'D'
          (  LINE_TYPE              POSITION(1:1) "substr(:Line_Type, 1)",
             RMA_ORDER_NO           POSITION(2:16)    CHAR,
             RMA_ORDER_LINE         POSITION(17:19)   INTEGER EXTERNAL,
             SERIAL_NUMBER          POSITION(20:49)   CHAR,
             SKU                    POSITION(50:63)   CHAR,
             QUANTITY               POSITION(64:69)   INTEGER EXTERNAL,
             WAREHOUSE_CODE         POSITION(70:71)   CHAR,
             WAYBILL_NUMBER         POSITION(72:121)  CHAR,
             COURIER                POSITION(122:146) CHAR,
             RETURN_DEALER_FLAG     POSITION(147:156) CHAR)
    inputFileForRmaReceiptAcknowledgement.dat
    R12345678901    2345456789123200   21111228241113000002  --- discarded record
    D12345678901    00159123687402 45678925803   00000102name                                  
    D12345678901    00159143687402 45678925603   00000102name                                  
    T000004Regards
    Ar

    Pl post details of OS and database versions.
    Create a foreign key constraint between the detail table and the master table. If the row fails to load into the master table, then the detail table rows will fail the foreign key constraint and will not load.
    http://docs.oracle.com/cd/E11882_01/server.112/e25789/datainte.htm#CNCPT1649
    HTH
    Srini

  • How to load hierarchies using process chains

    Hi ,
    Can any one please explain the steps for loading hierarchies using process chain.whenever i drag the hierarchy infopcakage Save variant is also coming by default,so do we need to have different SAve variant for different hierarchy infopackages or can we have one save variant for all the hierarchy variables.
    Thanks,
    Vaka

    Hello Veka,
    How r u ?
    Yes ! SAVE Variant & Attribute Change Run will add up while loading the Hierarchy InfoPackage.
    Provide the InfoObject Name for which u r loading the Hierarchy in the SAVE variant and SAVE it. The same will be transferred to the Attribute Change Run also.
    If u r creating the Chain with more InfoPackages then have the Save Variant & Attribute Change Run at the last.
    Best Regards....
    Sankar Kumar
    +91 98403 47141

Maybe you are looking for