Setting ORACLE_ADF_UI to FALSE in HFM

We are on 11.1.2.2 release and currently facing the following issue
-- We are not able to resize the 'Preview User POV' while runing Financial reports.
The above issue has been fixed in 11.1.2.3 release as mentioned in the Readme.
We were trying to disable the new ADF interface and then check if we can resize the user POV, however we are not able to find that option.
We do not have Hyperion Planning in our environment. Is there a way to disable the ADF feature.
Any help will be highly appreciated.
Thanks.

Please post this question to the Financial Reporting Forum.  Thank You!

Similar Messages

  • JTable how to set cell ediatble false

    - Can teach me JTable how to set cell ediatble false?
    - And I'm not so understand about following method and sentence...
    addRowSelectionInterval(int index0, int index1)
    Adds the rows from index0 to index1, inclusive, to the current selection.
    - Then what is toggle? What is the usage? How to use?
    - Then how to add one more row in the Jtable?

    - Can teach me JTable how to set cell ediatble false?check the method isCellEditable()
    Use DefaultTableModel
    - And I'm not so understand about following method and sentence...
    addRowSelectionInterval(int index0, int index1)
    Adds the rows from index0 to index1, inclusive, to the current selection.
    - Then what is toggle? What is the usage? How to use?
    - Then how to add one more row in the Jtable?[JTable API|http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/JTable.html]

  • How to set XML.ignoreWhitespace = false; in HttpService /Result?

    Please ask these kind of questions on flexcoders or the Adobe Flex Forums.  This is for development of the SDK itself.<br /><br />Matt<br /><br /><br />On 11/17/08 12:56 AM, "venubwal" <[email protected]> wrote:<br /><br />A new discussion was started by venubwal in<br /><br />Developers --<br />  How to set XML.ignoreWhitespace = false;  in HttpService /Result?<br /><br />I want to carry/preserve Leading & trailing spaces<white spaces> in event's result....<br />I am using service as :<br />_webService = new HTTPService();<br />_webService.url = serviceUrl;<br />_webService.method = "POST";<br />_webService.resultFormat = "e4x";<br />......<br />...Again i am checking it as -in<br />private function serviceResultHandler(event:ResultEvent):void<br />        {<br />        stopExecution();<br />        var doc:XMLDocument = new XMLDocument();<br /> doc.ignoreWhite = false;<br />        XML.ignoreWhitespace = false;<br />doc.parseXML(event.result as XML);<br />       Alert.show(event.result.toString(),"....serviceResultHandler...");<br /><br />But, i am not able see L&T spacesin alert() where I can see L&T spaces in Servlet/Java side which assigned as metaResponse<br />as....<br />      OutputStream writer = response.getOutputStream();<br />      OutputStreamWriter outputStreamWriter = new OutputStreamWriter(writer,"UTF-8");<br />JaxbSerializationUtil.serializeObjectToWriter(outputStreamWriter, metaResponse);<br /><br />________________________________<br />View/reply at How to set XML.ignoreWhitespace = false;  in HttpService /Result? <a href=http://www.adobeforums.com/webx?13@@.59b70bd4><br />Replies by email are OK.<br />Use the unsubscribe <a href=http://www.adobeforums.com/webx?280@@.59b70bd4!folder=.3c060fa3>  form to cancel your email subscription.

    By Using XML.ignoreWhitespace = false; <br />I am able to Store/Carry/Save L&T white spaces in XML and i can retrive values with whitespaces...<br /><br />It is in case of loading from Java<DB> to Flex.<br /><br />But the actual problem is with xmlObject.toString()/toXMLString()<br />is not able to carry whitespace, while it should carry as parameter to Java Servlet..so that it can be get using request.getParameter() [..then it is serializing/deserializing]<br /><br />So, how i can preserve the L&T whiteSpaces on XML.toString()/toXMLString() method.<br /><br />OR else<br />How we can set Http request attribute in Flex, so that we can use ( AnY_Object)request.getAttribute()...

  • How to get value of a textfield which has been set as Renderd false.

    Hi all
    how to get value of a TEXTFIELD which has been set as Renderd false.
    i am getting the value of this textfield from an lov but dont want to show it to the user.
    getting error as:
    attribute xxxx required for view object yyyyy.
    pls help
    naveen

    You can create item inside your LOV region, set the item style to formValue. You can associate this to a View Object field. It can also act as mirror of any other text input field.
    FormValue can hold the value and will not be diaplyed to user. You can read value from it controller
    example
    OAFormValueBean orgValue = (OAFormValueBean)webBean.findChildRecursive("OrgIdFormVal");
    Or you can read it fro the VO associated with this form value.

  • When set dataGrid showHeader = false, dataGrid.rowCount then +1, this bug can solve?

    When I set DataGrid.showHeader=false, then
    DataGrid.rowCount+1.
    My code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical">
    <mx:Script><![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable]
    private var Arc:ArrayCollection = new ArrayCollection([
    {a:1,b:12,c:13},{a:2,b:22,c:23},{a:3,b:32,c:33}]);
    [Bindable]
    private var RowCount:int = 3;
    ]]></mx:Script>
    <mx:DataGrid id="DtgShowHeader" dataProvider="{Arc}"
    rowCount="{RowCount}" horizontalGridLines="true"
    horizontalGridLineColor="black"
    showHeaders="true">
    <mx:columns>
    <mx:DataGridColumn dataField="a" headerText="a"/>
    <mx:DataGridColumn dataField="b" headerText="b"/>
    <mx:DataGridColumn dataField="c" headerText="c"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:Label id="LblDtgShowHeaderRowCount"/>
    <mx:Button label="ShowHeader=True RowCount"
    click="LblDtgShowHeaderRowCount.text = 'DtgShowHeader.RowCount=' +
    DtgShowHeader.rowCount.toString();"/>
    <mx:DataGrid id="DtgHiddenHeader" dataProvider="{Arc}"
    rowCount="{RowCount}" horizontalGridLines="true"
    horizontalGridLineColor="black"
    showHeaders="false">
    <mx:columns>
    <mx:DataGridColumn dataField="a" headerText="a"/>
    <mx:DataGridColumn dataField="b" headerText="b"/>
    <mx:DataGridColumn dataField="c" headerText="c"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:Label id="LblDtgHiddenHeaderRowCount"/>
    <mx:Button label="ShowHeader=False RowCount"
    click="LblDtgHiddenHeaderRowCount.text =
    'DtgHideenHeader.RowCount=' +
    DtgHiddenHeader.rowCount.toString();"/>
    </mx:Application>
    Anyone meet this problem?

    Possibly this?
    http://bugs.adobe.com/jira/browse/SDK-14463
    Peter

  • Which event will be fired when I after set JFrame.setVisible(false)

    Experts.
    I want to know which event will be fired when I after set JFrame.setVisible(false)?
    Because I need to check a thread is finished it job or not.
    I have checked windowClosing event, but it doesn't work.
    Thanks
    Francis

    Oh....
    Sorry, I find it will fired on componentHidden event.
    Very sorry.

  • MSI GT60 2OD "Reagentc.exe set RE image false"

    Hello,
    I have received cd recovery from msi and I want to format my computer.
    At about 40min in the installation, a error appear "Reagentc.exe set RE image false". What should I do?
    Thank you in advance,
    ps: Sorry about my bad english, I'm french

    Hard to say what the real problem is in this case.
    Did you delete any partitions on the hard drive? Has the partition structure changed at all? That can cause problems with everything if you do that.

  • What's the difference between isThreadSafe set to true / false ?

    I wrote a jsp that contains the following snippet:
    <%@page isThreadSafe="false" language="java" %>
    <%! int count = 0; %>
    <% count++; %>
    <% Thread.sleep(5000); %>
    You are visitor number <%= count %>
    I test this by running 2 browsers at the same time, but I found there's no
    difference between that isThreadSafe set to true/false in the result, and I
    found there's no difference in the generated servlets' code. Will the servlet
    implements the SingleThreadModel interface if the isThreadSafe is false in the
    jsp? I'm using jakarta-tomcat-4.1.18-LE-jdk14.

    Your idea about implementing SingleThreadModel is ok, though Tomcat 4.1.18 for my version also does not make any difference in generated servlet with isThreadSafe value.
    However, one thing is important to remember that isThreadSafe is not a panacea to make JSPs thread safe. It actually depends on the type of variables/values u r changing.
    Any local varible under _jspService is thread-safe, as all requests are unique.
    For the same reason, request attributes are always thread-safe.
    Class/member varibales in JSP/Servlet are not thread-safe also. From your code count is not thread safe.
    Session attributes are not thread-safe, as you can access and change them using multiple browser windows from different JSPs. If u do not do that they are safe.
    Application/context attributes are not thread-safe also. They can be accessed by multiple users at the same time.
    However, I do not why generated servlet is not different for this version of Tomcat. May be they can tell.
    Thanks.
    Hafizur Rahman
    SCJP

  • How to set exitonerror to false on wlst

    Hi Guys ,
    I want to run my wlst on a continue when error happens basis . I saw the document saying there is variable called exitonerror , default value is true , but it didn't indicate the way to change it .
    I try to add exitonerror='false' in the first line of my py script , but it seems dosn't work . Anyone have once tried before ?
    Thanks

    Thanks for reply , but it still doesn't work , I think I am using the correct name
    wls:/mydomain/serverConfig> print exitonerror
    true
    wls:/mydomain/serverConfig> print exitOnError
    Traceback (innermost last):
    File "<console>", line 1, in ?
    NameError: exitOnError
    The problem is I can set exitonerror to false by using exitonerror='false' , but looks it dosen't affect the wlst behaviour
    KY

  • [svn:fx-4.x] 15099: Setting truncateToFit to false so that chart labels would get scaled but not truncated if space is not enough

    Revision: 15099
    Revision: 15099
    Author:   [email protected]
    Date:     2010-03-29 07:00:06 -0700 (Mon, 29 Mar 2010)
    Log Message:
    Setting truncateToFit to false so that chart labels would get scaled but not truncated if space is not enough
    QE notes:
    Doc notes:
    Bugs: FLEXDMV-2359 (Axis labels are clipped in sdk 4.1, since label is used instead of UITextField)
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration:
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FLEXDMV-2359
    Modified Paths:
        flex/sdk/branches/4.x/frameworks/projects/datavisualization/src/mx/charts/AxisRenderer.as

    Welcome to the forum Oreckel!
    The best way to work with FCP's media files is to not overthink it. It's all done from the "Scratch Disk" settings. Just select a DRIVE for media captures and renders to go to. FCP handles the rest. It creates a folder called "Capture Scratch", another called "Renders" and a third called "Audio Renders". In each of these folders it creates a folder for each project file containing the media that is associated with that particular project, and it names these folders the same as your project files' names. Couldn't be easier.
    Autosave Vaults, Waveforms, and Thumbnails should be kept on your startup disk in your documents folder. You probably already have one there named "Final Cut Pro Documents" If it's there just select the Documents folder and FCP will put these three folders in the one named "Final Cut Pro Documents".
    Jerry

  • How to personalize and set rendered property false to poplist

    HI,
    could u please tell me that How to personalize and set rendered property false to poplist
    when poplist was developed initially it's user personalization property set as FALSE, that is why when i tried to personalize and set rendered property as flase, i could not able to find the property as rendered for that perticular item.
    Please provide me step by step process.
    Thanks,
    Ram.

    Hi Ram,
    you can do set rendered false through personalization as well as co extension.
    if you go for persoalization set the profile option Personalize Self Service Definitions and clik on personaliztion link
    then search for item and set its rendered property to false.
    If you go for co extension capture the poplist bean and and setRendered(false) to that field.
    If you are feeling difficulty by personalizatoin better go for CO extension.
    Thanks
    Amit Jaitly

  • Set  the visibility false on click PopUp

    Hi,
    I want to set the visibility false of my component on the click of popup
    but the problem is when i generate the Pop Up on Page then it lost the control of all the child's on that Page and when i set the visibility false of component then it is not set
    Please guide.
    Thanks,

    You could use PopupFetchListener - to set the visibility of the button to false.
    Here, is a sample based on your use-case.
    Sample.jspx:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1">
    <af:panelFormLayout id="pfl1">
    <f:facet name="footer"/>
    *<af:commandButton text="CommandButton" id="cb2"*
    *binding="#{SampleBean.button}"/>*
    *<af:commandButton text="Show Popup" id="cb1" partialSubmit="true">*
    *<af:showPopupBehavior triggerType="action" popupId="p1"/>*
    *</af:commandButton>*
    </af:panelFormLayout>
    *<af:popup id="p1" popupFetchListener="#{SampleBean.popupFetchListener}"*
    *contentDelivery="lazyUncached">*
    *<af:dialog id="d2" title="Sample Dialog">*
    *<af:outputText value="Popup Contents" id="ot1"/>*
    *</af:dialog>*
    *</af:popup>*
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    *SampleBean.java:*
    import oracle.adf.view.rich.component.rich.nav.RichCommandButton;
    import oracle.adf.view.rich.context.AdfFacesContext;
    import oracle.adf.view.rich.event.PopupFetchEvent;
    public class SampleBean {
    private RichCommandButton button;
    public SampleBean() {
    public void setButton(RichCommandButton button) {
    this.button = button;
    public RichCommandButton getButton() {
    return button;
    *public void popupFetchListener(PopupFetchEvent popupFetchEvent) {*
    *this.getButton().setVisible(false);*
    *AdfFacesContext adfFacesContext = AdfFacesContext.getCurrentInstance();*
    *adfFacesContext.addPartialTarget(this.getButton());*
    Thanks,
    Navaneeth

  • JXTable Horizontal scroll bar stops toggling after setting it to "false"

    Hi,
    I am using JXTable.
    After calling table.setHorizontalScrollEnabled(false), it stops toggling from the GUI columnControl.
    However, If I call table.packAll(), then toggling works fine, but in that case I am loosing customized column widths, which is not acceptable.
    Any idea how to get rid off this issue.
    Thanks & Regards,
    Dipak Mehta
    Edited by: DipakMehta on Mar 20, 2008 12:15 AM

    I am recording column order, column widths and horizontalScroll on/off in a file when client closes the windows.
    At the time of relogin, I am applying column order and column width again to the columnModel, alongwith it I call table.setHorizontalEnabled(false) if last time client closed the window with horizontal scrollbar turned off.
    This way I am getting the desired out, with proper column ordering, width setting and turned off horizontal scrollbar.
    But the problem is, client is not able to turn on the horizontal scrollbar again from the GUI using columnControl. Even though checkbox rendering shows horizontalScrollBar status on/off, horizontal scrollbar dosen't reappear again.
    I hope this clerifies the problem.
    Thanks & Regards,
    Dipak

  • HideEffect does not play when setting visible to false

    HY,
    If i set a fade effect on WindowedApplication on hideEffect when i put visible to false, the fade effect does not run anymore. I found this similar problem in the bug tracker: http://bugs.adobe.com/jira/browse/SDK-14615
    I use Flex builder 3 with the sdk 3.2.0, i don't understand why this bug is not resolved at this time.
    thanks for you help

    Hi,
    If you are in a country that permits redownloads, delete track and go to iTunes Store > purchased and redownload. http://support.apple.com/kb/HT2519
    Jim

  • Is this script still valid for setting up Drill through between HFM and FDM

    Guys hoping some one can shed a light.
    I am running hfm and fdm realese 11.1.1.3.000
    I am having issues setting up the SSO authentication (all the other steps have been done, and HFM is aware that I have uploaded information that can drill back). I am using an SSO script that was part of an Oracle presentation, but don't know if that script is still relevant.
    Here is a copy of the script (Visual Basic Script SSO Authentication) :
    Function AuthenticateSSO(token, applicationName)
    ' Place your single sign-on authentication script here
    ' To signify an authentication failure, you should
    ' raise an error by calling the following method:
    ' Err.Raise [error number over 1000], [source], [description]
    ' Applicationname = FDMApplication in URL
    Const strProcSig = "AuthenticateSSO"
    Dim strUsername
    Dim strDomain
    Dim objHFMSSO
    Dim strClusterName ' HFM cluster name
    Dim strAppName ' HFM application name
    Set objHFMSSO = CreateObject("upsIntBlockFM40C.clsHypeWindowFM")
    If Not objHFMSSO Is Nothing Then
    strClustername = "<xxxxxxxx>"
    Select Case ApplicationName
    Case "<xxxxxxxx>"
    strAppName = "<xxxxxxxx>"
    End Select
    strUsername = objHFMSSO.Connection.GetUsernameFromToken(CStr(Token), strClustername, strAppName)
    If Trim(strUsername & "") = "" Then
    ' Blank user name means the token is invalid.
    Set objHFMSSO = Nothing
    Err.Raise 2655, strProcSig, "The Single Sign-on token is invalid."
    Else
    ' Return the user name from the authenticated token.
    AuthenticateSSO = strUsername
    End If
    End If
    Set objHFMSSO = Nothing
    End Function
    After I input all the information requested, I always get the error Server Error in '/' Application. The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
    Requested URL: /HyperionFDM/AuthorizedPages/IntersectionSummaryByLocation.aspx
    I did saw a note about this error that suggested that I needed to re-register and deploy again FDM. Did, but still have the same issue. So the only thing that I don't control is the script and that is why I am asking if this script is still active and usable?

    I have done all of that but I still get an error when trying to drill back. I am using the Admin ID which exist on both FDM and HFM but I am always getting the
    Server Error in '/' Application.
    The resource cannot be found.
    Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
    Requested URL: /HyperionFDM/AuthorizedPages/IntersectionSummaryByLocation.aspx
    So the only thing that I hadn't tried at the time was the SSO script. Which was what I did.

Maybe you are looking for

  • What is the latest ios for iPhone 4s

    What is the latest ios for iPhone 4s. Could any kind of virus affects my phone.

  • Installing adobe X pro to Mac

    i purchased X Pro from Adobe for $200 as an upgrade, due to the fact i already had Adobe X and wanted to be able to edit pdf files and save the edits.  downloaded no problem, install i hit a bump in the road, when i tried to install it asked for me a

  • Printing for Microsoft Excell on HP Pro 8620

    Just installed my new Printer (HP pro 8620) and everytime I go to print anything using microsoft excell,it starts to print and then quickly says "Caneling Printing"on the screen of my Printer..Why?

  • Sharing to Facebook - Duplicate albums

    When I am Sharing to Facebook and choose an album already created in Facebook, the albums in the list duplicate each time I add a photo. Note that the list duplicates equally even though I add one photo to a particular album. What can I do to fix dup

  • Xfce4 startup unreadable error

    I decided to install arch linux, so I followed the beginners guide. I first updated the system with pacman. Then I installed xorg and the ati opensource drivers. After that I installed ttf-ms-fonts, ttf-dejavu, ttf-bitstream-vera, and finally xfce4.