How to load several books in planning using FDM ERPI?

Hello

I use FDM and ERPI 11.1.2 to load data from Oracle GL R12 to Hyperion Planning 11.1.2.

In Oracle GL, I have several books: one for each accounting entities.

In ERPI:
-an import format is associated with a single entity accouting
-a location is associated with an import format, then with a reporting entity
-a rule of data loading is associated with a place, then with a reporting entity

In FDM, when configuring the ERPI adapter, you must enter the data load rule name that you want to use.

So: How to load data from several reporting entities (= books) in planning through FDM/ERPI?

Thank you in advance for your help!

Fanny

Fanny,

You have no need to fill the data rule option - load adapter. By the documentation, you can also fill the places metadata integration Option n ° 1 with load rule name. This lets you use an adapter in the application of FDM; but the pull of several great books.

Of course, each book would be a separate location of the FDM.

Thank you

Tags: Business Intelligence

Similar Questions

  • Help! How to load several SWF files by using the following code?

    In stock for 1 frame:

    ( var myrequest:URLRequest =new URLRequest ()'A.swf'();
    ( var myloader:Loader =new Loader()();
    myLoader. load () myrequest ();

    img1. addEventListener () MouseEvent. ( CLICK, button click();

    ( function button click ()event: MouseEvent ():void{ }
    Stadium. addChild () myloader ();
    }

    img1.addEventListener (MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_5);

    function fl_ClickToGoToAndStopAtFrame_5(event:MouseEvent):void

    {

    gotoAndStop (13).

    }

    In action to frame 13: (img2 is another button)

    img2.addEventListener (MouseEvent.CLICK, unloadFunction);

    function unloadFunction(event:Event):void {}

    stage.removeChild (myloader);

    }

    you want to load another swf (for example, B.swf) when you are in frame 13 and img2 is clicked?  If so, and you do not want A.swf continue to play, use:

    In action to frame 13: (img2 is another button)

    img2.addEventListener (MouseEvent.CLICK, loadF2);

    function loadF2(event:Event):void {}

    myLoader.Load (new URLRequest ("B.swf"));

    }

  • Is it possible to use FDM ERPI drill-through via Excel Add-in, V11

    Hello

    I use FDM ERPI 11.1.2.1 to load data from Oracle eBS GL (11.5) in Hyperion Planning 11.1.2.1.

    The drill-through of Hyperion Planning to Oracle eBS GL by FDM ERPI is permitted through Smartview and data forms.

    Do you know if it is permitted through the Excel Add-In V11?

    Thanks in advance for your help

    Fanny

    You cannot use the add-in classic spreadsheet (Excel) if that's what you are referring.

    As indicated in the other post, it works through Smart View.

    Thank you

    Todd Rebner

  • How to load several HTML5 canvas on the same page (the right way)

    Hello

    I struggled to load several animations of canvas on the same page. At the beginning, I thought that export movies with different namespaces and reload the libraries in a sequential workflow might work, but it doesn't. It still load just the last loaded movie. More info here: coding challenge: what am I doing wrong?

    Here's a sample of what I'm doing:

    1: publish two flash animations with namespaces customized to "lib" defined in the "publication settings": "libFirst" and "libSecond".

    2nd: Edit the canvas tags in the HTML page. One called "firstCanvas" and another one called "secondCanvas".

    3rd: change the javascript like this:

            <script>
                // change the default namespace for the CreateJS libraries:
                var createjsFirst = createjsFirst||{};
                var createjs = createjsFirst;
            </script>
            <script src="//code.createjs.com/easeljs-0.7.1.min.js"></script>
            <script src="//code.createjs.com/tweenjs-0.5.1.min.js"></script>
            <script src="//code.createjs.com/movieclip-0.7.1.min.js"></script>
            <script src="{{assets}}/js/first.js"></script>
            <script>
                function initFirstAnimation() {
                    var canvas, stage, exportRoot;
    
                    canvas = document.getElementById("firstCanvas");
                    exportRoot = new libFirst.first();
    
                    stage = new createjsFirst.Stage(canvas);
                    stage.addChild(exportRoot);
                    stage.update();
    
                    createjsFirst.Ticker.setFPS(libFirst.properties.fps);
                    createjsFirst.Ticker.addEventListener("tick", stage);
                }
            </script>
            <script>
                // change the default namespace for the CreateJS libraries:
                var createjsSecond = createjsSecond||{};
                var createjs = createjsSecond;
            </script>
            <script src="//code.createjs.com/easeljs-0.7.1.min.js"></script>
            <script src="//code.createjs.com/tweenjs-0.5.1.min.js"></script>
            <script src="//code.createjs.com/movieclip-0.7.1.min.js"></script>
            <script src="{{assets}}/js/second.js"></script>
            <script>
                function initSecondAnimation() {
                    var canvas, stage, exportRoot;
    
                    canvas = document.getElementById("secondCanvas");
                    exportRoot = new libSecond.second();
    
                    stage = new createjsSecond.Stage(canvas);
                    stage.addChild(exportRoot);
                    stage.update();
    
                    createjsSecond.Ticker.setFPS(libSecond.properties.fps);
                    createjsSecond.Ticker.addEventListener("tick", stage);
                }
            </script>
    
    <body onload="initFirstAnimation(); initSecondAnimation();">
    
    
    
    

    Could someone please answer with best practices on how to do it? If possible, without the need to reload all libraries...

    If I only need to show a flash animation at the same time, it would be more efficient to cut/paste the canvas using jQuery tag in the DOM and reload a different lib on this subject?

    Thank you very much!

    #flash #reborn

    I was able to remedy. In the end, it was easier than I thought. Just publish using namespace different 'lib' for each film, load all the scripts at the end of theand add the following in the onload or ready events:

    $(document).ready(function () {
    
            var canvas, stage, exportRoot;
    
            // First movie
            canvas = document.getElementById("firstCanvas");
            exportRoot = new libFirst.first();
    
            stage = new createjs.Stage(canvas);
            stage.addChild(exportRoot);
            stage.update();
    
            createjs.Ticker.setFPS(libFirst.properties.fps);
            createjs.Ticker.addEventListener("tick", stage);
    
            // Second movie
            canvas = document.getElementById("secondCanvas");
            exportRoot = new libSecond.second();
    
            stage = new createjs.Stage(canvas);
            stage.addChild(exportRoot);
            stage.update();
    
            createjs.Ticker.setFPS(libSecond.properties.fps);
            createjs.Ticker.addEventListener("tick", stage);
    
            // Third movie
            canvas = dument.getElementById("thirdCanvas");
            exportRoot = new libThird.third();
    
            stage = new createjs.Stage(canvas);
            stage.addChild(exportRoot);
            stage.update();
    
            createjs.Ticker.setFPS(libThird.properties.fps);
            createjs.Ticker.addEventListener("tick", stage);
    });
    
  • How to load several SWF my main flash file?

    I use the following code

    In stock for 1 frame:

    ( var myrequest:URLRequest =new URLRequest ()'A.swf'();
    ( var myloader:Loader =new Loader()();
    myLoader. load () myrequest ();

    img1. addEventListener () MouseEvent. ( CLICK, button click();

    ( function button click ()event: MouseEvent ():void{ }
    Stadium. addChild () myloader ();
    }

    img1.addEventListener (MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_5);

    function fl_ClickToGoToAndStopAtFrame_5(event:MouseEvent):void

    {

    gotoAndStop (13).

    }

    In action to frame 13: (img2 is another button)

    img2.addEventListener (MouseEvent.CLICK, unloadFunction);

    function unloadFunction(event:Event):void {}

    stage.removeChild (myloader);

    }

    This code works perfectly fine. My only problem is how to make several swf loaded. When I tried to copy and paste the same code for the another swf, but the following errors appear. I'm sure theres a way to have several sovereign wealth funds (btw the multiple SWFS will be bound to different frames).

    Scene 1, Layer 'PAGES!', frame 2, line 7 1021: duplicate function definition.

    Scene 1, Layer 'PAGES!', frame 2, line 2 1151: there is a conflict with the myloader definition in the internal namespace.

    Scene 1, Layer 'PAGES!', frame 2, line 1 1151: there is a conflict with myrequest definition in the internal namespace.

    Can anyone help me please with this. Thank you

    I have to get a new keyboard one day... it ignores things...  That sentence was supposed to have read "You can not set the same variable name or function more than once in a file" If you don't know not what that means, read it a few times because it's as simple as possible.

    In regards to the other code, try and see what you get... No need to wait for me to try something yourself and see.

  • Failed to load several files to Essbase using generics and MaxL characters

    I have several data files to load:


    Files:
    Filename.txt
    Filename_1.txt
    Filename_2.txt


    According to the following link, Essbase is able to load several files to the BSO via MaxL databases using wildcards:

    http://docs.Oracle.com/CD/E17236_01/EPM.1112/esb_tech_ref/frameset.htm?launch.html

    However, when I try to run the following, I get the following error:


    MaxL:
    import data from database MyApp.DB of data_file text Server "... /.. '. /MyApp/filename*.txt' using the rules_file server 'L_MyRule' error add to '\\Server\Folder\L_MyRule.err ';

    Error:
    ERROR - 1003027 - failed to open file [DB01/oracleEPM/user_projects/epmsystem2/EssbaseServer/essbaseserver1/app/MyApp/DB /... /.. / Filename*.txt].
    ERROR - 1241101 - Essbase unexpected error 1003027.


    I can run the following fine without any problems, but it deals only with the first of several files, and I'd rather not hardcode several files as the number may vary in the future:

    MaxL:
    import data from database MyApp.DB of data_file text Server "... /.. '. ' / MyApp/Filename.txt "using Server rules_file error ' L_MyRule' add to '\\Server\Folder\L_MyRule.err ';


    Any ideas? And what about ASO databases?

    Good point John, concatenate the files don't get you all that. Not sure about post of James it is fair after the wildcard for the usability or performance option.

  • How to load several files DBF table 1 target using only 1 interface?

    Hello, I am a beginner in ODI and I have a problem.

    I have several DBF / Foxpro files that is stored in a directory like this:
    2010_10/account.dbf
    2010_11/account.dbf

    All DBF files have the same structure, but stored in a different folder (the folder name is < year > _ < month >)

    I managed to create an interface to load a DBF unique for the target table and the source table is hardcoded in the interface. Ideally, the interface will take place once a month.

    How can I use the same interface to load other DBF files?

    I know, if the data source is a text file, you can link the resource name to a variable, and the variable can be set to a file name. But I can't do since I use a JDBC driver to connect to the DBF file.

    Any help will be appreciated

    Hello

    I have no idea on the DBF files, yet...

    What is create a variable to build the 'months' and then pass this variable to OdiFileCopy, move this file to a specific directory. Then run your interface to load this file into your database. Once the work is successful, you can delete the file using OdiFileDelete (optional)

    Thank you
    Fati

  • How to load several files column data into essbase using the rule of load.

    Hello

    I need to load a file of data into essbase, which includes data from several columns.

    Here is a sample file.


    Year, Department, account, Jan, Feb, Mar, Apr, may, June, July, August, Sept, Oct, Nov, Dec
    FY10, ministere1, account1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12
    FY10, agencies2, account1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12
    FY10, ministere3, account1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12


    Thank you
    Sirot

    But this isn't an error as such, that is to say that no data values have been changed so that they possible already exist in the database.
    If there is no release, they should be in a file of errors.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to load data into the planning your application through FDMEE of Multicurrecny?

    Hi all

    I am new to FDMEE, I got hit with the loading of data, here's my problem,

    My application is the application of multicurrency with USD as the currency of presentation and a few more currencies like GBP, etc. INR currency basis to individual entities. The requirement is to load real historical data in application of planning in local currencies and in USD.

    I have a data file for USD. However, I have several files for local currencies, all data files will be in the same format. When I tried to load with the configuration under configuration of integration in location of given functional currency as USD and the data value as USD , but still only "Local" data loading, when I checked the recovery of data in Smart mode by keeping the dimension currency in Page and selecting USD, it shows no data , but if I choose Local it retrieves data!  Is it possible to load data from both local USD currency?

    Any help on this is much appreciated, thanks in advance.

    Kind regards

    Kamal

    Hi all

    Now, I managed to load time USD (presentation currency) and Local (different base for the entity currency). Before that I did not forget the currency (USD / Local) in the functional currency of the location field.

    Thank you all,.

    Kind regards

    Kamal

  • How to load the child table by using a simple slider...?

    How can I loa the child table by using a PL/SQL block cursor...

    for example, I have a table of the source called method

    EmpNo, empname, deptid deptname

    and I have 2 tables of taget... EMP and Dept.

    EMP
    ===
    EmpNo, empname, deptid

    Dept
    ====
    deptID, deptname


    Here, I want to load method for emp data and... Dept where dept does not contain data in double...

    For now... I used the cursor and in the same cursor, I'm loading data first dept table and then to the emp table.
    I use for dept, exceptional setting, which will manage a PK constraint violation error by doing nothing...

    in this way, there will be no duplicates... but it is not advisable because I 15,00,000 lines in the method table.

    Is there another way to do it?

    OK, I'd probably go with the method two insert, but as an alternative, here's a way to do it in a single insert:

    create table emp_info as
    select 1 empno, 'a' empname, 101 deptid, 'aaa' deptname from dual union all
    select 2, 'b' empname, 201 deptid, 'bbb' deptname from dual union all
    select 3, 'c' empname, 101 deptid, 'aaa' deptname from dual union all
    select 4, 'd' empname, 101 deptid, 'aaa' deptname from dual union all
    select 5, 'e' empname, 301 deptid, 'ccc' deptname from dual;
    
    create table emp (empno number primary key, empname varchar2(3), deptid number);
    
    create table dept (deptid number primary key, deptname varchar2(3));
    
    insert all
      WHEN rn = 1 THEN
           into dept (deptid, deptname)
           values (deptid, deptname)
      WHEN rn > 0 THEN
           into emp (empno, empname, deptid)
           values (empno, empname, deptid)
    select empno, empname, deptid, deptname, rn
    from   (select empno,
                   empname,
                   deptid,
                   deptname,
                   row_number() over (partition by deptid order by empno) rn
            from   emp_info);
    
      8 rows inserted
    
    commit;
    
    select * from emp;
    
         EMPNO EMP     DEPTID
    ---------- --- ----------
             1 a          101
             3 c          101
             4 d          101
             2 b          201
             5 e          301
    
    select * from dept;
    
        DEPTID DEP
    ---------- ---
           101 aaa
           201 bbb
           301 ccc
    

    You must test these two methods to see which is more efficient.

  • HP Ink Advantage 1515: How to scan several pages (continuous sweep) using HP Ink Advantage 1515

    Please help coz I want to scan several pages (continuous sweep) and saved in a PDF file.  How can I do for my model of 1515 ink advantage?  Hope you can answer.  Thank you

    Hello

    The HP Deskjet 1510 software click on scan a document or photo.

    Select PDF and make sure the option Show Scan preview is checked.

    Set the resolution to 300 PPI or lower and click Scan.

    Once the scan is completed, replace the page and click on the button "+" below the overview of scan to scan the next page, once you have finished click on save and the complete analytical work will be registered under a single PDF file.

    Kind regards

    Shlomi

  • How to load a jQuery plugin for use on BOARD?

    Hi people,

    I found a plugin to jQuery called "Pep" that looks like, it will be perfect for what I'm working on. It's a kinetic drag and drop tool, you can see some demos here.

    http://PEP.briangonzalez.org/demo

    I'm SO excited to get this work you wouldn't, but I'm pretty new to this game and cannot work out how to implement this plugin with EDGE.

    You can download the source for it here:

    https://github.com/briangonzalez/jQuery.PEP.js

    OK, so as I said, I have no idea how to make this work actually in my paper EDGE. Looking at the other EDGE documents that use the jQuery plugins, I tried to copy the structure in the following way...

    Extract all files in the package .js, I downloaded and put them in the folder of the "js" of my doc of EDGE.

    Then I tried to write the following code to the yepnop ABOARD to initialize (hopefully) the plugin. But it doesn't seem to work.

    () yepnope

    {

    Nope:]

    "js/grunt.js,"

    "jquery.pep.js,"

    'jquery.pep.min.css '.

    ],

    full: init

    }

    );

    If someone could help me with this, it would be surprising. In addition, I think that it is a tool that other people might find useful, so take a look and see what you think!

    Thanks for reading!

    Tom

    Please check this file:

    https://www.box.com/s/x91cv8pggdmrriarh74c

  • How to load several columns of data into Essbase

    Hello!

    I need to download a flat in Essbase data file, but this file contains data for each month in a separate column (Jan, Feb and March), it has several columns of data in the source file, while the DATA reversed Essbase data store is a fact with a column of the data table. So I'm stuck on the way in this case to map more than one column of data in the source file to column 1 of the target data.

    Thank you very much!

    When yo reversed your essbase data model in the RKM there will be an option called SEVERAL COLUMNS of DATA (no default value), this must be set to yes. Then, there are 2 other options that need to be addressed DATA_COLUMN_DIMENSION which is the name of the dimension that you load multiple values to in your case period. Then in the next option DATA_COLUMN_MEMBERS specify you a comma list of members separated... column data required i.e. Jan, Feb, Mar etc. Now when you reverse the model, you will have several column data members

  • How dynamically load data in target tables using as source files

    Hello

    My script needs a single interface to load data from 5 different files in five paintings of target using a single interface. All target tables have the same structure. It is possible to point to files variable source using ODI. But the same approach does not work with database tables. I get errors trying to make my table as dynamic target/source.

    Can anyone suggest anything. The last option would write a dynamic PL/SQL block in the KM. Other friends of suggestions?

    Kind regards
    Jay

    and not exists)
    Select 'X '.
    h. #PLAYGROUND. "v_tab_name"T ".

    have you provided the name of the resource with the quotes, if so please remove it and try.

    If you have provided the name of the variable, a v_tab_name and do not provide quotes. Can you please change the name of the variable to the capital, namely V_TAB_NAME and use the same in the data store too and please try again.

  • How to load Firefox version I was using before the update for Firefox 29? The Norton toolbar has worked in the last version, but not in Version 29.

    I've just updated to 29 of Firefox. Since the update the Norton Toolbar is no longer compatible. The Norton toolbar has worked in the last version of Firefox that I had installed. Is there a way to get back to the last version of Firefox where this toolbar is compatible and keep all the settings (favorites) in the old version I am reloading? All my passwords (99) are in the toolbar Norton Safe ID. Now I can not connect to many Web sites.

    Hello jimb01, yes norton supports only the stable versions of firefox and Firefox 29 you are using the beta version of the browser. You can download the normal version of firefox 28 of https://www.mozilla.org/firefox/channel/#firefox and install it on top of your current installation...

Maybe you are looking for