Function data FDM seg/card table

If FDM is mainly used to transport data, tables of card/segment of data in the database can be purged without risking loss of important data? These tables contain large amounts of data, and our company does not FDM to reference historical data. These tables can be served without losing the functionality of the application of FDM itself?

If you do not judge the prerequisites data (FDM) also important, you won't lose anything.*

If you need to drill through back / activated between HFM to FDM. However, who would break of course.

Published by: beyerch2 on July 11, 2012 09:59

Tags: Business Intelligence

Similar Questions

  • Using data from the control table

    Hello

    I would like to use the data entered in a table to automate volume/sequence of airflow for a test Chamber. As shown in the screenshot of control table, the first column indicates the number of iterations by elements of array in a series of tests and the second data column specifies the length of each line sequence. Entries in the other columns are specific to different valves and specify values set required in the flow meter.

    I guess my question is how can I index/assign each column of the table such that the data to exploit the respective valves are obtained in subsequent iterations all acquire simultaneously with data from other components in the order? While I recognize that the solution may be very simple, I searched on through various examples and messages on the tables and the tables without knocking on a solution. The attached .vi allows me to be a part of the series of tests.

    Best regards

    Callisto

    Hi Callisto,

    If I understand your question then the solution is actually quite simple. The important point to keep in min is the fact that the Table control can actually be treated as an array of string. You can then use all the traditional table manipulation tools and techniques to manipulate your data as you wish. For example, use the Array Index function to retrieve specific columns and then if you want to spend the individual elements in a column in a loop, wire the table until the loop and ensure that indexing is enabled. If you then want to use these data elements to control your test application, you can convert a portion of the resulting string in more useful to digital.

    All these concepts are illustrated in the attached VI. I hope this helps, but let me know if you have any other questions.

    Best regards

    Christian Hartshorne

    NIUK

  • Data on E9 card database search

    Hello everyone, I've combed through Topliners and I can't seem to find the exact answer to this question. Maybe can you help?

    I try to use a database search to extract all records in a set of data card and display them on a web page. Unfortunately, I couldn't find a working example of how to do it. There are a plethora of documentation on the conduct of a search for data from the contact table and there is a ton of separate documentation around the use of data cards, but I can't find something that combines them.

    Someone at - it an example of Javascript/HTML code that displays the contents of a data card set to a landing page?

    Thanks in advance!

    Hey Sterling.

    Yes, we did it before with a page of survey results. If you went back to the page a second time once you submit the survey, it showed your survey response and contact info and it was all based on a data card. It was in E10, but should be the same process for E9. I would like to check on how we did it and see if I can get documentation for you.

    Kim

  • Scripts custom FDM HFM control (for example, perform a translate in HFM) after data FDM load via the batch Loader

    Currently, we have a Microsoft Access database + VBA Scripts that use the HFM API objects to connect to the HFM application to perform the following tasks:

    (1) delete the data according to a specific POV HFM

    (2) load some data from a text file to the request of HFM

    (3) run a Consolidation of data in HFM with 3 different POV

    (4) running a data translate in HFM with a specific POV.

    (5) when the process is complete, HFM send one connects e-mail to Hyperion administration team with newspapers.

    We want to replace this database MS Access with FDM.

    Custom script of FDM, I am able to run batch loader to load data at our request of HFM.

    However, FDM, I want to connect to our HFM application to perform a consolidation (in HFM) and also a Translate (in HFM) after that the data has been loaded by the loader of FDM data.

    The question I have is that I can't use the VB Scripts following FDM (this code works in MS Access)

    Function OpenHfmApp (sDomain As String, sUser As String, fun As String, sserveur As String, sApp As String)

    Dim customer as HsxClient

    Dim cSession as HsvSession

    Dim cServer As HsxServer

    Set customer = New HsxClient

    cClient.SetLogonInfoSSO sDomain, sUser, ' ", fun

    sApp sserveur, 'Financial management', cClient.OpenApplication, cSession cServer

    Set OpenHfmApp = cSession

    End Function

    FDM do not like the 'AS' - I should write:

    Function OpenHfmApp (sDomain, sUser, fun, sserveur, SAPP)

    Sun customer

    Dim cSession

    Dim cServer

    Set customer = New HsxClient

    cClient.SetLogonInfoSSO sDomain, sUser, ' ", fun

    sApp sserveur, 'Financial management', cClient.OpenApplication, cSession cServer

    Set OpenHfmApp = cSession

    End Function

    When I run this code of FDM, I get the following (of Financial Data Management Workbench) error message

    500 variable is undefined: 'HsxClient '.

    Online: 565

    My questions are:

    (1) is it possible to control via the Scripts VB FDM HFM realize some tasks such as claire HFM, Consolidation and HFM HFM translate?

    (2) if so, How can I reference objects in FDM HFM VB Scritp editor [custom general] (to use the HFM API via scripts VB FDM objects)?

    Thank you

    Claude

    Good to know that the 'out of the box' functionality meets your requirements. You can mark the thread as anawered now.

  • Is it Possible to use a function when you create a table?

    Hello

    Is it possible to use a function during the construction of a table?

    I would like to browse my data returned from the db and call a function. The part where I call the function "myFunction [i]" doesn't seem to work. How can I solve this problem? I need to put the function call results in the table.

    var i: uint;

    for (i = 0; i < dataArray.Length; i ++)

    {

    dgArray = [{name: dataArray [i] .name, Type: myFunction [i]}];

    }

    Thank you!
    -Laxmidi

    Hi laxmi,

    Yes of course it is quite possible to use a function when you create a table... In your code, you made some mistakes...

    You used hooks to call the function myFunction [i]... where you are supposed to use parentheses... myFunc (i)... and other you must push the object in the dgArray but yous hould not not attribute...

    dgArray = [{name: dataArray [i] .name, Type: myFunction [i]}]; This will result in only the last table iterates in dgArray...

    So you should write dgArray.push ({name: dataArray [i] .name, Type: (i) myFunction});

    Check out the code below...


    http://www.Adobe.com/2006/mxml"layout ="absolute"creationComplete ="init (); » >

      private var dgArray:Array = new Array();
    private var myDataArray:Array = [{data: '1', name: 'Robert'}, {data: '2', name: 'Nicolas'}, {data: '3', name: "Bika"}]
     
    private function init (): void
    {
    for (var i: int = 0; i
    {
    dgArray.push ({name: dataArray [i] .name, Type: (i) myFunction});
    }
    }
      
    private void myFunction(i:int):String
    {
    Return 'Type' + i;
    }
    ]]>

    If this post answers your question or assistance, please mark it as such.

    Thank you

    Jean Claude Chari

  • What type of connections I do for the acquisition of data PCI 619 card pins? What I have to give it to the ground and the CCV on the pins of the connector myself? What should be the value of the SCR I need to give to the PIN?

    I have a PCI 6519 data acquisition card. I want to install it on the PC and use it outputs to control a robot. I have problems with the connections to the terminal block which is attached to the cable.

    What type of connections I do for the acquisition of data PCI 619 card pins? What I have to give it to the ground and the CCV on the pins of the connector myself? What should be the value of the SCR I need to give to the PIN?


  • Removing a card table / placed on a document

    I must have accidentally hit a button that produces a table on my typed document and I can't delete the chart.

    Save as something else does not work and does not even open a new document and upload it.  Now, any doc that I opened is projecting a card table / on typing. Thank you.

    Hello

    Thank you for writing to Microsoft Communities.

    Until we start troubleshooting on this issue please provides us with additional information by answering a few questions below, this will help us better solutions to the problems.

    1. what application you use to type the document?

    2. what exactly happens when you try to save or to transfer the document?

    3. you get any error message?

    If so please answer us, we can help you better.

  • Suppose I have a table emp that has thousands of lines of data. In this table, I have to get only the employees whose salary is equal.

    Hello world

    Suppose I have a table emp that has thousands of lines of data. In this table of employees receive wages between 1000-10000.

    Now I have to get only the employees whose salary is equal.

    for example

    empNo empName sal

    -----------     -------------      ---------

    1 ram 5000

    2 5000 Shyam

    3 1000 Dilip

    4 deepak 2000

    5 sisi 1000

    6 1000 Priya

    so now...

    Now without using ' select * from emp where Sal IN (5000,1000). "How can I get these employees with the same salary?

    SELECT *.

    EMP e1

    WHERE EXISTS (SELECT 99 FROM emp e2 WHERE e2.sal = e1.sal AND e2.empno! = e1.empno)

    or maybe

    SELECT *.

    WCP

    WHERE sal IN (SELECT sal FROM emp GROUP BY sal HAVING COUNT (*) > 1)

  • I want to loop through the data from two different tables using for loop where the query should be replaced at runtime, please help me

    I have the data into two table with the structure of similar column, I want to loop through the data in these two tables

    based on some condition and runtime that I want to put the query in loop for example, the example is given, please help me

    create table ab (a number, b varchar2 (20));

    Insert into ab

    Select rownum, rownum. "" sample "

    of the double

    connect by level < = 10

    create table bc (a number, b varchar2 (20));

    Insert into BC.

    Select rownum + 1, rownum + 1 | "" sample "

    of the double

    connect by level < = 10

    declare

    l_statement varchar2 (2000);

    Boolean bool;

    Start

    bool: = true;

    If it is true, then

    l_statement: =' select * ab ';

    on the other

    l_statement: =' select * from bc';

    end if

    I'm in execute immediate l_statement - something like that, but I don't know

    loop

    dbms_output.put_line (i.a);

    end loop;

    end;

    Something like that, but this isn't a peace of the code work.

    Try this and adapt according to your needs:

    declare

    l_statement varchar2 (2000);

    c SYS_REFCURSOR;

    l_a number;

    l_b varchar2 (20);

    Boolean bool;

    Start

    bool: = true;

    If it is true, then

    l_statement: = "select a, b, AB;

    on the other

    l_statement: = "select a, b from bc;

    end if;

    --

    Open c for l_statement;

    --

    loop

    extract the c in l_a, l_b;

    When the output c % notfound;

    dbms_output.put_line (l_a |') -' || l_b);

    end loop;

    close c;

    end;

    /

  • I want to return the product to stop the renovation and to remove the data from credit card

    I want to return the product to stop the renovation and to remove the data from credit card

    To the link below, click on the still need help? option in the blue box below and choose the option to chat or by phone...
    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Creative cloud support (all creative cloud customer service problems)
    http://helpx.Adobe.com/x-productkb/global/service-CCM.html ( http://adobe.ly/19llvMN )

  • Unable to connect Adobe cloud after update the expiration date of credit card

    Unable to connect Adobe cloud after update the expiration date of credit card.

    The activation server show that CC has expired on 21 September, 2015. Please renew the subscription if possible or re-purchase.

    The best option will be to contact Adobe support for this.

    Concerning

    Stéphane

  • I HAV been trying to update my expiration date of credit card for 3 months.  When I go to lelien for "Update payment Details" and edit the expiration date and &lt; click &gt; save, I get an error saying my address in invalid.  I have several chat sessions

    Can someone please help...  Suggestions, how can I overcome this problem, in which case my Adobe Creative cloud subscription will expire today due to and credit card.

    I tried to update my expiration date of credit card for 3 months.  When I go to the "Update payment Details" link and change the expiry date then < click > save, I get an error saying my invalid address.  I had several chat sessions with support, called support and logged a ticket with support and every time they tell me to go to a particular link to update my contact information.  I do and I get the same error...   "My coordinates are not valid."  Now I'm in the position where my creative cloud membership will expire today everything simply because the Adobe address validation do not think that my address is valid.

    I got 'Cat' sessions with the support,

    I made a phone call to the support and

    I logged a ticket with support.  I'm really trying to pay my subscription.  Support ticket No. 0216009991

    Whenever I have contact the support they gave me a link to the site where I supposedly can I enter my credit card details.

    Whenever I went on the link provided, I'd get the same error.  "My coordinates are not valid."

    What I checked on my address.

    1. I look out the window and the view I get is the same as it was yesterday and the day, and in fact several years ago.

    2. I go out in the street, Yes, the street sign says the name of my street

    3. I go to my mailbox and it does not say the number of my mailing address

    4. yes I get the email to the address registered with Adobe

    5. yes I received the email from adobe delivered to the address

    6. I get the address of Google, yes I can find it on Google

    7. I converted to use the satellite view Google maps

    8. Yes, it's my house, with the 12 solar panels on the roof

    9. Yes, that's my black car in the driveway

    10. I check my reviews for my address Board rate, Yes, this is the address that I recorded with Adobe

    11. Yes, I had this same address registered at Adobe for the past 3 years.  So far I have not had a problem with my address

    12. I work with a software company that actually uses the address of Google, under license validation, built-in in their application.  I used this software to check to see if my address is recognized as valid.  You guessed it is recognized as valid.

    I did check my credit card

    12. Yes, I have, every time checked the status of my credit card with the Bank

    a. the card is valid

    b. the card's not over it's credit limit

    c. the card is not due

    d. the address registered to my credit card with the Bank is the same address that I recorded with Adobe

    Since the last link Adobe support gave me two weeks ago, to change my credit card details, I was able to key a new credit card in the fields (Yes it's good that I was forced to get a new credit card only for Adobe!   If I am that everything would be fine.

    But wait...   The details I provided this link have not been updated on the Adobe site.  (So I check the link... I was scammed to get my card number?)

    After investigation of the link, I'm fairly confident of the link provided is a true link to Adobe.  www.adobe.com/go/Secure

    Did anyone else had this type of problem when you try to update the expiration date of a credit card?

    The question is about to have an impact on my ability to process pictures for my photography business, it affects my ability to earn an income.

    So you could say I'm getting angry some of the stuffing!

    In summary...  I knew that my credit card had a new expiration date and I tried to update the expiration 3 months 3 months.

    Simply because the use of the validation of addresses, Adobe, has a few flaws, I was not able to update this information.  So Adobe today will stop my subscription.

    As I said in previous support tickets, chat sessions and telephone.  I'll be more disappointed if I am prevented from using software and Adobe cloud features.

    It is copied from an email I received during the night from Adobe...

    Continue to create with us

    Hi Thomas,

    Your Creative cloud membership will expire on August 23, 2015 (PT). We hope that you have been getting the best out of all that creative cloud has to offer. To extend your subscription, please update the billing for your account information, or add a prepaid card.

    Update your billing information (there is a link to where I can update the expiry date) pocztek sigh...   I still get the same error telling me that my address is not valid!

    Thank you for being a part of the creative cloud,

    The creative team Cloud

    Good creative team...  I REALLY WANT TO STAY IN THE TEAM, AS YOU CAN SEE FROM THE FOREGOING, THAT I REALLY TRIED TO SOLVE THIS PROBLEM SEVERAL TIMES OVER THE PAST 3 MONTHS.

    I tried to include as much information as possible in what I said earlier, I expressed in a way that will hopefully provide a little humor, but at the same time to portray the frustration I'm feeling right now.

    Honestly, I don't know what more I can do.  It seems that I have no other recourse start litigation for loss of income coming from Adobe address Validation errors.  There is a real chance that I will be litigated against because I won't be able to complete contracts.

    There must be a healthier solution of mind that court proceedings.

    Kind regards

    Thomas Croll

    (Tom)

    Tom, let me some time. I I will get these verified case and will contact you.

  • How to insert the legacy data into the QP_RLTD_MODIFIERS table?

    How insert Legacy data into the QP_RLTD_MODIFIERS table in the instance of R12.

    I would use the QP_Modifiers_PUB API. Process_Modifiers to push the old data on prices in R12.  QP_RLTD_MODIFIERS is only used for certain types of discounts (in my prod environment, only the promos are given in this table).

  • Comparison of the data of the huge table effectively (on 30 million records)

    In my application status is to find the difference between 2 tables (two tables with the same structure) and store that data to another difference table

    Let's say the source table name is T_S, the target table is T_T and difference table is T_D.

    To do this there are 3 written motions, they are

    1) insert into T_D (select * from T_S), 'INSERTS' where the data not T_T;

    This query to find the pads

    2) insert into T_D (select * from T_T), "DELETES" where the data not T_S;

    This request is to find deletions


    3) insert into T_D (select * from T_S), "UPDATE" where (data T_S)! = (data T_T);


    This request is to find updates


    These queries take more than an hour to run, is there any other way of send to this problem OR any other way to write these queries efficiently?

    Thank you

    Divi

    This gives a test

    insert into nc_t1

    (

    col1

    col2

    sys_nc_type

    )

    Select decode (sys_nc_type, 'INSERT', a_col1, 'DELETE', b_col1, 'UPDATE', a_col1) col1

    decode col2 (sys_nc_type, 'INSERT', a_col2, 'DELETE', b_col2, 'UPDATE', a_col2)

    sys_nc_type

    BeO

    Select a.col1 a_col1

    b.col1 b_col1

    a.col2 a_col2

    b.col2 b_col2

    , where b.col1 is null then 'INSERT '.

    When a.col1 is null then 'DELETE '.

    When (a.col1 is not null and b.col1 is not null) and

    (

    (a.col2! = b.col2) or

    (a.col2 is null and b.col2 is not null) or

    (a.col2 is not null and b.col2 is null)

    ) and then "UPDATE".

    end sys_nc_type

    of in_t1 one

    full

    Join mst_t1 b

    On a.col1 = b.col1

    )

  • UPDATE/INSERTION of a table full of data to an empty table.

    Hi all

    I use Oracle 11g - 64 bit and the client of TOAD.

    I have two tables... a TMP_SUPP_CONTACTS (TMP) and table TBL_SUPP_CONTACTS (TBL). The TMP table has all these 'raw data ' (lower case), do not cut, etc. The Bill of lading DIRECT is completely empty, in addition to the columns. I need to move these data from the TMP table to the Bill of lading DIRECT.

    The columns in each table do like this:

    TMP:
    CNTCT_ID
    SUPP_IDNT
    FIRST_NM
    MID_NM
    LAST_NM
    ROLE_TITLE
    ADDR_LN_1
    ADDR_LN_2
    ADDR_LN_3
    CITY_NM
    STATE_CD
    POST_ZN_CD
    CTRY_CD
    PH_NUM
    EMAIL_ADR_TXT

    TBL:
    ORG_ID
    CNTCT_ID
    SUPP_CD
    DATA_SOURCE
    ROLE_TITLE
    FIRST_NM
    LAST_NM
    ADDR_ST
    ADDR_CITY_NM
    ADDR_ZIPCD
    ADDR_CNTRY_CD
    PH_NUM
    ADDR_EMAIL
    ADD_DT
    LAST_UPD_DT

    I am combining table TMP, ADDR_LN_1 + ADDR_LN_2 + ADDR_LN_3 at ADDR_ST in the Bill of lading DIRECT. My code looks like this...

    UPDATE TBL_SUPP_CONTACTS TBLSC
    SET
    TBLSC.ORG_ID = "XXX."
    TBLSC. CNTCT_ID = TRIM (UPPER (TMPSC. CNTCT_ID)),
    TBLSC. SUPP_CD = TRIM (UPPER (TMPSC. SUPP_IDNT)),
    TBLSC. DATA_SOURCE = 'E ',.
    TBLSC. ADDR_ST = TRIM (UPPER (TMPSC. ADDR_LN_1))
    || ' '
    || TOPPING (UPPER (TMPSC. ADDR_LN_2))
    || ' '
    || TOPPING (UPPER (TMPSC. ADDR_LN_3)),
    TBLSC. ADDR_CITY_NM = TRIM (UPPER (TMPSC. CITY_NM))
    || ' '
    || TOPPING (UPPER (TMPSC. STATE_CD)),
    TBLSC. ADDR_CNTRY_CD = TRIM (UPPER (TMPSC. CTRY_CD)),
    TBLSC. ADDR_EMAIL = TRIM (UPPER (TMPSC. EMAIL_ADR_TXT)),
    TBLSC. ADDR_ZIPCD = TRIM (UPPER (TMPSC. POST_ZN_CD)),
    TBLSC. FIRST_NM = TRIM (UPPER (TMPSC. FIRST_NM)),
    TBLSC. LAST_NM = TRIM (UPPER (TMPSC. LAST_NM))
    || ' '
    || TOPPING (UPPER (TMPSC. MID_NM)),
    TBLSC. PH_NUM = TRIM (UPPER (TMPSC. PH_NUM)),
    TBLSC. ROLE_TITLE = TRIM (UPPER (TMPSC. ROLE_TITLE)),
    TBLSC. LAST_UPD_DT = SYSTIMESTAMP,
    TBLSC. ADD_DT = MARCH 6, 2013.
    OF TMP_SUPP_CONTACTS TMPSC;

    So, I have a few questions.

    1. why this code does not work? It gives me an error on my statement FROM. I am new to Oracle and SQL as a whole, but trying my best to understand this.

    2. for the TBLSC. Field LAST_UP_DT... I would format the SYSTIMESTAMP in MM/DD/YYYY format, is this possible to do?

    Thanks to all the advice I receive for this problem. I appreciate it.

    Well, for starters, you want an INSERT... SELECT... statement, not an UPDATE statement. You have nothing to TBL to update, you will need to insert the data.

Maybe you are looking for