Excerpt from Custom Dimension

Hi Experts,

Is it possible to extract data for specific custom Dimension members? I have a VB script that retrieves data for the accounts and specific entities, but it seems that HFM does not permit the extraction of data for custom dimension members.

Does anyone know how I could possibly do?

I'm sure you would default EA. The database can be set up, but the feature should be. Select Administration and see if EA is in the menu.

Tags: Business Intelligence

Similar Questions

  • Write to the file of accounts, data from customs (intersection POV) in the rules of HFM

    Hi all

    I'm trying to use scripture to deposit into the HFM rules. I am able to get the entity, scenario, year, time, and Timestamp to save to a file (see code below). Is it possible I can get accounts, customs and crossing of data also to write to a file and make the analysis of perfromance? Basically, how can I have the whole POV in a log file and test the rules.

    f.WriteLine txtStringToWrite & '-for:-"& HS. Entity.Member & "-" & HS. Scenario.Member & "-" & HS. Year.Member & "-" & HS. Period.Member & "" & Now()

    Thanks in advance. Looking forward to hear from you.

    Chavigny.

    The account, PKI and custom dimensions are not part of the point of view that the entity, period, year, scenario and value. The only way that you can write these dimensions in a file is to call them in a table, as HS. OpenDataUnit, or list any. It is the only way to get the context for intersections.

    If you try to write data to a file, you'll end up with a file that is at least as large as the database itself and could be a very slow process. If that is your intention, you would be better to simply analyze the database. Write to a file should be used only for debugging.

    -Chris

  • Copy data between the custom dimension members or scenario

    Dear Experts,

    I'm back with my silly question.
    Is there anyone know how to copy all the data (not only entity currency) between members in the custom dimension? Our HFM application has a different type of data because the type declaration (legal and audit). Whenever we arrived with our legal data, we copy our legal consolidated data for verification. We tried to create a formula (using hs.exp) to move data from legal to check, but apparently, this formula should be write inside Sub calculate (). Is not supposed, we do not want to run the copy data every time that the user click on calculate.

    We also perform copy data between the scenario, as actual to Budget. This activity also needs all the data consolidated and final.

    So the condition for the copy of data are:
    -data must be consolidated
    -Copy all the data, including the adjustment

    Is there a formula or a way to copy the data that can be triggered individually (click 1 rules that run only copy data) by the user?

    Thank you very much for your kind response,
    -Anna

    Hi Anna,.
    As you say, you cannot trigger different parts of rules to run in HFM. Instead, you use a condition. In your case this condition might be guided by the management of the process. You can use a combination of GetSubmissionPhase, review status , and ReviewStatusUsingPhaseID functions that returns the current process management level and presentation details: phase. To me, it seems that as soon as you have finished legal, you complete a part of your process cycle and enter another stage of verification. Here are the parts of your publishing process, if you have defined a process in HFM management or not, which means that you should consider using it.

    -Kostas

  • How good my trigger & Create Sequence are written review my excerpt from PL/SQL

    I have a CustomerHistory table.

    Here's a sequence I created for the table:
    CREATE SEQUENCE customerhistory_id_seq
    START WITH 90
    INCREMENT BY 10
    MAXVALUE 90000
    NOCYCLE
    NOCACHE;
    I created a trigger example the primary key of the history table:

    CREATE OR REPLACE TRIGGER cushistory_bef_insert
    BEFORE INSERT ON CustomerHistory
    FOR EACH ROW
    BEGIN
          SELECT customerhistory_id_seq.NEXTVAL INTO :NEW.CustomerHistoryID
          FROM DUAL;
    END;
    /
    After each update, or delete, insert the old record in the history table:
    CREATE OR REPLACE TRIGGER cushistory_aft_upddel
    AFTER UPDATE OR DELETE ON CUSTOMER
    FOR EACH ROW
    BEGIN
          IF UPDATING THEN
                INSERT INTO CustomerHistory
                         *
                (
                     SELECT
                             :OLD.c.customerID,
                             :OLD.c.firstname,
                           :OLD.c.lastname,
                           :OLD.c.email,
                             .
                             .
                             .
                             :OLD.mr.roomtype,
                             .
                             .
                             .
                             :OLD.b.checkout,
                             'UPDATE',
                             SYSDATE
                   FROM Customer c JOIN CustomerFamilyMember cf ON c.customerID = cf.customerID
                         JOIN Phone p ON c.customerID = p.customerID
                         JOIN ThirdParty t ON c.thirdpartyid = t.thirdpartyID
                         JOIN BookedRoom b ON c.customerID = b.CustomerID
                         JOIN MotelRoom mr ON b.roomID = mr.roomID
                         JOIN Motel m ON mr.motelID = m.motelID
              );
         
          ELSIF DELETING THEN
          
                INSERT INTO CustomerHistory
                         *
                (
                     SELECT
                             :OLD.c.customerID,
                             :OLD.c.firstname,
                           :OLD.c.lastname,
                           :OLD.c.email,
                             .
                             .
                             .
                             :OLD.mr.roomtype,
                             .
                             .
                             .
                             :OLD.b.checkout,
                             'DELETE',
                             SYSDATE
                   FROM Customer c JOIN CustomerFamilyMember cf ON c.customerID = cf.customerID
                         JOIN Phone p ON c.customerID = p.customerID
                         JOIN ThirdParty t ON c.thirdpartyid = t.thirdpartyID
                         JOIN BookedRoom b ON c.customerID = b.CustomerID
                         JOIN MotelRoom mr ON b.roomID = mr.roomID
                         JOIN Motel m ON mr.motelID = m.motelID
              );
         
          END IF;
    END;
    /
    1 are structured correctly 3 pl/sql code snippets?
    2. in the last example, which is an alternative using the JOIN? If know join 5 tables is not a good
    long term solution. Any idea?

    Hello

    Here are the bugs I find in your code.
    Please view the description of test table and features for more information.

    1 cushistory_aft_upddel is a level trigger line on client.
    Querying the table inside the trigger would give the error table mutation.

    ERROR at line 1:
    ORA-04091: table XXXXX.CUSTOMER is mutating, trigger/function may not see it
    ORA-06512: at "XXXXX.TEST_TRG", line 2
    ORA-04088: error during execution of trigger 'XXXXX.TEST_TRG'
    

    The only way you can acccess them using: old.col_name and: new.col_name.

    2 table the customer is the only updated and so the new and the old mke sense only for the customer table. the old.b.col_name and old. XXX.col_name for all other tables mean nothing and will result in error;

    Here is an excerpt of small test with tahe customer table and another table called check_in. You can extend the same thing for your problem.

    sql> create table customer(
      2    cust_id number,
      3    cust_name varchar2(20));
    
    Table created.
    
    sql> create table check_in(
      2    cust_id number,
      3    check_in date,
      4    check_out date
      5  );
    
    Table created.
    
    sql> create table cust_history(
      2    cust_id number,
      3    cust_name varchar2(20),
      4    check_in  date,
      5    check_out date);
    
    sql> insert into customer values (100, 'Rajesh');
    
    1 row created.
    
    sql> insert into customer values (200, 'kumar');
    
    1 row created.
    
    sql> insert into check_in values (100, sysdate-2, null);
    
    1 row created.
    
    sql> insert into check_in values (200, sysdate-3, null);
    
    1 row created.
    
    sql> commit;
    
    Commit complete.
    
     create or replace trigger test_trg
     after update on customer for each row
     begin
       insert into cust_history
       select :old.cust_id,
              :old.cust_name,
              ci.check_in,
              ci.check_out
         from check_in ci
         where ci.cust_id = :old.cust_id;
     end;
     /
    
    sql> select * from customer;
    
       CUST_ID CUST_NAME
    ---------- --------------------
           100 Rajesh
           200 kumar
    
    sql> select * from check_in;
    
       CUST_ID CHECK_IN  CHECK_OUT
    ---------- --------- ---------
           100 25-DEC-09
           200 24-DEC-09
    
    sql> select * from cust_history;
    
    no rows selected
    
    sql> update customer set cust_name = 'Rajesh2' where cust_id = 100;
    
    1 row updated.
    
    sql> commit;
    
    Commit complete.
    
    sql> select * from customer;
    
       CUST_ID CUST_NAME
    ---------- --------------------
           100 Rajesh2
           200 kumar
    
    sql> select * from cust_history;
    
       CUST_ID CUST_NAME            CHECK_IN  CHECK_OUT
    ---------- -------------------- --------- ---------
           100 Rajesh               25-DEC-09
    

    You can use the other tables to select as I used the check_in above. You don't need to access the customer table that you have values in the: old. and: new. variables for them.

    Thank you
    Rajesh.

    Published by: Rajesh Chamarthi on December 26, 2009 21:30 added example.

  • excerpt from the previous version of create

    Hello!

    Is there a way to create and save a snippet of the block diagram for an earlier version? I realized that even if I save my VI for the previous version and open, the excerpt from png created by this version sooner is always LV 2014 version.

    Is it possible somehow?

    Thanks for the info!

    It should not conflict with those, but there was a bug in VIPM which caused the CTC to enter in conflict with itself in certain circumstances. You can read about it in the CTC support thread starting here. According to the changelog, the latest on the LAVA (3.2.3) should solve this. If you got all of the network tools, it's probably not the updated, so you should get the lava. If this isn't the case, I've also posted a temporary for the support wire, in order to get that one.

  • Excerpts from continuous data acquisition

    Hello

    I want to make an acquisition of continuous data with a NEITHER-6133 @ 1ms per channel. The data must be stored on hard disk. At the same time, I want to take excerpts from acquisition to calculate different values. The acquisition of the extract must be triggert by an external digital trigger.  Are there examples, which combine continuous data collection and collection excerpts?

    Thank you very much.

    Best regards

    Michael

    System

    Windows 7

    LabVIEW 2012

    NOR-6133

    Thanks to the support of NOR-Germany, I found a solution for me:

    1.) continuous trigger switch

    Connect 2) the trigger for the signal to a digital i/o

    3.) synchronize AI and DIO

    Excerpt 4.) the samples needed by the search within the digital waveform pattern

    Result:

    The example shows 4 IA channels Cup (tested on Win7, NI PCI-6115, 4 channels each 5. MECH / s) and calculation on extracts from each channel signal triggered parts.

  • Excerpt from lag

    My extraction process do not have lag, however "time since Chkpt ' indicates 5 hours? Why is this? Should I have any concerns?

    Program status group Lag time since Chkpt Chkpt

    MANAGER RUNNING

    EXTRACT DP4 running 0000:00:05 : 00:10

    EXCERPT from RUNNING REI2I 00:00:04 05:00:08

    REPLICAT RUNNING MREL1 00:00:00 05:00:04

    GGSCI 52 > info rei2i

    CLIP REI2I last started 2015-11-04 12:31 status running

    Checkpoint Lag 00:00:05 (updated 05:00:09 there are)

    Process ID 6397

    Log read Checkpoint integrated Oracle Redo Logs

    2015-11-04 12:38:47

    RCS 310.167019440 (1331606881200)

    The issue was caused by the system, do not sync with NTP server upward, so the time was 5 hours off.

  • HFM rule if custom dimension condition

    Hi Experts,

    I have the following requirement:

    If the Member of the Department is d6XXXX or a descendant of d6XXXX, then

    R & D Labor and benefits is equal to work and benefits

    The Department is my custom dimension. I am not able to use it in the IF condition (get the error: object doesn't support this property or method).

    I use the following Script but sound limiting to specific departments of the D6XXXX. Its doing this calc for all members

    HS = strC1. CUSTOM2. List("","D6XXXX_Base")

    For each C2Item in strC1

    HS. Exp 'a #R and Benefits.strc1 and work D = a #Labor and benefits"

    Next

    D6XXXX_Base is a list of members.

    Any help would be appreciated.

    Try this one:

    HS = C2Li. CUSTOM2. List ("D6XXXX", "[Basic]")

    For i = LBound (C2Li) to UBound (C2Li)

    HS. Exp ' #R and D Labor and Benefits.C2 # "& C2Li (i) &"= a #Labor and benefits.

    Next

    If the account of the source also has a link to C2 dimension, you must add it at the end like this:

    HS. Exp ' #R and D Labor and Benefits.C2 # "& C2Li (i) &" = a #Labor and Benefits.C2 # "& C2Li (i)

  • Excerpts from a list or a block of text using

    Is this possible in 2015 of HR? Don't seem to be able to operate without the extract indicated below my list or paragraph

    for example

    1 step

    2 step

    excerpt from the code snippet

    3 step

    OR

    This is my introduction new fancy, but I can't put a clip in the middle of those words.

    excerpt excerpt excerpt

    What I want is to be part of step 2 or fall in the sentence that I have the extract. I saw old issues from years ago, that's not possible... hope that is not always the case.

    Thank you

    Nick

    Code snippets are blocks and can not be defined inline in a paragraph. (Although you can add it to a list item or a table cell.)

    In your case, you probably want to use the user-defined Variable. They are for shorter content, and you can add in a sentence running.

  • I've set up a website in Muse. Any excerpt from fine to preview in a browser. When I download the file to make it live I am getting this error some files on the server may be missing or incorrect. Clear the cache of the browser, and then try again. If the

    I've set up a website in Muse. Any excerpt from fine to preview in a browser. When I download the file to make it live I am getting this error some files on the server may be missing or incorrect. Clear the cache of the browser, and then try again. If the problem persists, please contact Web site author. Art seems to be fine and the host site says it's probably coding error. What should I do?

    Hello

    Have you tried a few steps in the following article

    "Some files on the server may be missing or incorrect" Warning Message

    See if that helps. Let me know if you have any question.

  • Can we run approval custom dimension

    Can we run approval one dimension other than the entity, which is of the default dimension for this. But we can run it on any custom dimension?

    Hello

    the planning unit is a combination of a script, version, entity and a secondary dimension as an option. so in order to add another dimension specify as a secondary dimension in the planning unit

  • Eliminations and custom dimensions

    Hi guys,.

    Could you please help me to understand the relationship between customs and the eliminations?

    Thank you!

    JAI

    Hello Jai

    Custom dimensions are dimensions associated with the accounts. These dimensions allow you to specify additional details associated with the accounts, such as products, markets, channels, balance sheet movement or types of ELIMINATION. For example, custom dimensions could include Product Line, region, channel or clients. A custom dimension of products corresponding to sales and COGS accounts to track sales and details of the product cost.

    The removal is the process of resetting the (elimination) transactions between entities within an organization.

    Term of elimination in HFM is used to denote the process of elimination of values during consolidation.

    For PKI, then consolidated the common parent entity transactions PKI transactions b/w its entities both child are eliminated... that is, their effect doen't goes to the parent entity.

    For the Consolidation process, as bases of financial consolidation stipulates that, during the consolidation of an entity, its investment must be knockedOff / eliminated against the subsidiary capital, etc etc... and so that the other conditions and basic principles.

    For more information, see the last administrator's guide.

  • HFM 11.1.2.2 change custom dimension Table

    Hello

    We notice that there is a change in the HFM 11.1.2.2. dimension related to the custom of table structure.
    We have a passage of the 9.3.1 to 11.1.2.2. and note this change. We have a written request
    to extract the log of the database in the 9.3.1.

    Since the change in the structure of the table, someone knows how to bind the columns lCustom1 and lCustom2 of the WFD
    Table of * CUSTOM_ITEM or related table to get the name of the custom dimension member label?

    Thank you

    Hello
    In the 11.1.2.2 version, the lcustom1 field is of type BigInt (8 bytes)
    You must use the CUSTOM_MAP table to identify the size of dimension Custom1 and Custom2
    assuming that the two custom1 and custom2 is 4 bytes each. Then use the following formula
    to calculate the upper and lower lcustom1 bytes, for example:

    DECLARE @i bigint
    Set @i = 12884901894
    Select
    CUSTOM2 = (@i & 0xffffffff00000000) / 4294967296.
    CUSTOM1=@i & 0x00000000ffffffff

    Result:
    CUSTOM1 = 6
    CUSTOM2 = 3

    Then, you can reference the result of the CUSTOM_ITEM table.

  • Excerpt from forcing to check the point/single looking for archive_log 5 - days years

    Hey guys, I'm having some strange problem and cannot figure out what is the issue. I believe that theoretically I tracked down but can't prove it.

    Here is what is happening, I have an excerpt from process running for a specific schema, now, this diagram is inserted in every 4-5 days. CDC is able to transfer data and runs correctly.

    Here's the question, when I stop the cdc (finishing or maintenance) and restart it lets say 20-30 minutes more late it error.
    The error message says its looking for a newspaper archive, the odd part is his looking for a newspaper archive that is aged 4 to 5 days. We keep only 1 day drive at about 2-3 days in RMAN. (and up to 6 months on tape)

    I can't understand why the extraction process would a newspaper of archiving aged 5 days? The only explanation that I have is because this scheme is only written too (specifically inserted) every 4-5 days since the last time the extraction process in fact obtained data from a newspaper of archiving (or redo-log) were about 4-5 days ago, and somewhere in the table control station is this info. Now, if this is the case and I am on the right track, what can I do? Do I need to have somehow the extraction process "checkpoint"(ne sais pas sinon comment décrire) every day? ".
    If my theory is wrong, any ideas of what might be the cause?

    What do you mean by "fix" it?

    OGG still provides ongoing transactions.

    So with these commands before you can see the oldest open transactions.

    with the showtrans command you can see what's open... (so always run that you stop before)... If you do this you can avoid stopping in the middle of a transaction.
    Now, if you mention... it does not solve it... (and could not)

    You can decide to rolllback this transaction... :) (of course you should talk to your people of app to see what are the consequences of this)

    Here's a test case for you:

    Insert into Table A

    Go home

    Tomorrow make the order trans show.
    You should see the open transaction and that extracted OGG is looking for archiving from today newspapers.

  • Excerpt from ClickToGoToWebPage does not

    Hello

    I'm having a problem with the excerpt from ClickToGoToWebPage because it works while I'm in a preview mode, but once I have publish my file, nothing happens when I click on the button.  I tried to created a simple file to test the problem.  I chose actionscript 3.0 with flash player 11.4.  I wrote a text and then converted to a symbol with the name of the instance as: test.  I joined the go to Web page snippet with the name of the appropriate forum and it works perfectly in the preview, but not when published as a HTML file.

    I'm working on a recently purchased flash cs6 and doubt that an update would help (which I don't know how to do).  the version is 12.0.2.529.  I use windows 8.

    Here's what's in my layer actions:

    Stop()

    test.addEventListener (MouseEvent.CLICK, fl_ClickToGoToWebPage);

    function fl_ClickToGoToWebPage(event:MouseEvent):void

    {

    navigateToURL (new URLRequest ("http://www.adobe.com"), '_blank');

    }

    on an unrelated note, why can't I just write some text and then put the web address in the text box 'Link' in the text options?  I tried this, but it does not work as well.  What is the function of 'Link '?

    If someone has seen, it would be appreciated.

    Thank you

    You probably have a problem of security sandbox with your link and navigateToURL.

    Download your files on a web server and the test, or add some flash to your list of trusted files, http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.htm l

Maybe you are looking for