HFM as a Source and a target in a single application of FDM

Y at - it an adapter for FDM 9.3.1 that enables FDM to connect to HFM as a source and a target? What I want to do is to create an automated process to extract data from an application of HFM, re - map these data and load it into a second HFM application.

Hello

Unfortunately it is not. FDM views HFM/Essbase/Planning/Enterprise as target systems only.
There might be a way to do it through scripts / api... but nothing out of the box.

Thank you

Tags: Business Intelligence

Similar Questions

  • Query metadata ODI to find the source and the target table for Interface

    Hi Experts,

    Customer heading there source of EBS 11.5.10 in R12. They are BIApps ODI. 7952 version. Since then, all mappings there are customized they may not disturb on support of Oracle BIApps is concerned.
    Now, we need to know how many ODI mappings there source EBS is the 11.5.10 in R12 migration and we can only target mappings accordingly.

    So, please give me with entries below:

    (1) any request for metadata that will give me the information of the source tables table and target them in against an if-same interface that the source of the main interface is another interface.
    (2) what are the other stuffs that I need to look at from the point of view of the mapping changes when the source is upgrading.e.g. only change the source table is enough or I need to focus on other animals. I feel she's boiling down to create a separate source for R12 adapter.

    Kind regards
    Snehotosh

    First open the designer-> models and check which model has got the mapping of the eBS. Get this code with this TERRIBLE application

    SELECT count (distinct i_pop) of SNP_POP_COL
    where I_POP_COL in
    (
    Select i_pop_col in the SNP_POP_MAPPING where i_source_tab
    in
    (
    Select i_source_tab in the SNP_SOURCE_TAB where i_table in)
    Select i_table in the SNP_TABLE where I_MOD in
    (select i_mod in the SNP_MODEL where mod_name = "PUT_HERE_YOUR_NAME")
    )
    )
    );

    Will not consider some other influence (i.e. the procedure), it will be an indicator of average first level.

  • Photo and video capture in a single application QML

    Hello everyone

    Currently, I am learning to use the camera QML, and I already get to open the camera back, put a few cameraSettings and take a picture.

    Now, I would like to add functions of video to this same application. I mean, I want to add a photo/video toggle button and switch between photo and video modes. The thing is that I do not know how. I guess I need a second part of the camera, but the truth I have no idea how can I achieve this goal.

    I really appreciate your help and I hope you to let me know which is the approach you have taken to do what I want to do. All link tutorial or documentation is also wellcome

    Thanks in advance guys!

    BestCamera is to show you how to use the C cascading camera API, since it allows you to do some things (such as face detection and burst capture) which are not available in API waterfalls photo.

    You need not two objects from camera to switch between the modes of capture, just change the mode of the camera.

    One thing that fires people upwards sometimes is the fact you need approval from microphone to record video, that you need not simple images.

  • Save the PhoneListener and the FolderListener in a single application

    If I'm around all blackberry applications, when I get a phone call, I'm able to display a popup once the call is answered for example. But if I get an email, I'm not able to display any popup screen, even if I see the messagesAdded() get me fired and also the popupscreen is invoked as I reinforced with debugging.

    The mechanism that I use to view the popuscreen phone and Email is the same, but the event of phone works and not the event of enamel.

    Here is what I do

    AutoStart calls my main class

    public final class myMain {}
           
    {private myMain()
    try {}
    Phone.addPhoneListener (new ConcretePhoneListener());
    Store is Session.waitForDefaultSession () .getStore ();.
    store.addFolderListener (new ConcreteEmailListener());
    }
    catch (Exception e) {}
    //
    }
    }
       
    Public Shared Sub main (String [] args) {}
    PAP PimAssistantMain = new PimAssistantMain();
    }
    }

    In my ConcretePhoneListener(), this is how I invoke the popup screen

    SerializableAttribute public class ConcretePhoneListener extends AbstractPhoneListener {}
       
    private void somePrivateMethod() {}

    UiApplication.getUiApplication () .invokeLater (new Runnable() {}
    public void run() {}

    UiApplication.getUiApplication () .pushScreen (new PhonePopupScreen());

    }
    });

    }

    }

    the code above works, but

    / public class ConcreteEmailListener implements FolderListener {}
       
    private void somePrivateMethod() {}

    UiApplication.getUiApplication () .invokeLater (new Runnable() {}

    public void run() {}

    UiApplication.getUiApplication () .pushScreen (new EmailPopupScreen());

    }

    });

    }

    }

    the above code IS NOT working for some reason any in the sense that, when new email arrives, I don't see the screen like the one for the phone, the event popup not.

    In the EmailPopupScreen() and PhonePopupScreen(), I would go the PopupScreen and make sure that the screen is in the foreground by using the code below

    protected void onObscured() {}
    UiApplication.getUiApplication () .requestForeground ();
    }

    Can someone tell me first if I'm heading in the right direction and also explain this strange difference in the behavior for these 2 types of events and how the email event a popup screen

    First off let me say that I have NOT actually tried a screen on an email listener, so this might not work, but I might be able to help.

    First of all, to look for a couple of things

    UiApplication.getUiApplication ()...

    Do not forget that this gets a reference to the UiApplication who is running, not your application.  So if you run in the earpiece of the phone you are running in the phone, in the listener of e-mail application, you run in the messaging application.

    protected void onObscured() {}
    UiApplication.getUiApplication () .requestForeground ();
    }

    onObscured is called when the screen is covered by another screen.  If she does not, she will not be called.  Assume its display, the screen masking came from the same application which displays on the screen, then the requestForeground() will not do anything, because the Application is always in the foreground.  If the screen masking done from another application, then it is possible that this would actually hide the new screen.  I think that's why do you afterwards.

    These points side lets talk about why it works for the phone and not by e-mail.  Easy, I think.  The earpiece of the phone runs in the phone application, which of course is in the foreground when the phone is used.  That means the app phone is to put in the background when it finishes.  So if you press a screen in the foreground when executing the application phone will display, it could disappear - that's why I think that the use of the requestForeground() in the onObscured().

    However, the messaging application works in the background at the time of the invocation of the listener. Thus, while pushing the screen won't get on the screen.  So to get this screen, the application must be on the foreground.

    I hope that a shed.

    Now, I would say, rather than push these screens using the actual RIM applications, skip this treatment to your own application, and then you have the control over the treatment of foreground/background.  Probably the best way to proceed is to use a Global event, extract the data you want the listener, talk to your application, and then deal with this in your own application.

    Edit: My apologies for this suggestion of duplication - I just changed when RexDoug

  • Source and target data store mapping query

    I have to get the source and mapping target in ODI interface.

    Which table will I hit to get mapping information.

    E.g.

    Interface: INT_SAMPLE

    Data store: Source_DataStore with columns (cola, colb, teachers) Target_DataStore with columns (cola, colb, cold)

    Well mapping cover the QuickEdit tab and expand the field of mapping mapping is so

    Source_DataStore.Cola = Target_DataStore.Cola

    Source_DataStore.colB = Target_DataStore.colB



    Now, I want to get mapping information above as well as the name of the interface and the rest of the column that are not mapped using SQL (is it possible to trick ODI for mapping).

    Hi Prashant da Silva,

    Are you looking for an application to run on the repository?

    If so, it can help:

    select I.POP_NAME INTERFACE_NAME, ds.ds_name DATA_SET
          , s.lschema_name SOURCE_SCHEMA, NVL(S.TABLE_NAME, S.SRC_TAB_ALIAS) SOURCE_TABLE
          , mt.lschema_name TARGET_SCHEMA, I.TABLE_NAME TARGET_TABLE, c.col_name  TARGET_COLUMN, t.FULL_TEXT MAPPING_CRITERIA
      from SNP_POP i, SNP_DATA_SET ds, SNP_SOURCE_TAB s, SNP_TXT_HEADER t, SNP_POP_MAPPING m, SNP_POP_COL c, SNP_TABLE trg, snp_model mt
      where I.I_POP = DS.I_POP  (+)
        and DS.I_DATA_SET = S.I_DATA_SET (+)
        and T.I_TXT (+) = M.I_TXT_MAP
        and M.I_POP_COL (+) = C.I_POP_COL
        and M.I_DATA_SET = DS.I_DATA_SET (+)
        and C.I_POP (+) = I.I_POP
        and I.i_table = trg.i_table (+)
        and trg.i_mod = mt.i_mod (+);
    

    Just add a filter on UPPER (I.POP_NAME) = UPPER ('').

    Kind regards

    JeromeFr

  • AD, used as a trusted source and target system

    Hello

    I have a requirement to use AD as a trusted source and the target system the zero days and 1 for a transitional period.  We have 18 applications to integrate with OAM for SSO.  Currently, the authentication and authorization of these applications are made via AD.  However, the client wants to move to the use of LDAP in goal SSO.  The first phase includes 3 apps on the 18 apps.

    Day zero, I use AD as a source of confidence to push users to IOM.  Then, I run AD as a target system to link the user to their existing AD accounts.  Their ad groups will also be reconciled by IOM.

    Because there will be a transition period and the customer would not have to change the process of assistance to creating accounts AD (for internal and external users), they asked that we continue to allow accounts AD to reconcile with IOM in the trusted source and target system.

    I have not used AD connector as a reliable source.  I intend to source AD done trust reconciliation to run first, then the task of reconciliation system AD target to run then.  It's the same AD connector.

    This can work as long as the customer wishes until they want to spend to IOM for the creation of the user and accounts AD commissioning through the access policy.

    Is this sound ok you?  There is a "witch hunt" I didn't think?

    Thank you

    Khanh

    Yes, you can run the recon trust first and get all the identity created by IOM.

    Later, you can run the Scheduler for recon target for linking AD accounts with user profile of IOM.

    Note: There is a field in AD IT resource in need of update if you want to switch between the target and recon trust.

    Research of configuration:

    This parameter contains the name of the lookup definition that stores configuration information used during the reconciliation and commissioning.

    If you have set your target system as a resource target, then enter Lookup.Configuration.ActiveDirectory.

    If you have set your target system as a reliable source, then enter Lookup.Configuration.ActiveDirectory.Trusted.

    Default value: Lookup.Configuration.ActiveDirectory

    ~ J

  • Auto b & w of the mapping of column source and Targte

    Hello

    Can you auto column mapping between the source and the target based on the names of column or column in ODI 11 g physical position while developing an Interface?

    Best regards

    Muhammad

    Hi Muhammad,
    A lot of learning at the moment! :-)
    Auto-Colonne mapping is by name, you can right click on the target data store and select 'Repeat Auto mapping' If you denied it earlier.
    If you have disabled, you can re-enable ODI->-> automatic mapping of user settings.

    Rgrds
    Alastair

  • Fields "Synonym of entity source" and "Target entity synonym" for?

    Hello

    He is a newbie question.

    Is someone can you please tell me what that fields "Entity synonym Source" and "Synonym of target entity" in the dialog box properties of relationship are for? They are drop down boxes and look as if you should be able to select from the list of synonyms put in place for the entity in the properties of the entity dialog box.

    Thanks in advance.

    John

    Using SQL Developer Data Model Version 4.1.1.888 on Windows 7 Home premium 64-bit.

    Hi John,.

    If you right-click on an entity on the diagram object, then select Create Synonym in the drop down below, another entity object will be added to the diagram of the same entity.

    The fields "Synonym of entity Source" and 'Target entity synonym' in the relationship properties dialog box allow you to specify which of these multiple representations is connected to the relationship on the diagram.

    David

  • Procedure of ODI with slow performance (SOURCE and TARGET are different Oracle databases)

    Hi experts,

    I have an ODI procedure but its market with slow performance (SOURCE and TARGET are different Oracle databases), you can see below.

    My question is:

    It is possible write Oracle BULK COLLECT at the 'command on the target' (below)? or

    There is a KM of ODI that perform this task below in a quick way? If so, what KM can you guys suggest me?

    I found 'Oracle Append (DBLINK) control' but I try to avoid creating the dblink database.

    ===============================================================================

    * COMMAND ON the SOURCE (* technology: ORACLE * logic diagram: ORACLE_DB_SOURCE):

    SELECT NUM_AGENCIA, NUM_CPF_CNPJ, NOM_PESSOA

    < % = OdiRef.getSchemaName ("D") % >. < % = odiRef.getOption ("P_TABELA") % >

    ===============================================================================

    *ON the COMMAND TARGET (* technology: ORACLE * logic diagram: ORACLE_DB_TARGET):

    BEGIN

    INSERT INTO DISTSOB_OWNER. DISTSOB_PESSOA (NOM_PESSOA, NUM_CPF_CNPJ, FLG_ATIVO)

    VALUES ('#NOM_PESSOA', '#NUM_CPF_CNPJ', THE FROM ');

    EXCEPTION WHEN DUP_VAL_ON_INDEX THEN

    NULL;

    END;

    ===============================================================================


    Thank you guys!

    Please use SQL for SQL command Append KM... You can delete the unnecessary steps in the KM.E.g. fi you won't create I$ table, control flow etc, then you can remove related steps.

    Please try with that.

  • Partition member in source and target must be the same

    Hello gurus, I have a cube with partitions and each partition is to have about 10 dimensions.

    A dimension, I became a member and wrote a rule for this member in the partition of the source, I have to take the same Member in the score target to write the rule.

    No, you don't have to have the same set of members on both sides.

    If you have...

    A, B, C, D

    .. .in the source, and...

    A, B, C

    .. .in the target, you have two options.

    First option, live with the warnings of validation "incompatibility of cell count" and do nothing to do.  Then no data will appear in the target for had 'and had data' will be not only be pushed in any of the partition.

    Second option, card would be "one of the 'A', 'B' and 'C'."

  • FDM to connect to a relational source and target

    I'm new to this tool. I have a few basic questions. I based my research, but could not find a clear answer.

    Can I connect to a relational table as source and target for an application of FDM. Relational source isn't eBS or other applications, just a relational table. I would like to load the same data from a relational table to another table using FDM. I'm looking at the wrong tool? Should which adapter I use? ERPI source adapter is? Which adapter target?

    Can someone please you suggest? Thanks in advance.

    Hello

    If you're new to this tool, you should know that FDM won't 11.1.2.4.

    It is replaced by FDMEE which is already available in 11.1.2.3.

    In all cases, you can extract data from relational db by using a script of integration. FDM doesn't load data to a target database not Hyperion EPM but you he could get it works using the custom script.

    Concerning

  • Database of waiting on a Source and target different endian formats

    Hello

    I have one familiar with the case where the source and target servers are different endian formats. I want to implement a 11g Data Guard in this environment. How can I do to implement the problem of different endian formats.

    Thank you

    As indicated in the documentation you quote, Data Guard is not possible when the main and backup databases are on platforms with a different endian format. If the endian format is the same, heterogeneous platforms may, or may not, be supported. The final documentation seems to be MOS Note 413484.1 (for physical standby) and 1085687.1 (for logical standby).

  • TABLE import in the source and target OLAP and OLTP Informatica records

    In the designer to map every time I import from my source OLTP and OLAP source table is displayed in its own folder named instance imported from. It is a problem that when I migrate my lower the workflow repository is always looking ofr these sources and targets. How to import or migrate there relative OLTP and OLAP source and target material in the table designer.

    Appreciate the help.

    Hi, before you migrate you can choose options as explained below

    1. create the same global name of connection for ODBC OLAP and OLTP and then import the tables to informatica

    2. other is, after you import the source tables with any ODBC connection name, you can change the name of the file as below
    a. check the table and in the Source Analyzer workspace to modify the table. In the table , tab click on rename
    (b) change the name of the data base by "OLAP" or 'OLTP' depending on your source.
    c. the source table is automatically moved to the folder OLAP and OLTP

    3. If the table is already existing in OLTP or OLAP, you can use the reuse or replacement of options when importing new mappings during the migration.

    Just to test this scenario once and applies for all tables in the source. I do the same during the migration

    Hope this helps

  • Source and target tabs in the procedure

    I'm trying to create a procedure to insert data into a table.

    My order on the tab target:

    INSERT INTO insert_table

    My order on the Source tab:

    SELECT BATCHNUMBER,' it, COUNT (*) IN table_source WITH BATCHNUMBER, 'C '.

    I selected the logic diagrams correctly in the source and target tabs. I get the following error...


    java.sql.BatchUpdateException: ORA-00926: lack of keyword VALUES

    What would my orders in the target and Source tabs?

    -app

    For the string type data please include in single quotes, for example, if C is varchar2

    INSERT INTO TRGT_TABLE VALUES (#BATCHNUMBER,'#C',#COUNT) 
    

    Please try this

  • LKM and serving IKM of ORACLE and ORACLE target Source

    Hi gurus,

    My source and target is same oracle10g IE...

    I created two schemas in oracle 10g SAY schemaA and SchemaB... in the two schemas, I created a table...


    Topology Manager - physical structure - technical - oracle-, I have mentioned the two schemas and tested the connection and works fine...


    The components of knowledge that I need to use to move the data from schemaA table schemaB table...


    It is an example of data... There is not in bulk or incremental data...



    Thank you

    Deva

    Published by: user2053325 on August 30, 2010 03:08

    LKM SQL FOR ORACLE (ideal for any source of Oracle database, works very well for Oracle also)

    IKM SQL COMMAND APPEND (for the inserts only) (OR) IKM ORACLE INCREMENTAL UPDATE (Insert and Update)

    CKM ORACLE [if flow control is set to Yes in revenge for check constraints, non-Null]

Maybe you are looking for

  • Recovery disc for my Satellite P10

    can someone help me. I try to use my recovery on my p10 disks but it formats it closed so far and then just down. It happens at different stages each time but the way he began to get into shape I have no pc so if anyone can help I love is forever

  • Satellite C650 will not run recovery

    Hi, hope I can be helped here, I have a satellite C650-166, there lack of battery while doing a windows update standard, now he used to re boot. I fear not the laptop to factory settings, to rest that I intended to do anyway. I followed the instructi

  • How can I disable tapping on Satellite A210-103 with a Synaptics touchpad

    Hello How can I disable tapping an A210-103 with a Synaptics touchpad.Tapping means to me, that when I touch the touchpad of the notebook translate under circumstances like a mouse click, on which I don't want. In the settings of the Germans, I found

  • Any way to induce latency for VISA TCPIP

    I'm trying to debug the behaviour on my program with very poor connectivity networks, but I can't find a way to get poor connectivity I want. Anyone know of any kind of VISA or windows debugging tool, where I can intentionally introduce latency spike

  • All security updates fail with the error A 80071, 91 code

    Hello! System information: Windows 7 Ultimate 64-bit, i7-720QM, 6 GB RAM, 256 GB SSD, ATI 4670 [Dell Studio XPS 1645] Background: UAC was arrested. Turn on UAC stop my gadgets to work [another thread on these forums...]. A week ago, I got speech reco