Form data in Excel Smartview

Hi all

I am currently using hyperion planning 11.1.2.3, I created a form with write access data directly in excel.

I defined point of view, the columns and rows to fit my needs.

Now, I want to enter data: I get the numbers on the grid, the cells become yellow, I click on send data, the cell becomes gray again and a zero is displayed.

It seems that the value has not been updated!

could you help me please?

Thank you in advance.

Best regards.

Toufik

What is a multi currency application? If for data entry is done locally. After entering data, you can run the currency conversion script to move it into the reporting currency.

Read more

http://docs.Oracle.com/CD/E17236_01/EPM.1112/planning_user_11122300/ch09s01.html.------

http://docs.Oracle.com/CD/E17236_01/EPM.1112/planning_user_11122300/ch09s03.html

http://docs.Oracle.com/CD/E17236_01/EPM.1112/planning_admin_11122300/ch12s04s22s01.html

http://docs.Oracle.com/CD/E17236_01/EPM.1112/planning_admin_11122300/ch04s08.html

Concerning

Celvin

http://www.orahyplabs.com

Tags: Business Intelligence

Similar Questions

  • How to export form data to Excel in E10?

    What is the easiest way to export form data to excel?

    Thank you!

    go to assets--> forms--> find your form of "open an existing form"--> once you access the form, click on the gear icon for settings for the top right--> click on 'presentation of display data'--> down to the left, you will see an option to export--> click on it and choose excel...

  • Records in form exported to Excel

    I have a form that displays all the results of a search screen. I created a command button I want to export form data to excel. Ive included the trigger and function I wrote. A xls file is created but it is empty. Any ideas.

    ------------------------------
    CODE OF THE TRIGGER
    -----------------------------

    declare
    number of v_dummy;
    v_where_clause varchar2 (1000);
    number of v_button;
    number of n_button;
    v_forms_output varchar2 (100): = null;
    v_forms_mapping varchar2 (100): = null;
    file_id number;
    MimeType VARCHAR2 (255): = ' & mimetype = application / vnd.ms - excel ";

    Start
    Select seq_program_remarks.nextval
    in file_id
    Double;
    : global.filename: = 'nrhrdata_ ' | TO_CHAR (file_id) |'. XLS;
    tool_env. GetVar ('FORMS_OUTPUT', v_forms_output);
    tool_env. GetVar ('FORMS_MAPPING', v_forms_mapping);
    : global.virtual_path: = v_forms_mapping | » /'|| : OVERALL. FILE NAME;
    : global.text_output_file: = v_forms_output | "\'||:GLOBAL. FILE NAME;
    -v_where_clause: = create_where_clause;
    : Global.BUFFER_PART: =: RESEARCH. NRHR_PART;

    -SET_BLOCK_PROPERTY('NRHR',DEFAULT_WHERE,v_where_clause);
    SET_BLOCK_PROPERTY ('NRHR', ONETIME_WHERE, ' NRHR.) PART_NUMBER = "' | : Global.BUFFER_PART | " ') ;
    go_block ('NRHR');
    execute_query;
    set_application_property (cursor_style, 'BUSY');
    v_dummy: = dump_data('NRHR',:global.text_output_file);
    set_application_property (cursor_style, 'DEFAULT');

    If v_dummy = 0 then
    go_item ('control.exit_button');
    synchronize;

    set_alert_property ('write_complete_alert', alert_message_text,
    "File" "|: global.filename |" ' "
    ("' was correctly written to disk.") ;

    v_button: = show_alert ('write_complete_alert');

    Web.show_document (: global .virtual_path, "_BLANK");

    on the other
    set_alert_property ('write_failed_alert', alert_message_text,
    "An error occurred while writing to file ' ' |
    : global.filename |
    ("' on the disk.") ;
    v_button: = show_alert ('write_failed_alert');
    end if;


    end;

    ------------------------------------------------------
    THE FUNCTION CODE
    ------------------------------------------------------

    function dump_data (block_name in varchar2,
    output_file in varchar2: = 'data_dump.xls')
    Return number
    is
    item_id point;
    v_item_name varchar2 (80);
    item_type varchar2 (40);
    block_id block;
    file_id text_io.file_type;
    number of start_rec;
    number of stop_rec;
    number of pad_length;
    item_disp varchar2 (20);
    item_align varchar2 (20);
    item_value varchar2 (32767).
    skip_this_item exception;
    number of item_count: = 0;
    Boolean column_align: = TRUE;
    v_field_select varchar2 (80);
    v_item_label varchar2 (50);
    Start
    block_id: = find_block (block_name);
    file_id: = text_io.fopen (output_file, 'w');

    go_block (block_name);
    start_rec: = 1;
    last_record;
    stop_rec: = get_block_property (block_id, query_hits);

    go_record (start_rec);
    --
    -Print the column headings
    --
    item_count: = 0;
    v_item_label: = get_block_property (block_id, first_item);
    v_item_name: = block_name |'. ' || v_item_label;
    item_id: = find_item (v_item_name);
    While v_item_label is not null loop
    v_field_select: = 'NRHR.' | get_item_property (item_id, item_name);
    If (name_in (v_field_select) = "Y") then
    If item_count > 0 then
    TEXT_IO.put (file_id, chr (9));
    end if;
    TEXT_IO.put (file_id, v_item_label);
    item_count: = item_count + 1;
    end if;
    v_item_label: = get_item_property (item_id, nextitem);
    If v_item_label is null then
    TEXT_IO.new_line (file_id, 1);
    on the other
    v_item_name: = block_name |'. ' || v_item_label;
    item_id: = find_item (v_item_name);
    end if;
    end loop;
    --
    -End of the print column headers
    --
    because me in start_rec... stop_rec loop
    item_count: = 0;
    v_item_name: = block_name | '.' || get_block_property (block_id, first_item);
    item_id: = find_item (v_item_name);

    While v_item_name is not null loop
    pad_length: = get_item_property (item_id, max_length);
    item_disp: = get_item_property (item_id, displayed);
    item_type: = get_item_property (item_id, data type);
    item_align: = get_item_property (item_id, alignment);
    v_field_select: = 'NRHR.' | get_item_property (item_id, item_name);
    If (name_in (v_field_select) = "Y") then

    otherwise (FALSE and item_disp = 'FALSE') then

    If column_align = TRUE then
    item_value: = nvl (name_in (v_item_name),' ');

    If item_align in ('START', 'LEFT', 'CENTER') then
    item_value: = rpad (item_value, pad_length,' ');
    on the other
    item_value: = lpad (item_value, pad_length,' ');
    end if;
    on the other
    item_value: = name_in (v_item_name);
    end if;

    If item_count > 0 then
    TEXT_IO.put (file_id, chr (9));
    end if;

    TEXT_IO.put (file_id, rtrim (replace (item_value, chr (10),' ')));
    item_count: = item_count + 1;
    end if;
    end if;

    v_item_name: = get_item_property (item_id, nextitem);

    If v_item_name is not null then
    v_item_name: = block_name | '.' || v_item_name;
    item_id: = find_item (v_item_name);
    on the other
    TEXT_IO.new_line (file_id, 1);
    end if;

    end loop;

    next_record;
    end loop;

    premier_enregistrement;
    TEXT_IO.fclose (file_id);
    Return (0);

    exception
    while others then
    Return(-1);
    end dump_data;

    Published by: Wampa88 on February 9, 2010 07:24

    Forms Text_IO package is designed to read/write the ASCII text from the application server - he can't stand not to write data from a form on any non-ASCII format. I recommend you use the WebUtil library forms to export your form data to Excel. There are many discussions in the Forums on the use of WebUtil for this purpose. There are also a few very good Metalink Documents on the subject. This is a very good document on the subject, but you must have a Metalink account to see it.

    DOC - ID: 247606.1 (how to copy records in the form in MS Excel using WebUwil)

    I hope this helps.
    Craig...

    If a response is appropriate or useful, please mark accordingly

  • Cannot convert PDF form filled in Excel with data

    Hi all

    I've been struggling with the same problem for days now and any help or input would be greatly appreciated.

    A quick overview: we have created a PDF form in order to assess the specific events of marketing that is provided to all of our stores. Once an event occurs, they will fill the form and send it to the HQs (me). It is from there begins the problem: I want to then convert the filled PDF in Excel (to compare the data of all events), who works in general, but excel does not include data from the PDF and displays only the data of non - fill PDF form.

    The problem: I can convert my PDF with Acrobat Reader XI forms in Excel, but the data filled in the forms (which I want to see in Excel) are not included in Excel.

    I work with the operating system Windows 7 Professional and the graphics department created the PDF form in InDesign CC 2015.

    Thank you very much in advance and I hope that the info provided is sufficient.

    Best,

    Stefan

    Not with Acrobat Reader. With Adobe Acrobat, you can export the form data or flatten the form fields before you convert the shape.

  • I need to merge a form with data in Excel, how can I do?

    Hello, I use a form to fill out on-line the Government and need to fill it with data in Excel. How can I do?

    Thank you very much.

    MY

    This type of operation is called a mail merge. It can be done using the PDFMaker plugin in (some versions of) Office, or by using a script.

    The names of the columns in the Excel file must match the names of the fields in the PDF file, however.

  • Reading excel data file in Oracle form data blocks

    Hi all

    I want to read the data from the excel file in the data block of the module of the form. There are many resources available that explain how to put the data in oracle forms in the excel sheet, but I can't find a single resource to achieve this functionality. Can someone please help me get around this problem. Any help will be much appreciated.

    Thanks in advance
    Bilal

    Bilal,.
    There is little documentation available through My Oracle Support, which shows how to read an Excel file in a form, but you need a support contract with Oracle to access the document (how to read data from an EXCEL worksheet in a form using WebUtil Client_OLE2 [813535.1 ID]).

    I've seen this issue come up in the forum from time to time, so I wrote a small form demo which illustrates playback in Excel in a form. Discover forms: how to read an Excel file in a form. This demonstration uses the WebUtil library, so you must make sure have WebUtil correctly configured in the Forms Designer, as well as on your application server.

    Hope this helps,
    Craig B-)

    If someone useful or appropriate, please mark accordingly.

  • Import data from Excel in PDF with Acrobat Pro XI - is it possible? How?

    I need to be able to create a pdf file where certain information can be merged to an Excel spreadsheet in the pdf file so that our land use specialists can use tablets to fill the field. I also need to be able to create a field where the user can join or import a jpg file. Is it possible to do this with Acrobat Pro XI? Another program is necessary. I need to know the answers to my questions by January 28, 2016.

    Hi shannonr80675036,

    Yes, but you there are two things you need to do in Excel for this to work:

    Columns must be named the same as the field names in the PDF form. The names that you use in your PDF form, or you must change the names of fields in the PDF form so that they correspond to the column names in Excel, you can either match. In this example, I took the first approach and used the field names as my column headings:

    When you export your data to Excel file, you must select the "Tab Delimited Text" format. It is one of the export options in Excel (and other spread sheet applications) which is available when you select file > save as:

    Once you have your tabs-delimited text file, open your PDF form, and then select Tools > forms > more form Options and click Import:

    In the file dialog box, select this option to import a text file, browse to your exported text file and select it. In the next screen, you can then choose what import record, you can import only one record at a time:

    This will complete the PDF form with the selected values:

    That, for each record you have in your Excel file and save the PDF file under a new name.

    Kind regards

    Nicos

  • How to export data to excel that has 2 tables with the same number of columns and the column names?

    Hi everyone, yet once landed upward with a problem.

    After trying many things to myself, finally decided to post here...

    I created a form in form builder 6i in which clicking on a button, the data gets exported to the excel sheet.

    It works very well with a single table. The problem now is that I cannot do the same with 2 tables.

    Because the tables have the same number of columns and the columns names.

    Here are the 2 tables with column names:

    Table-1 (MONTHLY_PART_1) Table-2 (MONTHLY_PART_2)
    SL_NOSL_NO
    MODELMODEL
    END_DATEEND_DATE
    U-1U-1
    U-2U-2
    U-4U-4
    ..................
    ..................
    U-20U-20
    U-25U-25

    Given that the tables have the same column names, I get the following error :

    402 error at line 103, column 4

    required aliases in the SELECT list of the slider to avoid duplicate column names.

    So how to export data to excel that has 2 tables with the same number of columns and the column names?

    Should I paste the code? Should I publish this query in 'SQL and PL/SQL ' Forum?

    Help me with this please.

    Thank you.

    Wait a second... is this a kind of House of partitioning? Shouldn't it is a union of two tables instead a join?

    see you soon

  • How to NOT send some form data when the form is submitted

    Hello

    I created a PDF form with radio buttons in the Group and the boxes. When I the form of data, such as values using the submit by e-mail button to send form data as XML or merge data into a spreadsheet files, I'll see the data values for radio buttons and checkboxes.

    What I want here is to don't get the data values for some controls such as the boxes option, but no other controls like check boxes, in the XML or Excel worksheet after submission of the form. I know how to hide the controls in the form, but I have to the visible and active boxes on the form.

    Is there a way to hide or do not send form data when the form data is submitted?

    Thank you

    Sam

    Hi Kyle,.

    That's exactly what I want! Once I have not selected any data binding, the field is in shape and active, but when submitted as XML or it merge with a spreadsheet, the field is gone.

    Forgive me if I didn't my self clear in my question. Answer you is straight to the point.

    Thank you very much!

    Sam

  • Form data and Trailbalance

    Hi all can them all tell me the following

    HFM we can submiht the data by Dataform as well as FDQM. the same we can check in the Application of HFM.

    I'm Trailbalance of loading data in Excel by FDQM acoordingly, it reflects the change in the Application.the HFM even will happen through Dataform.

    for which purposes to use presentations given by FDQM and for which purpose we use Dataform.i know the purpose of Dataform and FDQM. What other situation

    could there be to use especially for people.

    It depends on your environment honestly and you want to do.

    When I am at the moment, we use FDM to load data directly from the great books of Business Unit. (P & L, balance sheet, IC, cash flow, etc.). Unfortunately, they do not have what we want every month in their books. For these items, they go to web HFM and complete data forms. There is usually additional type information such as geographic income, count, material costs, etc..

    In addition, when the our forecast / budgeting in HFM and as divisions have no Budget/forecast in their GL system, they use web forms to key in information. (We recently deployed a model of multiple load to handle this, but 50% still use webforms as they are used to it)

    When considering to use, I would like to evaluate the following:

    The amount of data? -If we are talking about a large amount of data, I recommend to do it through FDM.
    Reactivity? -If you want to see the numbers as soon as possible, I would do it in a Web Form as he takes a few steps.
    Ease of use? -50/50. Some people like webforms and some people like excel (multi-charge) / FDM GL upload.
    Audit trail? -For things like P & L/BS our listeners as power level back. With the help of FDM gives us some ability to do. From users directly shapes do not tell us much where they got the numbers that they have seized.

    Bottom line, you could do it in Web Forms, you could do it all in FDM, or you can meet somewhere in the Middle, it depends on your business needs.

  • Import data from Excel

    Is it possible to import data from Excel into a pdf form.

    I have some text on a form fields that need to be filled automatically.

    Thanks in advance.

    : )

    To manually import from Excel, the simplest method is to first convert a spreadsheet to a tabs-delimited text file. The first line of the sheet must be the exact field names (case matters) corresponding to the data in the following lines.

    In Acrobat 9, you can import a row of data from the file by selecting: forms > manage form data > import data...

    and select the file, then one row of data in the file.

    If you want to do it automatically or by any other non-manual method, post again and provide more information.

  • Return of form data format

    Thank you for taking the time to read my question. I use Adobe Acrobat Pro X. I have created a form and it works well. My question comes from a wait when I thought that I would be able to have the data returned in a string, or a comma string separated and not in a .pdf. file

    Is it possible to do?

    Example:

    I send the pdf form to a user, the user fill it out, and when they send it to me, I just get the form data in an e-mail message, not the entire form.

    Thank you

    Brad

    Excel does not support FDF or XFDF.  Rather than choosing the option on your action button to "Submit a form", change to "Run a JavaScript" and press the Add button.  After changing the mailto address, paste the following script:

    this.submitForm({)
    cURL: "mailto:[email protected]',"
    cSubmitAs: 'XML '.
    })

    Any fields left blank will be included in the returned data.  If you want them to be included, or if you want that the differently structured XML, then an optional parameter can be added to the function call above (oXML).  However, it can be complex depending on your needs for implementation of the XML data object to assign to oXML.

  • Removing form data

    Hello!

    I filled out a form on a web page and submitted it. On the next page, I received an e-mail confirmation that the information has been received. Then I removed all the browser history (historical search, form data, cookies and so on).

    Is there a risk that this suppression of the browser history is recalled or cancelled the data has already been submitted?

    Some websites may use the storage side edition document browser, followed by the scores of the game data authenticate you and other transient data. However, in your scenario, when you submit a form and get a confirmation of the server which is your data, the server is no longer on what account it is stored in your browser.

  • How can I get Firefox 9.0.1 to remember form data? (I use Windows XP. Yes, I already looked under tools/options/privacy and don't see anything useful.)

    How can I get Firefox 9.0.1 to remember form data? I use Windows XP. Yes, I already looked under tools/options/privacy and don't see anything useful. I don't see that 'monitoring' and 'bar' on the Privacy tab. The previous version I was using shape data stored without any problem. I can't get 9.0.1 to remind OF THE form data.

    'Re missing you the section history of this window. See the screenshot I posted below.

    Try Firefox SafeMode to see how it works there.

    A way of solving problems, which disables most of the modules.

    (If you use it, switch to the default theme).

    • You can open the mode without failure of Firefox 4.0 + by pressing the SHIFT key when you use the desktop Firefox or shortcut in the start menu.
    • Or use the Help menu option, click restart with the disabled... modules while Firefox is running.

    Do not choose anything at the moment, just use 'continue in safe mode.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before using the shortcut of Firefox (without the Shift key) to open it again.

    If it's good in Firefox Safe mode, your problem is probably caused by an extension, and you need to understand that one.

    http://support.Mozilla.com/en-us/KB/troubleshooting+extensions+and+themes

    When find you what is causing that, please let us know. It might help others who have this problem.

  • Firefox 4 does not save form data after sending form and pressing the previous button

    Firefox 4 does not save form data after sending form and pressing the back button... It's very annoying that it erases all data. It worked fine on FF3.

    See:

    • Firefox or tools > Options > privacy > History: "don't forget to search and form history."

Maybe you are looking for