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/

Similar Messages

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Saving data in Planning web form with about 270 columns failed

    Hi all and please help!
    We developed a number of planning forms with a lot of columns (business requirement:() and faced issues with entering data in both web form and excel via smartview.
    As I undersood already that it's not about 'service.olap.dataQuery.grid.maxColumns' property in essbase.properties file for APS.
    For test I developed some planning forms with different number of columns (and only one row) from 255 to 300 and saving stops to work when the number of columns exceeds 257 columns. It's rather close to default value for maxColumns property=255 but not equal. I essbase log we could see short spreadsheeting request and then restarting of Essbase server.
    And at the same time if we transposed columns into rows - saving works properly.
    Please help!
    Thanks in advance,
    Gregory Taxelman

    Hi, Alp
    Thank you for you answer. I've checked your link and it's amazing that information like this was written not in admin but in user guide.
    Another thing i've wondered that it depends on setting of Calculate Currencies calc script (run on save). But it's just a think men must know and do I think.
    Unfortunately I can't see how does it work, although I've done this settings.
    If I set local currency for one of the entity as GBP then I can enter data in GBP of course and Calculate Currencies script runs ok. I can see exact values for local (GBP) and default currency (USD) just on planning form as I set currency dim in page.
    But in my case when i set local currency for this entity back to USD entered value in GBP always changed back to USD regardless of Calculate Currencies script settings. It happens during save on the form
    Can I get a bit more information about some other settings to be done to make this functionality work?
    BR,
    Vladimir

  • Meta data missing in Web Gallery

    When uploading images to my web gallery Aperture generates small and medium size jpeg files of my images. These jpegs does not include meta data. Has anyone seen this too?
    If I select to "Allow" "Downloading of:" (Optimized Images, Actual Size Images, Optimized & Master Images) then Aperture will generate large size jpegs that include meta data.
    Can it be right that you have to upload and generate the larger optimized jpegs in order to show meta data in your web galleries?
    I am running Aperture 2.0.1 and Leopard 10.5.2
    Karsten

    It seams that others have seen the same minor bug or feature as outlined above. Question seams answered.
    Karsten

  • 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

  • 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...

  • XML Meta data integration in Web Dynpro ABAP

    Hello,
    Is it possible to integrate XML Meta data with UI definitions in Web Dynpro for ABAP like Project Import in Development Studio?
    Thanks!
    Y. Hryhorovych

    Hi Yuriy,
    Web Dynpro components and applications are normal development objects. This means, you can transport them to any system using the change and transport system. There is no need to work with a separare xml representation.
    Best regards,
    Thomas

  • Trouble Creating Users Via Web Form

    I'm having trouble creating user in a 9i database via web front end.
    I use the following sql to create the user
    strSQL="CREATE USER"""+strUser+"""PROFILE ""DEFAULT"" IDENTIFIED BY ""HELLO"" DEFAULT TABLESPACE ""DATA"" TEMPORARY TABLESPACE ""TEMP"" ACCOUNT UNLOCK"
    I then execute another two sql statments to grant "connect" thus
    strSQL="GRANT ""CONNECT"" TO "+strUser+""""
    strSQL="ALTER USER """ strUser"""DEFAULT ROLE ALL"
    Whenever I try connecting using the new users details, but get an error message that the server had problems accessing the LDAP directory service(ORA-28030).
    I'm happy that the SQL is correect as I created the account that I wanted using Enterprise Console and coppied the SQL it produced. I'm assuming that there's something in the background that is not being triggered when creating the user via the web front end.
    Can anyone tell me where I'm going wrong?
    Thanks
    Jason

    My apologies, I didn't realise HTML DB was a product. I thought it was a forum for questions regarding HTML and databases.
    Doh!!!
    Jason

  • Populating Customer Type field via web form

    Hi all,
    There's a field in the CRM called Customer Type. Is it possible to populate this field using a web form?
    Appreciate any advice.

    Ok thanks for letting me know. Do you know if the feature will be coming in the first or last half of the year?

  • 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.

  • AE 5.2 - Request Creation via Web Service

    Hi there,
    did anyone create a request via WebService requesting more than one system (applications) yet?
    We did not find a way of transferring multiple systems.
    Also there is no way to transfer the user validity dates. Is this really not possible?
    I've checked 5.3 Web Services and they look exactly the same (they've just been renamed, but no improvement regarding additional fields).
    Currently we are on 5.2 SP8 Patch1.
    Thanks,
    Daniela

    The GetSubmitRequest will accept:
    getSubmitRequest
    RequestDetailsData_1 (test.types.RequestDetailsData)  NULL
    priority (String)   SKIP
    location (String)   SKIP
    locale (String)   SKIP
    application (String)   SKIP
    userId (String)   SKIP
    company (String)   SKIP
    department (String)   SKIP
    emailAddress (String)   SKIP
    employeeType (String)   SKIP
    firstName (String)   SKIP
    lastName (String)   SKIP
    mgrEmailAddress (String)   SKIP
    mgrFirstName (String)   SKIP
    mgrId (String)   SKIP
    mgrLastName (String)   SKIP
    requestorEmailAddress (String)   SKIP
    requestorFirstName (String)   SKIP
    requestorId (String)   SKIP
    requestorLastName (String)   SKIP
    requestReason (String)   SKIP
    requestType (String)   SKIP
    roles (test.types.RoleData[])  SKIP
    element1 (test.types.RoleData)  NULL
    action (String)   SKIP
    company (String)   SKIP
    roleId (String)   SKIP
    sysId (String)   SKIP
    validFrom (java.util.GregorianCalendar)   SKIP
    validTo (java.util.GregorianCalendar)   SKIP
    telephone (String)   SKIP
    customField (test.types.CustomFieldsDTO[])  SKIP
    element1 (test.types.CustomFieldsDTO)  NULL
    name (String)   SKIP
    value (String)   SKIP
    Ankur
    GRC Consultant

  • Firefox is not receiving POST data correctly from web form.

    I am working on a website and I use firefox for alot of the testing and debugging.
    Recently I have been having a problem, where in the PHP script I am POSTing some form data to another page to run the script, and my web server keeps getting the error log "PHP Notice: Undefined index: *mypostfield*"
    I look this error up online, and it says that it means the POST value for *mypostfield* is empty.
    I do the same thing in IE, Chrome, and Safari, and it works fine, data is sent properly and everything works.
    I have disabled all add-ons, still the same, reinstall, still the same.
    Windows 7 64-bit. Firefox 8 & 9

    Can you attach a [http://en.wikipedia.org/wiki/Screenshot screenshot]?
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    * If you use extensions (Tools > Add-ons > Extension) like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flash Block</i> that can block content then make sure that such extensions aren't blocking content.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    See also:
    * [[Websites look wrong]]
    * [[Website colors are wrong]]

  • 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

  • Bridge CS4 Meta data in web album

    Hi,
    I am looking all over for a way which makes it posibly to show ONLY the description meta data in a web album created with adobe bridge cs4.
    I have been able to have a text for each image in a slide show in every free web album I have tryed. Since I started to use bridge, I have been happy to use it for rating images and stuff like that. But can it really be that Meta data is so difficult to handle in bridges web album?... I think only one of the templates makes it possible to check 'Show metadata', but this is ALL metadata.. very many metadata, and definately not what I want. It can not be the case that bridges web album can not show a description or title only from an images meta or can it? Can anyone help me, have I missed something.
    Hope someone can help me with some hints.. is it possible to make a web album including only description Meta data for each image?
    Thank you very much
    Regards
    Jens

    hmm, maybe bridge is not the right choice after all, maybe Fireworks are better.. but still wondering why this simple possibility is not present in bridge,..

  • PDF Form Fill via web page and render

    I have a PDF created by Adobe Acrobat (Pro?) that allows form entry. What I'd like to do is allow a user to enter data into a WEB FORM (jsp), and then populate the data into a PDF for redisplay to the user. The redisplayed PDF should not be editable. At that point, I want them to submit it.
    My questions so far are...
    1. I've downloaded XPAAJ and gotten it to fill the PDF with entries, and can re-render it. However, since it's a form, the user can "edit" and print, but not save. On display, I'd want this to be a locked form. I didn't see anywhere in the XPAAJ that you did this.
    2. Is XPAAJ a licensed product or do I have it to use freely for the above requirement? If not, what must I purchase? I'll check on what Adobe product/licenses we have currently.
    Thanks -- appreciating any feedback.
    Eric Givler
    App Developer/PA Dept of Env Protection

    You link to them the same way you link to any other page.
    In code view:
    <p><a href="url/to/folder/mypdffile.pdf">Click Here For PDF File</a></p>
    In designer view:
    Select the text you want to turn into a link.
    Insert>Hyperlink  then point to your pdf file.
    ~codeDawg

Maybe you are looking for

  • Can't browse contents of Nokia 7610 on Windows 7

    Hello! I can't access the files on my Nokia through my laptop with Windows 7. On another computer with windows XP it worked allright.  I am using PC suite 7, installed new cable drivers, and updated the phone software.  It synchronizes everything all

  • Administrate virtual info cube with services

    hi, all, if you come across an existing virtual info cube with services, HOW can you find out the name of the function module, that provides the data? best regards neven

  • Data in DataSets, but error when trying to populate Crystal Report

    I have been in the process of making changes to a legacy application as described in this post.  [Error received on windows application|Error received on windows application] I have changed the references from 10.0 to 10.2.  The application included

  • BAPI_POSRVAPS_SAVEMULTI3  and  orders from vendor

    Hi, I have some code which updates an SNP order using BAPI_POSRVAPS_SAVEMULTI3.  It seems to work ok for normal STRs (where I specify both RECEIPTS and REQUIRMENTS tables),  however I have run into a problem when it needs to change an order from a Ve

  • Best way to cut clips out of a long long capture

    Hi all, I shoot underwater footage. I don't usually stop/record/stop during a dive and most of the time my camera is always shooting. As a result when I capture, I get a long clip which really has multiple scenes (descent, swim around, wreck penetrat