HFM data extract via Web

We are using 11.1.2.1 on windows 2008 R2 servers.
Is there in HFM anything that limits the file size when you're doing a metadata or data export? Maybe not a file size limitation, but may a time limitation or something? I know when I tried to do an export of the application via the HFM client, I got the entire file. When I did it via the web, I could tell I got about half of the file (based on the file size) and I think it gave me the last half of the file since it didn't start with the correct file tags. I typically don't do any of my extracts via the web (I do them through the client), but many of our users do. If there is some kind of limitation within Hyperion do you think we could increase it? We have a user who didn't get a complete file via the web.

Not sure if this is your problem or not, but when we upgraded to 11.1.2.1.103 I had a similar issue where I would only get 1/2 my metadata extract. Maybe try this and see if it helps:
Metadata/Data Exports
You will need to set the AspResponseBufferLimit by performing the following steps.
By default, the value for the ASPBufferLimit property in IIS 6 and for the bufferLimit property in IIS 7 is 4,194,304 bytes (4 MB).
The recommendation is to set the value to 1073741824 (1 GB).
To increase the buffering limit in IIS 6, follow these steps:
1. Click Start, click Run, type cmd, and then click OK.
2. Type the following command, and then press ENTER:
cd /d %systemdrive%\inetpub\adminscripts
3. Type the following command, and then press ENTER:
cscript.exe adsutil.vbs SET w3svc/aspbufferinglimit LimitSize
Note: LimitSize represents the buffering limit size in bytes. For example, the number 1073741824 sets the buffering limit size to 1 GB.
To increase the buffering limit in IIS 7, follow these steps:
1. Click Start, click Run, type inetmgr, and then click OK.
2. In the left hand panel, expand the computer name by clicking the plus sign next to it.
3. Expand the “Sites”.
4. Expand “Default Web Site”
5. Select the HFM web site in the expanded list.
6. In the middle panel “Features View”, in the IIS section, double click the ASP icon.
7. Expand “Limits Properties”.
8. Change “Response Buffering Limit” to 1073741824.
9. In the right hand panel, select “Apply”.
10. Restart IIS.

Similar Messages

  • HFM Data Extract in Task Flow ??

    HI,
    I have a couple of clarification on HFM Data extract in HFM Task flow,
    1) Is Data extraction possible for the predefined accounts in HFM task flow? – in which Accounts & other dimesion memebers needs to be pre-defined so that just on execution of the task flow, HFM needs to extract the data into a text file (i.e., It should not prompt to select the Accounts (as well as other dimension members) each time we extract)
    2) For Data extract purpose, we need some of the HFM members in a different name. So, we planned to create a alias table. In data extraction, Is it possible to select the member names from an custom alias table?
    3) We have to define a specific set of Account values as negative in the extracted data file which is actually positive in HFM. Also, In the extracted data file, We need to have the Account member name same as the existing HFM Account name.
    a.     For instance,
    In HFM:
    Account Member Name in HFM: VUK
    Account Value: 1000
    In the Extracted data file:
    Account Member Name in data file: VUK
    Account Value: -1000
    Is this feasible? If yes, can you explain a bit in detail (like how we can implement this in HFM)
    Thanks,
    Siva

    HI,
    I need a help in HFM Data extraction.
    We use four custom dimensions and our requirement is to get the data extract for the custom members which we need(we need only parent members in custom dimensions).
    But, by default, HFM extracts the data for all base custom members(and not for any parent custom members) - which we dont wish to have.
    Is there any possiblty to extract the data by choosing the custom members for which we need data ??
    Our's is a classic HFM Application in 9.3.1. (in Oracle DB)
    Your response will be highly appreciated !!!
    Thanks,
    Siva

  • Download data entered via web to a text file.

    Hello,
    I'm developing a very simple BSP aplication in which the user enters via web some data in some fields. This data is store in an internal table. This table is an attribute in the application class. In this class there is a method to save the data to a file in presentation server. I've tried using WS_DOWNLOAD and GUI_DOWNLOAD but these function modules don't work. I would like to know if there some function modules or methods to download data to a file and that can be used in a BSP aplication.
    Thank you very much,
    Carlos
    Details:
    1-Layout
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    Carga ficheros
      generar_fichero
          exporting nombre_fichero = fichero.
    3- Method generar_fichero
    method GENERAR_FICHERO .
    ***Opción 1: emplear una instancia de una clase y llamar a su método
    data: file type ref to CL_GUI_FRONTEND_SERVICES.
    create object file.
    data l_filelength type i.
    call method file->gui_download
       exporting  filename = nombre_fichero
       importing filelength = l_filelength
       changing   data_tab = m_tabladatos
       exceptions
          FILE_WRITE_ERROR                = 1
          NO_BATCH                        = 2
          GUI_REFUSE_FILETRANSFER         = 3
          INVALID_TYPE                    = 4
          NO_AUTHORITY                    = 5
          UNKNOWN_ERROR                   = 6
          HEADER_NOT_ALLOWED              = 7
          SEPARATOR_NOT_ALLOWED           = 8
          FILESIZE_NOT_ALLOWED            = 9
          HEADER_TOO_LONG                 = 10
          DP_ERROR_CREATE                 = 11
          DP_ERROR_SEND                   = 12
          DP_ERROR_WRITE                  = 13
          UNKNOWN_DP_ERROR                = 14
          ACCESS_DENIED                   = 15
          DP_OUT_OF_MEMORY                = 16
          DISK_FULL                       = 17
          DP_TIMEOUT                      = 18
          FILE_NOT_FOUND                  = 19
          DATAPROVIDER_EXCEPTION          = 20
          CONTROL_FLUSH_ERROR             = 21
          OTHERS                          = 22
    *if sy-subrc ne 0.
    raise error_fichero.
    *else.
    **borrar cookie
    *endif.
    ***Opción 2: llamada directa a la función ws_download_wan "FALLA:
    ***********************************************"no deja rastro del fallo
    data l_filename(128).
    write nombre_fichero to l_filename.
    *CALL FUNCTION 'WS_DOWNLOAD_WAN'
    EXPORTING
      BIN_FILESIZE              = ' '
      CODEPAGE                  = ' '
      FILENAME                  = l_filename
      FILETYPE                  = 'ASC'
      MODE                      = 'A'
      WK1_N_FORMAT              = ' '
      WK1_N_SIZE                = ' '
      WK1_T_FORMAT              = ' '
      WK1_T_SIZE                = ' '
    IMPORTING
      FILELENGTH                =
    TABLES
       DATA_TAB                  = m_tabladatos
    EXCEPTIONS
      FILE_OPEN_ERROR           = 1
      FILE_WRITE_ERROR          = 2
      INVALID_FILESIZE          = 3
      INVALID_TABLE_WIDTH       = 4
      INVALID_TYPE              = 5
      NO_BATCH                  = 6
      UNKNOWN_ERROR             = 7
      OTHERS                    = 8
    *IF SY-SUBRC <> 0.
    raise error_fichero.
    *else.

    Hallo Carlos,
    Welcome to the forum. As with all things new in life, one does not know where to start immediately. I would like to recommend the <a href="/people/brian.mckellar/blog/2004/06/11/bsp-trouble-shooting-getting-help">Getting Help</a> guide as first interesting article to read.
    Specifically you are interested in the section for searching this forum. Use keywords such as download or GUI_DOWNLOAD. Also consider to look at keyword Excel. Although not exactly on topic, the Excel discussions does address this partly. All of this has been discussed many time before.
    Finally, consider to read <a href="/people/mark.finnern/blog/2003/09/23/bsp-programming-handling-of-non-html-documents">BSP Programming: Handling Of Non-HTML Documents</a>. This will really show you some different techniques to download files onto the computer.
    brian

  • HFM data extract for Multiload

    Very new to this and need some help please. When extracting HFM data for FDM multiload what is the best way to get the data for periods into columns and not rows without formatting the data manually?

    The data extract interface is limited and does not allow you to have multicolumns for the periods. What you can try is to create a smartview (if the number of rows is not too large) and the save the file as a CSV, then in a text editor replace all commas by semicolons. Otherwise, if you can write Excel VBA code then this could also be an alternative again number of lines could be a potential issue.
    If you don't have to run it through translation tables, you can probably accomplish must of the changes using a strong text editor such as K-edit.

  • Question about data extraction from web forms

    I am developing a simple web form in DreamWeaver MX for
    increased accesibility for users who utilize screen reader
    software, as navigating PDF forms is still currently very difficult
    for most of the screen readers to navigate. I was wondering if
    there is a way to take an .asp webform that a user fills out and
    when they hit a print button it would extract the data from the
    form and open an Adobe PDF form and populate the data they entered
    into specific fields within the PDF form which would allow them to
    print an official copy of the form they used the web version to
    complete. Any insight into this possibility is greatly appreciated!
    Thanks,
    AU PSD

    Regex? Lots of indexOf? Parsing...

  • Meta-data creation via web forms?

    Hi,
    I know this question would turn out to be more of a would-be-nice to have request for Hyperion Planning. Nonetheless, I would like to confirm that it is not already available in version 11.
    Does the new version provide the capability to create meta-data (members or properties) via Hyperion web forms fro Hyperion Planning?
    Ofcourse I am fully aware of the downside of the above, just want to make sure.
    I know only Dodeca provides such a feature via Excel which I think is pretty cool.
    Thanks for your responses..

    Hi,
    The quick answer is no, you have to remember that planning has to push any metadata changes down to essbase, I am not sure how many would want users constantly changing hierarchies and refreshing planning.
    There is always EPMA to manage the metadata.
    There is the ability in 11.1.2 to do adhoc analysis on forms and then save them as personalized views
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Data entrying via Web-Dynpro

    Dear All!
    Can somebody help me to relaize the following requirement:
    Through WebDynpro (Internet Browser) data entrying. Suppose there
    are couples of input fields due to these fileds the user can entry
    datas into the system.
    Regards
    Ilhan Ertas

    Hi,
    Pl go through the following liniks
    Webdynpro Links
    Programming UI and Navigation
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9214b1e5-0601-0010-fdb0-ec32d43b06e0
    Webdynpro for Java
    http://help.sap.com/saphelp_nw2004s/helpdata/en/15/0d4f21c17c8044af4868130e9fea07/frameset.htm
    Webdynpro Samples
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/web%20dynpro%20sample%20applications%20and%20tutorials.htm
    Web Dynpro User Interface
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/ce44a14c-0a01-0010-af89-d7dbd944f176 [original link is broken]
    PDf
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/nw/netweaverdevelopersguide2004s/sap%20netweaver%20developer's%20Guide%202004s/UsingJava_00_PDFsList.ca
    SAP Netweaver Application Server eLearning Catalog
    https://www.sdn.sap.com/irj/sdn/elearn?rid=/webcontent/uuid/b1203f5e-0501-0010-bb88-915402c954f2 [original link is broken]
    DTR
    http://help.sap.com/saphelp_nw04/helpdata/en/88/cb0b405bacdd5fe10000000a155106/frameset.htm
    Regards
    Ayyapparaj

  • Custom Dimension sql names in version 11.1.2 HFM Data Extract

    Does someone know how to reference the Custom Dimensions in Hyperion 11.1.2 in Hyperion 9.3 they were custom1_item, Custom2_item,custom3_item, and custom4_item but I am not sure what they are now called? any help would be appreciated.

    I'm not clear on what you're after, but I think your question is about the item tables in HFM's database? If so, the custom dimension table is now appname_custom_item for all of the custom dimensions. Each custom is then distinguished by LDIMID field, which contains the custom dimension's number "1", "2", "3", "4". I've not examined the same for 11.1.2.2 for an application having more than four dimensions.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Sending Data to BAM via web service

    Is it possible to send data to BAM data objects via web service / http soap ? I know we can call extenal web service from BAM, but I was thinking of doing a real time from source application to BAM via http-soap web service.

    Hi,
    I hope it es not too late for an answer ...
    Yes you can do that .... have a look to this example
    procedure UpSert_DO (do_name VARCHAR2, do_key VARCHAR2, xmlload VARCHAR2) is
    begin
    --'&lt;_NAME>HZ.01.10&lt;/_NAME>&lt;/_WS>
    http_post(
    'http://localhost/OracleBAM/Services/DataObject/DataObjectOperations.asmx',
    '<?xml version = ''1.0'' encoding = ''UTF-8''?><env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://xmlns.oracle.com/integration/bam">
    <env:Body><ns0:Upsert><ns0:dataObject>' || do_name || '</ns0:dataObject><ns0:keyCSV>do_key</ns0:keyCSV><ns0:xmlPayload>' || do_key ||
    xmlload ||
    '</ns0:xmlPayload></ns0:Upsert></env:Body></env:Envelope>',
    'text/xml; charset=UTF-8',
    null,
    null,
    'USER_NAME',
    'PASS_WORD',
    '"http://xmlns.oracle.com/integration/bam/Upsert"'
    end;

  • Extraction from web service without XI

    Hello all!
    I want to realize data extraction scheme without usage XI
    DB2 Stored proc -> Web Service -> BW
    Is realy?

    Hello can you refine your question with more specification?
    Yes, it can possible data extraction from web service, but what you are exactly looking for?

  • HFM - log that shows if a user has loaded data via web form or excel load.

    I can see any data loads that are coming from FDM, but is there a log that shows any data entered into HFM via web forms or submitted through an excel file? Any input is appreciated.
    Thanks

    You could enable Data Audit to capture data changes made by users, though this will not capture which method users chose to change the data. That is, HFM can show that data changed, and who changed it, but cannot tell whether the data was changed through a form, grid, smart view, or FDM. If you want to prevent users from changing data through forms, grids, or smart view, you can secure those input methods, but you cannot capture which one is used.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Update/insert/delete data from xcelsius to Database via web service

    Hi,
    I need to create dashboard that go function can <b>update/insert/delete</b> data send to <u>Database</u> thru <u>web services</u>, as i know got 2 xcelsius add-on software which support those of function <b>InfoBurst</b> and <b>flynet </b>
    <b>InfoBurst</b>
    http://www.infosol.com/azbocug/minutes/4-Writeback%20to%20a%20Database%20with%20Xcelsius.pdf
    <b>flynet </b>
    http://www.flynetviewer.com/public/community/Blogs/FlynetXcelsiusServerUser/default.aspx
    Except this 2 purchase add-on xcelsius, any other solution ?  
    Maybe need to write some in MSSQL or C# programming which enable insert, update, delete ...etc  ?
    *note: i not use Xcelsius Engage Server , i use Xcelsius Engage only
    thanks,
    regards
    s1
    Edited by: Leong Pui Kee on Mar 1, 2011 6:06 AM

    Hi,
    As of now in Xcelsius/Dashboard Design there is no feature or functionality to insert/update/delete data from database.
    Solution:
    Create a Web service in let’s say C# or Java, which will perform insert/update/delete operation.
    In Xcelsius add Web Service connection and user above web service.
    Xcelsius Web Service connection provides option to pass input values to a Web Service (Input Pane) and get the result (Output values pane).
    We can pass values to be written to the database as a input to Web Service via Web Service connection from Xcelsius and write data to the database.
    Note:
    Performing delete operation from Xcelsius Dashboard could be risky and may delete important data from database. I would not prefer giving delete option/functionality in Xcelsius dashboard.
    Hope this helps!
    Thank you.
    Regards,
    Vinay Mhaske

  • Is it possible to extract essbase data as a web service

    Hi All,
    I would like to know if it is possible to extract essbase data as a web service. What are the things to look for to achieve this functionality. Also request you to help me with a simple example.
    Thanks for your help in advance.
    Thanks,
    Praveen

    1)http://docs.oracle.com/cd/E26232_01/doc.11122/aps_admin.pdf
    2)http://code.google.com/p/essbase-plsql-interface/downloads/list?deleted=1&ts=1331485947
    3)http://essbase.ru/archives/category/performance/essbase-api/xmla

  • HFM and Workspace 11.1.2.0 issues with opening Apps and reports via web

    Hi,
    we are running decentralized environment where we have HFM Web and App servers on Windows 2008 Server SP2 and few shared elements like OHS, HSS (Shared Services) and Workspace service from Solaris 10 SPARC (64bit) server.
    The base version is 11.1.2.0 and on Windows we have fixes from 1-9 installed whereas on top of Solaris we have no fixes/patches yet installed.
    When we test workspace from web server desktop connecting to Solaris server it seems traffic is fine as Apps are available and browsing them seems to work normally = Webserver is able to locate Workspace on Solaris, Workspace is able to connect to HFM App server and App server again able to connect HFM App db container.
    When we access to workspace url over web (the traffic according to my understanding should go via OHS to Webserver and then redirect to Solaris server Workspace and then like mentioned above.
    Something gets wrong here as when accessing Workspace url we get non-showing icons, $ characters in messed up menu rows and few error messages like :
    - Invalid or could not find module configuration
    - Required application module hfm.appcontainer is not configured. Please contact your administrator
    - Namespace Communication Error
    Also opening test report via web url workspace gives error:
    Required application module reporting.reportViewer is not configured. Please contact your administrator.
    +
    Namespace Communication Error
    Our experience from previous lower environment was that symptons like described might be caused by wrong service start order. Thus we tried to review this carefully and boot in correct order, but still problems. Also, boot order shouldn't be totally wrong as workspace works when using directly from Web server.
    If any of mentioned symptons rings anyone's bell please reply.
    Something still in firewalls or rather in configuration, OHS maybe?
    At this point we don't yet dream of proper loadbalancing or High availability, but rather get this single web and single app server server + shared elements from Solaris server to work without error messages.
    We do know that release 11.1.2.1 is supposed to fix many things, but we need to get this 11.1.2.0 working in a way or another.
    Thanks for any tips that might arise.
    Br, MK
    Edited by: user9327521 on Nov 30, 2010 4:55 AM

    Were u able to ever resolve this? And how?
    Thanks,
    Sejal

  • Upload data via web

    Hi
    My problem is if i open a document something.doc via web brovser IE 5.0 and i make some changes and i save document, then i try to reopen document and the contents of document is the same. But if i open document via file explorer i can see changes. And if i close IE and start IE again and when i reopen document i see changes. Could anyone say why? and how could i solve this problem.
    thanks by

    Hi Mark,
    We are implementing bi-ip w/support pack 11.  We have a current situation that needs solved:
    1.  Ability to cut and past from excel into IP via the web and excel interface
    2.  Ability to upload data from excel in IP via the web or excel interface.
    You mentioned  in your comments below:  "Also you can directly post data from an Excel file to BI-IP without any programming".  Can you send me more information on this solution?  Also, is there an how-to paper on using the "old" file upload solution from BPS?  We never implemented bps.
    Thanks,
    Dan LaFon
    Fujitsu
    [email protected]

Maybe you are looking for

  • Master detail form issue

    Hello, I am unsure if this is a bug or how I'm doing things. I'm using version 4.1. I am creating a master/detail report (on the same page) using the wizard to create the page. I have no problem creating the page and it works. The only changes I make

  • New Sync between computers using iPod

    Steve said that you should be able to sync music between two computers one being a mac, and the other being a PC, im trying to do that now, but when i insert the ipod into the PC it says they aren't formatted for a PC, im just not sure how its suppos

  • Bapi for GB01 Transaction

    I want to post entries to FI-SL (Sub-ledger) from within my program using Transaction GB01. Is there a BAPI or a function module (which returns exceptions) available for this transaction. I want to avoid writing BDC program for this purpose. Any help

  • How to use FM: SXPG_CALL_SYSTEM

    Hi all. i used the FM SXPG_CALL_SYSTEM  as below w_ext_cmd = 'ZREMSH'. w_params = 'HARP -L BATCHMGR LS -L ~ORDER_BOOKING/PMAIL/DV4/*.TXT'. CALL FUNCTION 'SXPG_CALL_SYSTEM'       EXPORTING         commandname                = w_ext_cmd         additio

  • Change contract date rule for contract items

    Hi I am trying to Change the Contract End date. This is getting updated. But there are some date rules which are not getting updated based on the contract end date. Please suggest. Regards, Arpit