Customizing Planning Web Forms using Javscript

<p>Hi,</p><p>I am looking at writing custom javascript code for web forms. Inthis regards, I was wondering if anyone could suggest a way for meto access member properties through custom javascript. The code inSampleValidateData.js which is in the custom folder of theHyperionPlanning.war file only provides insight into accessing cellvalues and row/collumn member names and values. How is it possibleto access member properties like alias, comment field etc whichhave been entered when setting up the Dimensions throughPlanning.</p><p> </p><p>Any help will be much appreciated.</p><p> </p><p>Regards,</p><p> </p><p>Ryan</p>

We experienced the same issue, our requirement was that for the first half of the year the substitution variable was = Oct and for the second part of the year Jan:Dec. We were lucky that for the second scenario we had a Total Year member as well (that at the bottom level is Jan:Dec). So on web form we picked Level0 descendants of the substitution variable. That worked fine but not the range.

Similar Messages

  • Scaling to millions in Planning web forms

    How do I scale a Planning web form to show in millions? We are using Planning 11.1.2 and using custom currency dimension.

    Hi,
    Rahul & John Thank you very much for the help provided.The Web forms have been developed in version 9.3.1 so creating dynamic members will not be possible.I will create a member in the cube itself to meet the requirements.
    Regards,
    Proteem.

  • How do you construct a web form using coldfusion??

    How do you construct a web form using coldfusion?? any
    examples?
    thanks in adv.

    A sample Form:
    <cfform action="CCARProc.cfm"
    enctype="multipart/form-data" method="post" name="CCAR"
    onsubmit="return verify()">
    <table width="730" border="0" cellpadding="2"
    cellspacing="1" align="center" class="unnamed1">
    <!--DWLayoutTable-->
    <tr valign="top">
    <td colspan="3" bgcolor="#F2F2F2">Name Of
    Requester(<font color="red">*</font>)</td>
    <td width="402" bgcolor="#F2F2F2"><cfinput
    type="text" name="Requestor_Name" size="15" value="#REQNAME#"
    maxlength="25" >
     MTABT Email(<font
    color="red">*</font>) 
    <cfinput name="Req_Email" type="text" size="8"
    maxlength="20" value="#ReqEmail#"
    >@mtabt.org</td></tr>
    <tr>
    <td colspan="3">Requester Telephone #(<font
    color="red">*</font>) </td>
    <td><cfinput type="text" VALUE="#REQPHONE#"
    name="RPhone" size="12" maxlength="12" message="Requester Phone
    cannot be blank / Invalid Entry!" required="yes"
    validate="telephone"> [e.g. xxx xxx xxxx or
    xxx-xxx-xxxx]</td>
    </tr>
    <tr>
    <td colspan="3" bgcolor="#F2F2F2">Facility(<font
    color="red">*</font>)</td>
    <td bgcolor="#F2F2F2">
    <cfselect name="Facil">
    <option value="2B">2B </option>
    <option value="BBT">BBT </option>
    <option value="BW">BW </option>
    <option value="CB">CB </option>
    <option value="HH">HH </option>
    <option value="MP">MP </option>
    <option value="QMT">QMT </option>
    <option value="RI">RI </option>
    <option value="TM">TM </option>
    <option value="TB">TB </option>
    <option value="TN">TN </option>
    <option value="VN">VN </option>
    </cfselect>
    </td>
    </tr>
    <tr>
    <td colspan="3">Department(<font
    color="red">*</font>)</td>
    <td><cfselect name="Dept">
    <option value="Contracts">Contracts </option>
    <option value="Engineering">Engineering
    </option>
    <option value="Executive Office">Executive
    Office</option>
    <option value="Finance">Finance </option>
    <option value="General Counsel">General Counsel
    </option>
    <option value="HS">HS </option>
    <option value="HR">HR </option>
    <option value="ISD">ISD</option>
    <option value="Legal">Legal </option>
    <option value="Labor Relations">Labor Relations
    </option>
    <option value="Operations">Operations </option>
    <option value="Payroll">Payroll </option>
    <option value="Planning & Budget">Planning &
    Budget </option>
    <option value="Procurement & Mtrl">Procurement
    & Mtrl </option>
    <option value="Purchasing">Purchasing </option>
    <option value="Revenue Management">Revenue Management
    </option>
    <option value="Staff Services">Staff Services
    </option>
    <option value="SD">SD</option>
    <option value="Technology">Technology</option>
    </cfselect></td>
    </tr>
    <tr>
    <td colspan="3" bgcolor="#F2F2F2">Division(<font
    color="red">*</font>)</td>
    <td bgcolor="#F2F2F2"><cfinput name="Div"
    type="text" size="20" maxlength="25" VALUE=""></td>
    </tr>
    <tr valign="top">
    <td height="27" colspan="3" >Justification(<font
    color="red">*</font>)</td>
    <td bgcolor=""><textarea name="Justi" cols="50"
    rows="3" wrap="VIRTUAL" ></textarea> </td>
    </tr>
    <tr>
    <td colspan="3" bgcolor="#F2F2F2">VP Approval
    By (<font color="red">*</font>)</td>
    <td bgcolor="#F2F2F2"><cfinput name="VPAppFName"
    type="text" size="20" maxlength="25" VALUE="#VPFName#">
         MTABT
    Email(<font color="red">*</font>) 
    <cfinput name="VPE" type="text" size="8" maxlength="20"
    value="#VPEmail#" >@mtabt.org</td>
    </tr>
    <tr>
    <td colspan="3" valign="top"
    bgcolor="#F2F2F2"></td>
    <td colspan="2" rowspan="2" valign="top"
    bgcolor="#F2F2F2"><div align="left">
    <input name="Submit" type="submit" value="SubmitTheForm"
    class="button"
    style="font-size='10pt';color='#663399';font-face='Arial,
    Helvetica, sans-serif';" >
    <input name="Reset" type="reset" value="ReSetTheForm"
    class="button"
    style="font-size='10pt';color='#663399';font-face='Arial,
    Helvetica, sans-serif';">
    </div></td>
    <td width="90" valign="top"
    bgcolor="#F2F2F2"></td>
    </tr>
    </table>
    <div align="right"><span class="style4">Revised(
    01.28.05 )</span>
    <input name="submitDate" type="hidden"
    value="<cfoutput>#DateFormat(Now(),'mm/dd/yy')#</cfoutput>">
    </div>
    </cfform>

  • HTML5 DOCTYPE in custom WPC web form

    Hello,
    we are implementing a custom WPC web form along following SAP documentation:
    http://scn.sap.com/docs/DOC-22253
    The new web form incorporates JS-Scripts from an open source project (Galleria.io).
    However, this JS-Application requires a HTML5 DOCTYPE, which needs to bedefined in the root of an HTML document. At runtime of the web form the HTML5 DOCTYPE is missing and the JS-Application is not properly running.
    I found following SAP note "1713259 - PRT support for HTML5 doctype" which focuses on this topic. It mentions two possible options:
    - Enable HTML5 DOCTYPE for entire portal environment,
    - ... or enable HTML5 DOCTYPE only for custom portal applications.
    However we only want to enable HTML5 DOCTYPE for the WPC component runtime.
    Is there any option to enable this via configuration in WPC... or any other ideas?
    Best regards
    Mario

    Hi Mario!
    You could personalize your form adding this at the begining of your XLST WPC:
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- for example -->
    Also, you could set in your base iview portal template the document browser mode:
    Browser Document Mode – How to set the IE Compatibility View from server side.
    This forces use a determinated browser in portal.
    Hope this helps,
    Kind regards!

  • Labels before Page dimensions in Planning web form

    Hi,
    Is it possible to have the labels before the page dimensions in Planning web forms?
    Eg: Entity <Entity dropdown in Page view> Products <Product dropdown in Page view>
    I am using EPMA 11.1.1.3 version
    Thanks,
    Naveen Suram

    Hi,
    This sort of question was asked before, have a look at Data form customization
    There is nothing available out of the box
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Attribute dimension in the planning Web form

    Hi All,
    Is there any option to populate attribute dimension as a drop down in the Planning web form, I see option to show attribute dimension in the Other Properties page in the web form, But attribute dimension is not showing in the drop downs. Any help will be greatly appreciated.
    Thanks in advance.
    KGP

    I don't think there's anything specific one does to make the attribute dimension show up on the form.
    When I look at the Member Selection Entity window on my form, in the upper left hand side I see a box labelled "Members in Entity".
    Directly below that is another box labelled "Attributes".
    Are you sure that you really have the attributes assigned?
    You can check in Classic Planning, by managing dimensions, selecting Entity, and then clicking on the Custom Attributes button. You should then see the attribute dimensions/members assigned to Entity.
    You can also check in EAS.
    I believe the association also appears in EPMA but it's been a while since I looked at it.
    Regards,
    Cameron Lackpour

  • Suppress members with certain UDA in Planning Web Forms

    Hi All,
    Can someone suggest me a way to suppress members with certain UDA's in Planning Web Forms. We have few members (associated with a UDA) which we don't want to show up if we do a IDESC of a member, is there any way to address this.
    Thanks...

    The only way you could do this is if you made the form suppress missing and/or suppress block and then copied data into BegBalance of the accounts you wanted to show. You can also hide that column although hidden columns still show for SmartView in all released version through 11.1.1.2.
    Planning doesn't have a way to make use of UDA's with forms in any released version although it would be a really nifty feature.
    Regards,
    John
    http://www.metavero.com

  • How can I change the default blue colors of Planning web forms?

    Hi,
    how can I change the default blue colors of Planning web forms and the Logon screen colors?
    thanks

    That PDF file mentioned updating file HspCustomImgs_en.template in D:\Hyperion\deployments\WebLogic9\servers\HyperionPlanning\webapps\HyperionPlanning\custom folder:
    But for what I needed to do, here's another undocumented file to change color in right side menu: Update global.css file
    in D:\Hyperion\deployments\WebLogic9\servers\HyperionPlanning\webapps\ HyperionPlanning\ui_themes\tadpole

  • Error while opening planning web Forms

    Hi ,
    I am facing the below error whenever I am trying to open the planning web form.
    "Target Unreachable, 'formManagement' returned null
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #40"
    Could you please help me on this?

    Have a read of the following support doc which is pretty much the same - "Hyperion Planning Error "Target Unreachable, 'getFormsForFolder' returned null -- ADF_FACES-60097" When Opening Web Forms (Doc ID 1527253.1)"
    Cheers
    John

  • Planning web forms are not opening in EPM11..

    Hi Gurus,
    Planning web forms are not opening in EPM11..
    What logs i need to check in these case, what should be the path of the logs.
    Here i am accesing web forms on my local system through workspace web link
    We have 2 essbase server and three application server..
    PLease suggest...

    In Windows the apth that u have maentioned there are two log files :
    HyS9RaFrameworkAgentErr and HyS9RaFrameworkAgentOut
    In application unix servr i tried at the following path :
    /xxxxxx/xxxxxx/hyperion/Oracle/Middleware/user_projects/epmsystem1/diagnostics/logs/planning :
    there are following files there :
    calcmgrdeploy.log calcmgrexecution.log calcmgrlaunch.log

  • Need a process to update BSO Planning Web form into an ASO Cube

    Need a process to update information from the BSO Planning Web form into an ASO Report Cube every (5) five minutes.
    Please advise

    Thanks here is Part 2 of my questions
    Details:
    User Input data into a web form for Intersection are the following:
    Dim1,Dim2,Dim3,Dim4 , Account AAAA, 1000
    Dim1,Dim2,Dim3,Dim4 , Account BBBB, 2000
    Dim1,Dim2,Dim3,Dim4 , Account TTTT, 4000
    Dim1,Dim2,Dim3,Dim4 , Account ZZZZ, 7000
    Design Question:
    In the ASO Reporting Cube
    AAAA and BBBB are both at level 0 in both cube
    TTTT and ZZZZ are being loaded to a parent which is Level 1
    MY Issue with the Design Question  ???
    ASO Cubes can only be load at a level 0.
    So how can I complete this task, what are my option:
    My thinking process is the XRef Calc Script could push data the cube, than by built a maxl scripts that  would run the Calc script and put this scripts into some kind of system scheduler running the Maxl Scripts Every  (5) Mintues
    or am i way off base here ????
    Please advise
    Thanks in Advance

  • Member selection (Member + UDA) on Planning Web-forms

    Hi all,
    Is it possible to select members and UDAs together on Planning Web-forms similar to member selection on Financial Reports?
    Example:
    Members: ILvl0Descendants ("Total Net Income")
    UDA: ALLOCACT
    I didn't see this option on the member selection window, but I wanted to make sure that I am not missing anything.
    Thanks,
    Mehmet

    Hi,
    UDA does not work in data forms. If you want that property to be there in the data form, please create an attribute dimension with the same children as UDA and attach the attribute members to that dimension.
    Thanks.

  • Hiearchy in Planning Web Form Collapes after user Submits in SmartView

    We currently have Hyperion Planning 11.1.1.3.0 & SmartView 11.1.1.3.00
    I have a end user who opens a Planning Web Form via SmartView. When form is opened the Hiearchy in the rows are fully expanded.
    When the user hits "Submit Data" the hiearchy collapes to the top Parent level.
    I have confirmed that the Planning Webform does NOT have suppress hiearchy selected.
    Is there some setting in SmartView or Planning that I am missing that would account for this?
    I would appreciate it if anyone had any suggestions.

    Hi,
    I faced some issue similar to this in past with version 9.2, As iam updating security on planning and it works fine for data forms when i perform security refresh.
    but when user access those from excel the filters doesn't get update on EAS filters. after two hours investigation even though i update some filters on planning
    side after security refresh it doesn't get affected on essbase filters. the reason when security refresh is done the filters getting in to cache memory and doing nothing on essbase, so work around is to delete one particular filter on essbase and then perform security refresh so that it gets updated.
    Let me know if this is helpful and works.
    Thanks,
    Red

  • Planning Web Form Percentage

    I've tried several things, but can't get a percentage to show up on my planning web form. I've tagged the member as a percentage, which based on documentation says it will then show as a percentage on the web form.
    Any ideas would be appreciated?
    Thanks!

    Hi,
    First make sure the member has a data type of percentage (which you have done).
    Then you will need to set the evaluation order - Administration > Dimensions > Evaluation Order then select the dimension and move it to the right move window. Save.
    You should then be able to enter in percentage on the data form.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Planning web form error "This form contains unsaved data. Select OK to cont

    I've got a user that suddenly gets an error on a planning web form. She opens the form and enters data but when she tries to submit gets the following error “This form contains unsaved data. Select OK to continue without saving data, or Cancel to discard operation” and then it takes her back to the blank form. This form worked for her yesterday but not today. She has tried shutting down hyperion, even rebooting her machine but no luck. Any ideas?

    Hi,
    Make sure scripting isn't disabed in hte web browser.
    Regards,
    Robb Salzmann

Maybe you are looking for

  • White Screen: xf86-video-ati and Compiz After Trying fglrx? [SOLVED]

    I have an ATI Radeon X1200 graphics card.  I recently tired the ATI proprietary catalyst driver (and catalyst-utils) from the AUR.  They did not work well for me, so I uninstalled them.  I had run "aticonfig -initial" but, after removing catalyst and

  • Help needed with printer settings for wired ethernet connection

    I'm hoping someone can help me with a network printing issue. I have a large format color laser printer (Tektronix Phaser) and since moving to OS 10.6 I can't figure out how to configure the printer so that the system sees it. I have a simple wired e

  • Report at material level from Quantity pending

    Hello experts, I have the following issue, we need a Reporting to show at material level (The report, has to see like /SAPTRX/EE_OVD_LIST, i mean a list), the quantity pending for Goods receipt, by example in the case of a procurement scenario, and t

  • Insert statement problem

    need help urgently,am useing microsoft access as my database,whenever i try to insert data into the table i have in my database it tells me syntax error in INSERT INTO statement.please how do i overcome this problem.my code is below.thanks in advance

  • Transfering DVD to Video file formats

    I'm trying to convert mini DVDs to a video file format (.mov .avi, .mp4, etc.). I used the trial version of iMedia Converter Deluxe made by iSkySoft but the videos look pix-elated & not as clear as the original footage (.vob).... Can anyone recommend