Targets to FDM

Hi,
Please confirm if there can be any non-hyperion tools used as target to Hyperion Financial Data Quality Management?
If Yes what are those?

As Tony said, a lot is possible. If you know FDM welll enough, you can integrate FDM with virtually any target system to load data.
I'm not sure how a list of targets would help you because the question is not which systems would be possible targets for FDM. Instead you should ask yourself which processes would benefit from a mapping tool like FDM. The reason for this is that FDM is just one of the many tools to do mappings and it really depends on the process you are looking at. With Hyperion targets, this is quite obvious, you could probably also load to similar tools which are non-Oracle, but there might definitely be other options by other vendors.
FDM's core strenghts are mapping capabilities, auditability of data and processes and a great user interface. You need to be a little creative here and I'm sure you will come up with a bunch of ideas.

Similar Messages

  • Enable Target Description FDM TB Reports

    Hi,
    I am working on one of my clients specifications where in we need to fetch Target account description for the mapped accounts,I tried to modify the sql statement in workbench but didn't meet with success. Has any body come across such similar requirement and have successfully established this ?.,If yes then kindly let me know how to go about with this.
    Thanks
    Rgds
    NPM

    Hello Friend,
    Thanks for the reply, I already know this as i said i did several trial and errors and tried to modify the existing report and get the field under details section i.e.,txttargAcctDesc but this did not work. I know that i have to enable this in the sql script statement attached to this report which i did but no success i am attaching as it is script can you please identify where the exact edit i should make to have this working...
    Report : TB Current Location, By Target Entity-Acct (Cat,Per)
    SELECT
    tPOVPartition.PartName AS PartitionKey,
    vData.EntityX AS SrcCenterKeyX,
    1 AS TargAcctIndex,
    'ALL' AS TargAcctGroup,
    tDimAcct.TargAcctDesc AS TargAcctDesc,
    vData.AccountX AS SrcAcctKeyX,
    vData.Desc2 AS TargAcctDesc,
    vData.Account AS SrcAcctKey,
    vData.Entity AS SrcCenterKey,
    vData.Desc1 AS SrcAcctDesc,
    vData.Amount AS SrcAmount,
    tPOVCategory.CatName,
    vData.PeriodKey,
    tPOVCategory.CatKey,
    tPOVPartition.PartCurrencyKey
    FROM
    tPOVPartition
    INNER JOIN (tPOVCategory INNER JOIN vData ON tPOVCategory.CatKey = vData.CatKey)
    ON tPOVPartition.PartitionKey = vData.PartitionKey
    WHERE
    ((TO_CHAR(vData.PeriodKey, '|sqldateformat|')='~Period~')
    AND ((tPOVCategory.CatKey)=~CatKey~)
    AND ((vData.PartitionKey)=|PartitionKey|)
    AND ((vData.CalcAcctType)>0))
    ORDER BY
    vData.EntityX,
    1,
    vData.AccountX,
    vData.Account,
    vData.Entity

  • Whats the difference between ODI and FDM

    Hi Everyone,
    Can Anyone explain the diff between FDM and ODI ?
    Thanks!
    Vaneet

    ODI - Full extract, load and transform tool for moving data from heterogenous data sources to hetergenous targets.
    FDM - A workflow based tool for users to import data from a file or database, create mappings, validate the mappings and then move the data in Hyperion EPM targets.
    Where FDM is a predominantly user based interface that allows users to monitor and audit the progress of data (especially things like GL data), ODI is a significantly more technical tool and would - in all likelehood - be automated and potentially managed and monitored by the IT department.
    geeo

  • How can I load data with Scripts on *FDM* to a HFM target System????

    Hi all!
    I need help because I can´t find a good guide about scripting on FDM. The problem I have is the next one.
    I have on mind to load my data with data load file in FDM to a HFM target system, but I would like to load an additional data using an event script, ie after validate. I would need any way to access to HFM system though FDM Scripts, is it possible??
    If so, It would be wonderful to get a data from HFM with any Point of View, reachable from FDM Scripts in order to load or getting any data.
    I´ve looking for a good guide about scripting in FDM but I couldn´t find any information about accessing data on HFM target system, does it really exist?
    Thanks for help

    Hi,
    Take a look at the LOAD Action scripts of your adapter. This might give you an idea.
    Theoretically it should be possible to load data in an additional load, but you need to be very careful. You don't want to corrupt any of the log and status information that is being stored during the load process. The audit trail is an important feature in many implementations. In this context it might not be a good idea to improve automation and risk compliance of your system.
    Regards,
    Matt

  • How do I consolidate in FDM AFTER all files load to target?

    Hi,
    We are using FDM to import and export out to HFM forecasting data. The files are sent via ETL to the OpenBatch folder and then I am using parallel processing to import, validate, and consolidate the files to the target system, which is HFM. The problem is the performance. As each file is loaded using the batch loader script, it loads and consolidates each file as each file processes. I would like to find a way to load and export all files FIRST to HFM - and then when the last file is encountered (the 12th file), I would like to run a consolidate on the file to HFM so that the consolidation will consolidate all at once and help save some time. Here are the steps I would like to accomplish:
    1. Import, Validate, and Export the first 11 files to HFM
    2. Import, Validate, Export, and Consolidate the 12th file to HFM - the idea is that all previous 11 files will consolidate atone time instead of the out of the box way using the standard BatchLoader script.
    Does anyone know HOW I can make this happen? Out of the box this is not possible without some major script customization. Could someone please give me some sort of idea where I can make this happen? I really appreciate the help. Below is the standard Batch Loader script I am using and I would like to somehow customize:
    Sub webBatchStdParallel()
    'Oracle Hyperion FDM CUSTOM Script:
    'Parallel Processing
    'STANDARD Batch Parallel Processing
    'Declare Local Variables
    Dim lngProcessLevel
    Dim strDelimiter
    Dim blnAutoMapCorrect
    Dim lngParallelProcessCount
    Dim strLoadBalanceServerName
    Dim BATCHENG
    Set BATCHENG = CreateObject("upsWBatchLoaderDM.clsBatchLoader")
    BATCHENG.mInitialize API, SCRIPTENG
    'Initialize variables Variables
    lngProcessLevel = 10                     'Up-To-Consolidate
    strDelimiter = "_"                         'File Name Delimiter
    blnAutoMapCorrect = True                    'Auto Map Correction is On
    lngParallelProcessCount = 2                    'Number of Parallel Processes (Should equal # of Processors)
    strLoadBalanceServerName = "Everest0555"     'Load balance server for parallel process
    'Create the file collection
    Set BATCHENG.PcolFiles = BATCHENG.fFileCollectionCreate(CStr(strDelimiter))
    'Execute a Standard Parallel batch
    BATCHENG.mFileCollectionProcessParallel BATCHENG.PcolFiles, CLng(lngProcessLevel), CLng(lngParallelProcessCount), CStr(strLoadBalanceServerName), , CBool(blnAutoMapCorrect)
    End Sub

    Hi,
    Thanks for all the input so far, I really appreciate it. I have made a lot of progress and added code to the batch loader script.
    Again, What I am trying to do is load 12 forecasting files (Periodic) for each month through FDM and then load to HFM. After the load, I want to kick off the consolidation process to the target system (HFM) AFTER the data has been loaded through FDM to help speed up time by running the consolidation all at once in HFM instead of by each file one by one in FDM. Here is some more info:
    1. I have 12 files loaded to the OpenBatch Folder - Each file is a monthly file.
    2. The 12 files (Starting from November 2010 - Oct 2011) are exported and loaded to HFM. No consolidation takes place.
    3. I want to add a procedure AFTER the load to run consolidation on the last file loaded (Oct. 2011) in HFM so the consolidation will kick off in HFM and consolidate the remaining months in HFM instead of in FDM. I tested manually and the time is increased 10-fold.
    4. I have potentially identified the "ActConsolidate" Method could be used to run the consolidation in the target system. In my code you can see that I have added the ActConsolidate call AFTER the batch load. I was hoping this would run the consolidation directly in HFM by calling the consolidation in HFM. However, when I run the script I keep getting the following error:
    "91 - Object variable or With block variable not set At Line: 52" Apparently I am not calling or setting the object up correctly. Am I missing something? I sincerely appreciate everyones help and will promise to give big kudos to anyone who can help me along. I am almost there. THis is very difficult for me and I know it's a tough scenario because no one seems to have a solution posted anywhere on this forum.
    Below is my code:
    Sub webBatchStdParallelFcst()
    'Oracle Hyperion FDM Custom Script:
    'Created By:     
    'Date Created:     10/4/2010 9:27:32 AM
    'Purpose:
    'STANDARD Batch Parallel Processing and consolidation - Foresacting
    'Declare Local Variables for Batch Processing
    Dim lngProcessLevel
    Dim strDelimiter
    Dim blnAutoMapCorrect
    Dim lngParallelProcessCount
    Dim strLoadBalanceServerName
    Dim BATCHENG
    Set BATCHENG = CreateObject("upsWBatchLoaderDM.clsBatchLoader")
    BATCHENG.mInitialize API, SCRIPTENG
    'Declare Local Variables for consolidation
    Dim strLoc
    Dim strCat
    Dim strStartPer
    Dim strEndPer
    Dim CONSOLENG
    Set CONSOLENG = CreateObject("upsWBlockProcessorDM.clsBlockProcessor")
    'Initialize variables for Batch Processing
    lngProcessLevel = 8                     'Up-To-Load
    strDelimiter = "_"                    'File Name Delimiter
    blnAutoMapCorrect = True               'Auto Map Correction is On
    lngParallelProcessCount = 2               'Number of Parallel Processes (Should equal # of Processors)
    strLoadBalanceServerName = "everest3105"     'Load balance server for parallel process
    'Initialize ActConsolidate Variables
    strLoc = "FORECAST"
    strCat = "FDMPLAN"
    strStartPer = "Oct - 2011"
    strEndPer = "Nov - 2011"
    'Create the file collection
    Set BATCHENG.PcolFiles = BATCHENG.fFileCollectionCreate(CStr(strDelimiter))
    'Execute a Standard Parallel batch
    BATCHENG.mFileCollectionProcessParallel BATCHENG.PcolFiles, CLng(lngProcessLevel), CLng(lngParallelProcessCount), CStr(strLoadBalanceServerName), , CBool(blnAutoMapCorrect)
    'Execute Consolidation on Target System
    CONSOLENG.ActConsolidate strLoc, strCat, strStartPer, strEndPer
    End Sub
    However, I am getting the following error: "91 - Object variable or With block variable not set At Line: 52" I don't understand, the objects appear to be set up properly.

  • FDM Different Target Application

    Hi,
    We have a existing FDM application for Hyperion Enterprise target application, one location. However, we have added new Hyperion Enterprise Application since and now need a new mapping/feed to second application. Is it possible to create new location in FDM and which loads to new Enterprise Application or would have to create new FDM application.
    I know there is an Target Adaptor on the location section and it is currently set to none. Not sure if this can be utilize.
    Any help would be appreciated.
    Thanks,

    Hi 821254,
    You can configure adapters from FDM web client or FDM workbench.
    There's some brilliant documentation at the following link:
    http://www.oracle.com/technetwork/middleware/performance-management/documentation/index.html
    I would recommend the following reads (Assuming you are running FDM 9.3.x - If your running a different version of FDM you'll find similar documents with similar titles):
    Go to Hyperion Enterprise Performance Management System Release 9.3.x -> View library
    Go to Installation and Backup tab ->
    Download: Hyperion Financial Data Quality Management Readme.pdf (Import correction note on importing adaptors)
    Download: Hyperion Financial Data Quality Management Installation Guide.pdf (Chapter 10 - Configuring Adapters)
    Go to Data Management tab ->
    Download: Financial Data Quality Management Adapter for Hyperion Enterprise Release G4-G Readme.pdf (Import correction note on importing adaptors)
    Quoted from Hyperion Financial Data Quality Management Installation Guide.pdf:
    About Integration with Target Applications
    Integration settings are used to point FDM applications to target applications. The target application is the application where data is loaded. Hyperion Enterprise, Essbase, Oracle's Hyperion® Planning – System 9, and Financial Management are examples of valid target applications.
    One FDM application can load to an unlimited number of target applications. For example, some locations in the FDM application can load to Hyperion Enterprise, while other locations load to Financial Management. In addition, the FDM application can be configured to load to multiple applications of one product (two or three Essbase applications, for example).
    gluck,
    -David

  • FDM data target system load error

    Hi,
    I am trying to Load the data from FDM11.1.1.3 to Planning11.1.1.3
    I am using Essbase Adapter ES11X-G4-E,I imported data from a csv file ,it is imported success,and Export file was also successfully created,
    My question : after this I am getting the error message in another window Target system laod , Error:Invalid use of null
    Can you please anybody tell me what is the reasons for getting this error ?
    Regards,
    SV

    One of the values on the Hyperion Essbase Integration Setup tab of the adapter is currently empty. Perform the following
    a) Right-Click on the Essbase adpater in the workbench and choose Configure
    b) Click on the Hyperion Essbase Integration Setup tab
    c)Click on the Load/Check button
    d) Verifiy that the List1, List2, and List3 boxes are not empty. These must have values:
    List1: 0 -Load
    List2: opt1
    List3: opt1

  • FDM mutiple target Application

    Hi
    we have Integrated FDM with Planning Application  . In Planning we have 2 plan types plan1 and plan2
    I had imported Essbase Adaptor and integrated with Plan1 ( in Plan1 we have 4 custom dimensions only )
    and for Paln 2 I had copied Plan1 Adaptor only ( in plan 2 we have 8 custom dimensions )
    In plan 2 Workbench client when i checked in Configure - > Dimension  i am able to see all  8 custom dimensions
    But i am not able to see all 8 custom dimension of Plan 2  In Webclient . I am able to see 4 custom dimension which are there in plan1 Only
    Can any one guide me on this
    Thanks

    Hi,
    1. change the adapter by administrattion - > Application settings to plan2 and check for the dimensions.
    2. If you creted any locations for the plan1 then check if the location which you selected.
    Thanks,
    Ravi.

  • Can FDM handle more than one year at a time?

    Hi,
    I'm trying to load a multi-load file through FDM with the target being an Essbase cube and the source being a text file. The file is for 36 months which crosses 3 years. The problem is Oracle support is saying FDM can only handle one calendar year at a time and we need to load 3 separate files.
    The file imports and validates ok. And the export only pushes data to the first year '2010' but it doesn't error out.
    Any ideas?

    If you use an excel file as the source, you can load all 36 periods.
    You can also modify the adaptor to support this action but I would caution you that doing so will cause support to no longer support your application without requiring you to import a non customized adaptor. This also has consequences for when upgrading.
    Let me add, FDM support is the best in the business. I have never had a situation where what they told me was incorrect. What you are trying to accomplish would be a custom solution that should be implemented by an experienced FDM resource that understands the impact of the customization.
    Edited by: TonyScalese on May 6, 2010 3:10 PM

  • How to add or subtract in FDM

    Hi,
    I am developing a FDM application and I am quite new to it. Need a help on one of the operation that I need to do in FDM.
    Source: ESSBASE ASO application
    Target: ESSBASE BSO applcation.
    I will be getting file from ASO cube which contains data corresponding to different Management entities.
    Now I have to load this data to a BSO cube after performing some operations in FDM ..eg. I am required to add up data corresponding to few Management Entities and than load it to BSO cube by applying some mappings. In another scneriao I am required to subtract the data corresponding to two management entities and than load it to BSO cube. there are 10-12 different cases like this in the file.
    Would appriciate your help on this. How this can be achieved?

    Please close this thread as another one asking the same question is already being progressed
    adding and subtracting data in FDM while loading

  • FDM Excel Import Issue - Data not loading.

    I cannot get an excel mappping table to load to FDM. I am working on the Entiy dimension. I noticed a few things when trying to trouble shoot this. If you delete a record, the excel file will load that one entity back to the mapping table with the changes from the excel file. Also, if I delete the table and load a new mapping table with excel it will add the first record. The only thing that changes on the new load is the data key. I could not find anything in the Oracle forum on this.
    When you manually load this data you do not add the sequence number, which seems to be always zero , the data key, which seems to be incrementing itself some how(but not sequentially) , and the partion key and dimname , which appear to not change. I was assuming that the issue was in the way I was adding this other data. I am obviiously new to FDM, so any help would be much appreciated. Thanks!

    I am facing similar issue.
    I am trying to map ICP Entries using an excel file.
    I have made 2 mapping (explicit) entries, manually and exported it in Excel and then added all the Mappings in the same file, in proper format. when I am importing, I am not getting any error but the mapping is not getting updated and the new entries are also not getting added. so Ideally no Change in the tDatamap table.
    Environment details: FDM Version 11.1.1.3 is getting used. Target App is Essbase 11.1.1.3. able to connect to Essbase, no issues with connectivity.
    Has anyone face this issue.

  • GL data Import using Adapters in FDM

    Hi All,
    I am trying to import GL data using the below adapters, I have an Essbase application created to accept the data. I previously imported a text file into Essbase and that worked perfectly.
    Source Adapter :ES9x-G4-C
    Target Adapter :EBS-FIN-B
    FDM version :11.1.1.1.00
    1) my Integration settings in workbench are valid
    2) control tables in FDM web are valid
    3) I created an Import group and set the file Type to adapter then specified to Source adapter as EBS-FIN-B.
    What are the next steps as my application is not IMPORTING.
    Thanks
    K

    Hello,
    All software available from Oracle to download is on their eDelivery site: http://edelivery.oracle.com
    If software is not listed there that you need; then you will need to create a Non-Technical SR for media delivery.
    Also please keep in mind that there is no EBS adapter compatible with FDM 9.3.1 .... please review the compatibility matrix at the end of each FDM ReadMe.
    Thank you,

  • GL data Import into Hyperion Essbase using Adapters in FDM

    Hi All,
    I am trying to import GL data using the below adapters, I have an Essbase application created to accept the data. I previously imported a text file into Essbase and that worked perfectly.
    Source Adapter :ES9x-G4-C
    Target Adapter :EBS-FIN-B
    FDM version :11.1.1.1.00
    1) my Integration settings in workbench are valid
    2) control tables in FDM web are valid
    3) I created an Import group and set the file Type to adapter then specified to Source adapter as EBS-FIN-B.
    What are the next steps as my application is not IMPORTING.
    Thanks
    K

    Hello,
    All software available from Oracle to download is on their eDelivery site: http://edelivery.oracle.com
    If software is not listed there that you need; then you will need to create a Non-Technical SR for media delivery.
    Also please keep in mind that there is no EBS adapter compatible with FDM 9.3.1 .... please review the compatibility matrix at the end of each FDM ReadMe.
    Thank you,

  • 11.1.2.1 execute dataload error in erpi and FDM

    Hi
    I met a critical problem when execute dataload in erpi using classic method.
    there are data in E business suite, but I don't know why I can't pull data from EBS.
    also I execute dataload using FDM method, the import step in FDM yields an error: "error creating database link".
    could you help me to find the problem?
    regards,
    Samantha
    the error message please refering this:
    java.lang.Exception: ERROR: Drill Region was not created/updated. No valid data rows exist in TDATASEG_T for Process ID: 14
    ERPI Process Start, Process ID: 14
    ERPI Logging Level: DEBUG (5)
    ERPI Log File: C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\1\/aif_14.log
    Jython Version: 2.1
    Java Platform: java1.4.2_08
    COMM Process Periods - Insert Periods - START
    COMM Process Periods - Insert Periods - END
    COMM Process Periods - Insert Process Details - START
    COMM Process Periods - Insert Process Details - END
    LKM EBS/FS Extract Type - Set Extract Type - START
    LKM EBS/FS Extract Type - Set Extract Type - END
    LKM EBS/FS Extract Delta Balances - Delete Obsolete Rows - START
    LKM EBS/FS Extract Delta Balances - Delete Obsolete Rows - END
    LKM EBS/FS Extract Delta Balances - Load Audit - START
    LKM EBS/FS Extract Delta Balances - Load Audit - END
    COMM End Process Detail - Update Process Detail - START
    COMM End Process Detail - Update Process Detail - END
    LKM EBS/FS Extract Type - Set Extract Type - START
    LKM EBS/FS Extract Type - Set Extract Type - END
    LKM EBS/FS Extract Delta Balances - Delete Obsolete Rows - START
    LKM EBS/FS Extract Delta Balances - Delete Obsolete Rows - END
    LKM EBS/FS Extract Delta Balances - Load Audit - START
    LKM EBS/FS Extract Delta Balances - Load Audit - END
    COMM End Process Detail - Update Process Detail - START
    COMM End Process Detail - Update Process Detail - END
    EBS/FS Load Data - Load TDATASEG_T - START
    Import Data from Source for Period '2011年八月'
    Monetary Data Rows Imported from Source: 182
    Total Data Rows Imported from Source: 182
    EBS/FS Load Data - Load TDATASEG_T - END
    COMM Update Data - Update TDATASEG_T/TDATASEGW - START
    Warning: Data rows with zero balances exist
    Zero Balance Data Rows Deleted: 8
    Processing Mappings for Column 'ACCOUNT'
    Data Rows Updated by 'DEFAULT' (LIKE): 174
    Processing Mappings for Column 'ENTITY'
    Data Rows Updated by 'DEFAULT' (LIKE): 174
    Processing Mappings for Column 'ICP'
    Data Rows Updated by 'DEFAULT' (LIKE): 174
    Processing Mappings for Column 'UD1'
    Data Rows Updated by 'Custom1' (LIKE): 174
    Processing Mappings for Column 'UD2'
    Data Rows Updated by 'Custom2' (LIKE): 174
    Processing Mappings for Column 'UD3'
    Data Rows Updated by 'Custom3' (LIKE): 174
    Processing Mappings for Column 'UD4'
    Data Rows Updated by 'Custom4' (LIKE): 174
    Processing Mappings for Column 'UD5'
    Data Rows Updated by 'Value' (LIKE): 174
    Warning: Data rows with unmapped dimensions exist
    Data Rows Marked as Invalid: 174
    Warning: No data rows available for Export to Target
    Total Data Rows available for Export to Target: 0
    COMM Update Data - Update TDATASEG_T/TDATASEGW - END
    COMM End Process Detail - Update Process Detail - START
    COMM End Process Detail - Update Process Detail - END
    EBS/FS Load Data - Load TDATASEG_T - START
    Import Data from Source for Period '2011年九月'
    Monetary Data Rows Imported from Source: 193
    Total Data Rows Imported from Source: 193
    EBS/FS Load Data - Load TDATASEG_T - END
    COMM Update Data - Update TDATASEG_T/TDATASEGW - START
    Warning: Data rows with zero balances exist
    Zero Balance Data Rows Deleted: 69
    Processing Mappings for Column 'ACCOUNT'
    Data Rows Updated by 'DEFAULT' (LIKE): 124
    Processing Mappings for Column 'ENTITY'
    Data Rows Updated by 'DEFAULT' (LIKE): 124
    Processing Mappings for Column 'ICP'
    Data Rows Updated by 'DEFAULT' (LIKE): 124
    Processing Mappings for Column 'UD1'
    Data Rows Updated by 'Custom1' (LIKE): 124
    Processing Mappings for Column 'UD2'
    Data Rows Updated by 'Custom2' (LIKE): 124
    Processing Mappings for Column 'UD3'
    Data Rows Updated by 'Custom3' (LIKE): 124
    Processing Mappings for Column 'UD4'
    Data Rows Updated by 'Custom4' (LIKE): 124
    Processing Mappings for Column 'UD5'
    Data Rows Updated by 'Value' (LIKE): 124
    Warning: Data rows with unmapped dimensions exist
    Data Rows Marked as Invalid: 124
    Warning: No data rows available for Export to Target
    Total Data Rows available for Export to Target: 0
    COMM Update Data - Update TDATASEG_T/TDATASEGW - END
    COMM End Process Detail - Update Process Detail - START
    COMM End Process Detail - Update Process Detail - END
    COMM Update YTD Amounts - Update YTD Amounts - START
    COMM Update YTD Amounts - Update YTD Amounts - END
    ODI Hyperion Financial Management Adapter Version 9.3.1
    Load task initialized.
    LKM COMM Load Data into HFM - Load Data to HFM - START
    Connecting to Financial Management application [EEHFM2] on [taly_cluster] using user-name [admin].
    Connected to Financial Management application.
    HFM Version: 11.1.2.1.0.
    Options for the Financial Management load task are:
    Load Options validated.
    Source data retrieved.
    Pre-load tasks completed.
    HFM Log file path: "C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\1\aif_14HFM59238.log".
    Load to Financial Management application completed.
    Load task statistics - success-count:0, error-count:0
    Cleanup completed.
    Disconnected from Financial Management application.
    LKM COMM Load Data into HFM - Load Data to HFM - END
    ERPI Process End, Process ID: 14

    The data load method for your target application should be set to "FDM" if you are going to be using FDM for your Data Load Rule imports. The Error in creating the DB link is due to the FDM Schema not being granted the DBLINK role in Oracle. In the FDM DBA Guide it explains that the FDM Schema must be granted the create DBLINK role when using the ERPi adapter.

  • Not been able to export data from  FDQM to target system

    Hi,
    Am not been able to export data from FDQM to my target system which is Hyperion Enterprise 6.4
    I have imported, Validated the mapping but as soon as i click on export after creation of the export file the system throws an error as "*Error: Arguments are of the wrong type, are out of acceptable range, or are in conflict with one* *another*". Also am pasting the error log down below
    ** Begin Enterprise Adapter Runtime Error Log Entry [2009-08-20-16:10:27] **
    ERROR:
    Code.............. 10230
    Description....... Data Load Errors.
    Enterprise API Return Code: ALREADY_LOCKED_RO-.
    Procedure......... clsHPDataManipulation.fDBLoad
    Component......... upsHE6xG4A
    Version........... 100
    Thread............ 6028
    IDENTIFICATION:
    User.............. administrator
    Computer Name..... HYPERION
    ENTERPRISE CONNECTION:
    App Name.......... GCIP_S
    Connect Status.... Connection Open
    GLOBALS:
    Zero-For-No....... True
    INI File Path..... C:\WINDOWS\HypEnt.ini
    NameCat.txt Path.. C:\Hyperion\FDM\GCIP\Outbox\Logs\NameCat.txt
    NameCat Entity....
    NameCat Category..
    NameCat Exists.... False
    Any suggestions any one, what should i do

    Hello,
    Is it possible that the entity that you are loading to in Enterprise is locked? It appears that it may be per the below error. You can only load to unlocked intersections, so I would start by checking the catagory and entity combination for being locked.
    Regards
    JF

Maybe you are looking for

  • How to schedule a job in APEX

    are there another alternative other than using the DBMS_JOB and DBMS_SCHEDULER to run a schedule job in APEX that calls a certain procedure? thanks.

  • Purchase Orders_ Multiple projects not permitted on a single purchase order

    Hi Guru Please assist: We are using the MM & PS for Purchase Requisition, the Account Assignment N and the buyers created PO with different Network numbers on one Purchase Order, I want to delete the purchase order and i am getting the message Multip

  • Problems with jumping ball in Java applet

    The ball is supposed to jump to the same height from which it fell down, someway it always gets higher and higher. My question is why? import java.applet.*; import java.awt.*; public class Bug extends Applet implements Runnable    private int y_pos =

  • Password protected script in iWeb??

    Hello there, we are very new to this web site publishing so bear with us. Have successfully published a site (not a .mac) previously, then upgraded to 08 iLife. Now, the second site (not a .mac) will upload but we cannot view it as it is asking for a

  • Problem with Decode statement

    Hi I am trying to achieve the following in my report: If an employee has a surname of . (dot) or a first name of . (dot), the report should not display a dot. An employee's name is made up of surname, first name and middle name which should all be co