Extended Analytics

Hi... just wanted to know why this is done, the data export by hfm extended analytical and then using fdm to create a dish from the tables.

Can't we just create the flat file directly from HFM using fdm?

Excuse my ignorance, as I'm not too pro on these aspects.

E.M.P. 11.1.2.1

In the version you're on you can't do that. In 11.1.2.4 you can extract data from HFM using FDMEE.

Tags: Business Intelligence

Similar Questions

  • Extended Analytics (how to share the model to the other user)

    Hello

    Can any one please tell me how to share the extended Analytics (already created model) model to the other user.

    Thanks in advance,
    MB

    Scopes analytical models are user specific, although I think that that has changed after that some released in the series 9.x. Hyperion, at one point had a utility that allows you to copy the template from one user to another, but I don't know if that still exists. It may just be easier to have users to recreate it in the short term since it is really just a problem of selection of metadata.

    -Chris

  • Extended Analytics - reason not to use the HFM database as the destination

    Why can't use us the HFM database as the destination database to create patterns in Star using extended Analytics? How can we get data with metadata in tables exported using EA?

    As far as I know, export EA is a star that includes metadata and data schema format?
    You don't would not export it to your database of the HFM application as you would ideally keep it separate for analsys by services such as Essbase OLAP?
    Alternatively, you can also use Oracle Hyperion Essbase Analytics Link, which creates a permanent bridge in real-time between your HFM and Essbase applications.

  • Appeal of HFM extended Analytics of ODI

    Is someone called a session HFM Extended Analytics of ODI? I'm doing it but don't know how to tell my POV. I am looking for basic members off the dimenension dimension and entity accounts. In EA, I have {accounts. [Base]}. This work in the HFM VB call?

    you don't need to hardcode a member of your pov. There is a configuration xml file in the sample project. you put your pov there.

  • Extended analytics. Error when you try to connect to the database

    Hi all
    We created the UDL file to the star schema database, and configure the DSN on EPM System Configurator (11.1.1.3)
    UDL file is connected correctly, but when we try to 'Create star schema' we get an "Error occurred whil connection to the database" error.

    Any ideas? are we missing something?

    Concerning

    Have you given the grant of rights 'connect' to the database or schema?

    Varun

  • Extension Analytics TMS with SQL remote

    Hello

    I have a MSD 13.1 remote SQL Server 2008 works very well (tmsng).

    I create a remote SQL Server 2008 in the same instance (tmsng_dwh), to extend analytics but I have problem when I tried to install the package.

    I want to configure the SQL while I install the software, but Extension Analytics shows me that it cannot connect to Analysis Services because it is not active and running in SQL Server.

    I created a Windows account with credentials of writing, other SQL account with 'his' credentials and others read on SQL tmsng to tmsng_dwh.

    Analysis Services is installed and running.

    Could someone help me?

    Thanks in advance.

    Best regards.

    Right, as I told you, you must use the same instance name for SQL server database engine and the analysis server.

    Kjetil-

  • What is the Diff between extract data and analytics

    Hello

    I'm new to HFM.
    What is the difference between the extract data and extended Analytics?

    Thank you
    Fri

    Extract data will create a flat file of entity currency only on folders - to simplify, there basically entry level data with the exception of the entity dimension and account where higher level data can also be extracted.

    EA has the ability to turn a star schema or a flat file that contains the data to any level of any dimension.

  • How to integrate HFM with Hyperion Planning?

    Hello

    I was wondering how we integrate between the HFM and Hyperion Planning?

    I'll use HFM to consolidate different companies and then I'll use Hyperion Planning at the consolidated level generated by the HFM.

    But I don't know how does this technically happen? We use the FDQM to collect the data from different sources and to consolidate in the HFM? I can't find what is the backend of the HFM... I read somewhere that it is not based on essbase... so please advise.

    And so, how connect the HFM planning or it will load the HFM data to plan the Hyperion/essbase?

    Please tell us in this integration as I am confused in it.

    Thank you.

    There are several ways to extract data from HFM and loading of planning/Essbase.

    Some options are ODI, Extended Analytics (now export data), EPMA, EAL data synchronization (even if it was only Essbase)

    If you search the Internet you can get examples for example

    http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/Hyp/HFM11.1.2_ExAnalytics/Extended_Any.htm

    http://www.us-analytics.com/wp-content/uploads/2013/07/kberry.gettingyourdataoutofhfm.PDF

    HFM stores its data in a relational database.

    See you soon

    John

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

  • Analyzes operational Audit, data verification and historical process of flow

    Hello

    Internal Audit Department asked a bunch of information, we need to compile from newspaper Audit task, data verification and process Flow history. We have all the information available, but not in a format that allows to correct "reporting" the log information. What is the best way to manage the HFM logs so that we can quickly filter and export the verification information required?

    We have housekeeping in place, newspapers are 'live' partial db tables and partial purged tables which have been exported to Excel to archive historical newspaper information.

    Thank you very much.

    I thought I posted this Friday, but I just noticed that I never hit the "Post Message" button, ha ha.

    This info below will help you translate some information in tables, etc.. You may realize in tables audit directly or move them to another array of appropriate data for analysis later. The consensus, even if I disagree, is that you will suffer from performance issues if your audit tables become too big, if you want to move them periodically. You can do it using a manual process of scheduled task, etc.

    I personally just throw in another table and report on it here. As mentioned above, you will need to translate some information as it is not "readable" in the database.

    For example, if I wanted to pull the load of metadata, rules of loading, loading list of members, you can run a query like this. (NOTE: strAppName must be the name of your application...)

    The main tricks to know at least for checking table tasks are finding how convert hours and determine what activity code matches the friendly name.

    -- Declare working variables --
    declare @dtStartDate as nvarchar(20)
    declare @dtEndDate as nvarchar(20)
    declare @strAppName as nvarchar(20)
    declare @strSQL as nvarchar(4000)
    -- Initialize working variables --
    set @dtStartDate = '1/1/2012'
    set @dtEndDate = '8/31/2012'
    set @strAppName = 'YourAppNameHere'
    
    --Get Rules Load, Metadata, Member List
    set @strSQL = '
    select sUserName as "User", ''Rules Load'' as Activity, cast(StartTime-2 as smalldatetime) as "Time Start",
          cast(EndTime-2 as smalldatetime) as ''Time End'', ServerName, strDescription, strModuleName
       from ' + @strAppName + '_task_audit ta, hsv_activity_users au
       where au.lUserID = ta.ActivityUserID and activitycode in (1)
            and cast(StartTime-2 as smalldatetime) between ''' + @dtStartDate + ''' and ''' + @dtEndDate + '''
    union all
    select sUserName as "User", ''Metadata Load'' as Activity, cast(StartTime-2 as smalldatetime) as "Time Start",
          cast(EndTime-2 as smalldatetime) as ''Time End'', ServerName, strDescription, strModuleName
       from ' + @strAppName + '_task_audit ta, hsv_activity_users au
       where au.lUserID = ta.ActivityUserID and activitycode in (21)
            and cast(StartTime-2 as smalldatetime) between ''' + @dtStartDate + ''' and ''' + @dtEndDate + '''
    union all
    select sUserName as "User", ''Memberlist Load'' as Activity, cast(StartTime-2 as smalldatetime) as "Time Start",
          cast(EndTime-2 as smalldatetime) as ''Time End'', ServerName, strDescription, strModuleName
       from ' + @strAppName + '_task_audit ta, hsv_activity_users au
       where au.lUserID = ta.ActivityUserID and activitycode in (23)
            and cast(StartTime-2 as smalldatetime) between ''' + @dtStartDate + ''' and ''' + @dtEndDate + ''''
    
    exec sp_executesql @strSQL
    

    With regard to the codes of the activity, here's a quick breakdown on those...

    ActivityID     ActivityName
    0     Idle
    1     Rules Load
    2     Rules Scan
    3     Rules Extract
    4     Consolidation
    5     Chart Logic
    6     Translation
    7     Custom Logic
    8     Allocate
    9     Data Load
    10     Data Extract
    11     Data Extract via HAL
    12     Data Entry
    13     Data Retrieval
    14     Data Clear
    15     Data Copy
    16     Journal Entry
    17     Journal Retrieval
    18     Journal Posting
    19     Journal Unposting
    20     Journal Template Entry
    21     Metadata Load
    22     Metadata Extract
    23     Member List Load
    24     Member List Scan
    25     Member List Extract
    26     Security Load
    27     Security Scan
    28     Security Extract
    29     Logon
    30     Logon Failure
    31     Logoff
    32     External
    33     Metadata Scan
    34     Data Scan
    35     Extended Analytics Export
    36     Extended Analytics Schema Delete
    37     Transactions Load
    38     Transactions Extract
    39     Document Attachments
    40     Document Detachments
    41     Create Transactions
    42     Edit Transactions
    43     Delete Transactions
    44     Post Transactions
    45     Unpost Transactions
    46     Delete Invalid Records
    47     Data Audit Purged
    48     Task Audit Purged
    49     Post All Transactions
    50     Unpost All Transactions
    51     Delete All Transactions
    52     Unmatch All Transactions
    53     Auto Match by ID
    54     Auto Match by Account
    55     Intercompany Matching Report by ID
    56     Intercompany Matching Report by Acct
    57     Intercompany Transaction Report
    58     Manual Match
    59     Unmatch Selected
    60     Manage IC Periods
    61     Lock/Unlock IC Entities
    62     Manage IC Reason Codes
    63     Null
    
  • Impossible to remove from the user's browser grouping administrative tasks

    Hello

    I work with HFM 9.3.1 and cannot remove access for the administrative tasks of the Consolidation of the view of the user's browser. I fill the group administrator field in the application of the utility of Configuration of FM Server tab, but it did not work. He is still able to create or even remove applications.

    The assigned provisions include:
    By default
    Read journals
    User of intercompany transactions
    Advanced user
    Receive alerts by email for process management
    Receive alerts Email for IC Transactions
    Extended Analytics

    I tried to remove the role of the advanced user to force the display of project only, however, it is still able to access the Admin menus via the command bar or the navigation menu.

    Am I missing something? Any help would be appreciated

    Kind regards

    Romo

    These include create application, will exist for users in the Application of the HFM configuration utility Developer group. Provide a group, replace the default 'All' on each HFM application server in the environment. After doing this change and restarted HFM on all servers (restart all servers) then only members of this group can create new applications. If the menu may still appear, you will find that an "Access denied" error if anyone outside this group tries to create an application. Even the enable/disable connections is controlled by the administrator group of applications next to the app creator group in the utility.

    This group and the related menu items have nothing to do with application roles.

    -Chris

  • HFM - Owner ship change

    Hello

    I'm new to HFM. Can any body tell me everything to change owner ship in HFM and which will involve the dimensions inside and what are member properties must change?

    Thanks in advance.

    Hi user10926115,

    If you leave me an email I will send you a specific document on your question. Because it is mainly based photography it post very good about it.

    Property information:

    Chapter 4. Metadata management
    Define methods of Consolidation
    http://download.Oracle.com/docs/CD/E17236_01/EPM.1112/hfm_admin.PDF

    Chapter 8. Property management
    http://download.Oracle.com/docs/CD/E17236_01/EPM.1112/hfm_user.PDF

    Applies to:
    Hyperion Financial Management - Version: 4.0.1.0.00 to 11.1.2.0.00 - version: 4.0 to 11.1

    Objective:
    There must be an explanation of how to extract data from property management accounts system HFM.

    Solution:
    The management of the property data in HFM is just like any other piece of data, can also be retrieved through the 'Extract Data' option and charged through the "Load Data" option (as long as the checkbox 'File contains property information' is selected before loading).

    Apart from when loading a data file, the data should normally be set only via the management module of the ownership of financial management web interface. This is discussed in detail in the documentation for the HFM user's Guide, chapter "Property management", section "enter property information.

    The Guide of the user for the 11.1.1.3 communicated financial management can be found by clicking here.

    However, it is sometimes important to understand where this information is stored in the fixed data dimensions 12 of HFM. The indices must be understood in the context of the existing information in the User Guide.

    For example...

    Account [Active]
    The 'Active' yes / no information is stored in a system account [Active] of the parent entity in the entity against the entity dimension child in the dimension of PKI and indicated by the number '1' in this account. Normally an empty value or a zero is "inactive". It is only if the metadata for application settings have "DefaultValueForActive" set to 1... so all values are counted as 'active '. For more information on the metadata "DefaultValueForActive" property, see the HFM Administrator's guide for the appropriate version of the software.

    [Method]
    Account of the method data are indicated by a '1' in the account [method] for the parent entity in the dimension entity of the child in the dimension of the PKI and the name of the method in Custom 1 dimension. It is very important that single member method C1 has a '1' stored against it, in any particular combination of scenario-year-period-entity-ICP, otherwise it can lead to problems in the system.

    POWN, PCON, PCTRL, Partsnonversees, VotingOutstanding, Partsversees, and VotingOwned are all the digital values stored in Custom1-Custom4 [no] members.

    To see how you look at the [None] member in the dimension of value and also the [None] member in the custom dimension 1-4 (except on behalf of the method).

    As with any other data HFM directly build integrations in the data store of relational database under HFM is not recommended. Oracle reserves the right to change the schema of the relational database in future versions without prior notification. The right way to access these data is loading/extraction of the data files, using Smartview, FDM, HAL or SUN, Extended analytics or Livelink (Hyperroll). Any integration between data HFM and external sources should be made in collaboration with Oracle Consulting Services or a 3rd party certified business partner of Oracle Corporation.

    G'Luck
    -David

    Published by: D2 on January 21, 2011 10:54

  • HFM user activity

    Hi all

    Is it possible to get a detailed analysis of users connected to a particular application and get a log of activities over a period of time in HFM?
    For example, there is a requirement to obtain the following information for all applications in HFM

    user logon
    Close the session
    App connected to
    for over a period of time


    Thank you
    Maury

    Hello

    I would try the audit tasks
    find information on the audit of the following tasks
    Audit of tasks

    You can use the check of the tasks feature to display the tasks performed by the users. You can filter jobs verified by date range, application server, user and executed task.

    Note:
    Only users assigned to the Administrator role can perform an audit of the task.

    These activities of the user are saved in the audit of the task:

    Idle
    Management rules
    Scan rules
    Excerpt from rules
    Consolidation
    Graphic logic
    Translation
    Custom logic
    Allocate
    Loading data
    The data extract
    Retrieves data via HAL
    Data entry
    Data recovery
    Erase data
    Copy of data
    Journal entry
    Recovery log
    Newspaper ad
    Unposting journal
    Writing style
    Load metadata
    Extract metadata
    Members list support
    Members list Scan
    Excerpt from the list of members
    The security
    Security analysis
    Excerpt from security
    Opening of session
    Connection failure
    Closure of session
    External
    Metadata scan
    Analysis of data
    Scope of export Analytics
    Deletion of schema extended Analytics
    Support transactions
    Extracted transactions
    Attachments
    Detachments of document
    Creating Transactions
    Change Transactions
    Remove Transactions
    Post Transactions
    Unpost Transactions
    Delete invalid records
    Verification of data served
    Served review task
    Post all Transactions
    Unpost Transactions
    Delete all Transactions
    Separate all Transactions
    Automatic matching by ID unit
    Automatic account correspondence unit
    Report of IC matching by ID
    Report of IC corresponding by the Acct
    The transactions IC report

    The task audit log includes this information:
    Username

    Activity
    Activity start time
    Activity end time
    Name of the server
    Description
    Current module

    Note:
    The task check feature is available only in the financial management Web interface.

    The audit task log information is stored in a table (APPNAME_TASK_AUDIT). You can save or extract the information from the table. You can monitor the size of the log and this on a regular basis.

    To perform a check of the task:
    Select Administration and verification of the task.

    Note:
    You must have an application open for operational verification link is available.

    Optional: You can filter the audit by selecting criteria:

    Enter a start date and an end date.

    Tip:
    Click to select dates in a popup calendar.

    In the Select Server list, select a server, or select all.

    In the user selection list, select the user to be audited, or select all to audit all users.

    In the task filter list, select the task of verification, or all all verification tasks.

    Click on display.

    The tasks that meet the filter criteria are displayed. Tasks are sorted from the newest to the oldest, as shown in this example.

    Optional: To export audit information to a CSV file, click on export and follow the download instructions.

    Optional: To delete the log entries, click clear log to remove entries from the journal.

    Note:
    When you clear the log, a clear record remains in the journal and can not be deleted.

    concerning
    Alex

  • HFM 11.1.1.3 security

    Is there a function in HFM 11.1.1.3 which will track users to access the application today, yesterday, last week, or a month ago. The goal is to see who has accessed the system to make unauthorized data changes.

    Your help would be appreciated.

    Hi, here you are

    Audit of tasks

    You can use the check of the tasks feature to display the tasks performed by the users. You can filter jobs verified by date range, application server, user and executed task.

    These activities of the user are saved in the audit of the task:
    Opening of session
    Connection failure
    Closure of session
    Idle
    Management rules
    Scan rules
    Excerpt from rules
    Consolidation
    Graphic logic
    Translation
    Custom logic
    Allocate
    Loading data
    The data extract
    Retrieves data via HAL
    Data entry
    Data recovery
    Erase data
    Copy of data
    Journal entry
    Recovery log
    Newspaper ad
    Unposting journal
    Writing style
    Load metadata
    Extract metadata
    Members list support
    Members list Scan
    Excerpt from the list of members
    The security
    Security analysis
    Excerpt from security
    External
    Metadata scan
    Analysis of data
    Scope of export Analytics
    Deletion of schema extended Analytics
    Support transactions
    Extracted transactions
    Attachments
    Detachments of document
    Creating Transactions
    Change Transactions
    Remove Transactions
    Post Transactions
    Unpost Transactions
    Delete invalid records
    Verification of data served
    Served review task
    Post all Transactions
    Unpost Transactions
    Delete all Transactions
    Separate all Transactions
    Automatic matching by ID unit
    Automatic account correspondence unit
    Report of IC matching by ID
    Report of IC corresponding by the Acct
    The transactions IC report
    The task audit log includes this information:
    Username
    Activity
    Activity start time
    Activity end time
    Name of the server
    Description
    Current module

    The audit task log information is stored in a table (APPNAME_TASK_AUDIT). You can save or extract the information from the table. You can monitor the size of the log and this on a regular basis.

    concerning
    Alexander

  • _Member of the BSO cubes storage

    Hi all

    We have a cube BSO. I need to change the properties of storage of all members in 4 sizes to store. What is the best/easy approach to change the properties of storage of all members in a dim

    Yes, I've been down this road before and am actually likely to be soon on my current project.

    Your question, I think, is that HFM prepares his eliminations and adjustments to senior level members in the dimension of PKI (value? "I don't remember, it has been more than a year). When you load in a cube ASO that it does not work because the ASO only accepts the load at level 0 data.

    The patch on the side of Essbase is to create level 0 buckets to receive the higher level e & a. It's a pain and you will probably need the output of SQL extended Analytics massage (I'm guessing that you use) to push the values of these 'false' lower level members. This all works when it is retrieved at a higher level of the map.

    In fact, the foregoing would be about 99% true in OSB as well - Yes, you can load at senior level members, but almost nobody does.

    In any case, create that stored such members in ASO vs dynamic won't make a difference - ASO loads only on level 0.

    Kind regards

    Cameron Lackpour

    Published by: CL on February 19, 2010 09:06
    P.S. Your post title says "OSB", but you talk to ASO. Two very different architectures under the covers.

  • HFM data extract

    Hello
    When I extracted data using the HFM client, the first line of the file is! Data.
    I load the file in a SQL server using Bulk insert table.
    I wanted to skip first line, if I use FIRSTROW = 2, it ignores the first line of data.

    When to skip lines, the SQL Server database engine looks only at the field terminators, and does not validate the data in the fields of ignored rows.
    With this statement, it would compare the fields in the table and ignore the number of endings to the field to form a line and now the line terminator.

    I can extract the data of HFM without «!» Data line"in a file? or can I pull data into a sql table directly using utilities HFM etc.?

    Thank you

    Discover Extended analytics in the Administrator's Guide. I believe that you will get exactly what you are looking for.

Maybe you are looking for

  • Error set up a new sync account

    As a former user of firefox, that I recently tried to use synchronization to easily manage bookmarks and preferences between my computers. So I created a sync account on my laptop, but the timing never worked. Instead, my browser displays an error me

  • Compaq Elite 8300 AIO: Blue screen on reboot of the system after sysprep

    After syspreping the computer to restart the computer, I have BSOD (blue screen) with the message: STOP: 0x0000007E (0xFFFFFFFFC0000005,...) without any additional information on the driver the image works perfectly before syspreping, I know that it

  • Anti piracy telephone?

    I got a call just now from someone who said they were by windows and I had a hack, I asked for them a kind of audit and they just kkept say they are anti piracy departmet windows, I don't have confidence in them, she was I right? and if yes how can I

  • LAPAC1750 question - 2nd SSID authentication

    I just installed two AP LAPAC1750 and everything works fine expect I configured a second SSID with a VLAN different and for some reason sometimes clients cannot authenticate with this second SSID. They receive a password incorrect message on their de

  • Invalid key for Activation product: reformatted PC from Windows XP to Vista Home Basic

    Our computer was initially using Windows XP. After a few problems which included the same office not loading, we have reformatted it and used Windows Vista Basic Home Edition because the CD with our Dell Inspiron 6000 had compatible drivers for Vista