SelectOneChoice autoSubmit=true refresh all ros

Hi
I have VO contain multi selectOneChoice, i but in field A autoSubmit=true, and put partial trigger for filed B to be refreshed when tab from A, the problem is when i tab field A all other  filed refreshed to be null
Any suggestion

Hi,
set ContentDelivery is set to immediate for af:table
https://forums.oracle.com/message/10898470

Similar Messages

  • SelectOneChoice autosubmit issue

    Hi All,
    I have a selectonechoice whos value shows/hides some fields. My bean is a session scope bean
    <af:selectOneChoice label="#{leadwebBundle.PARTY_TYPE}"
                                                  value="#{createOpportunity.partyType}"        
                                                  id="soc8" autoSubmit="true"
                                                  unselectedLabel="Select One"
                                                  valueChangeListener="#{createOpportunity.changePartyType}">
                                <f:selectItems value="#{createOpportunity.partyTypeList}"
                                               id="si8"/>
                              </af:selectOneChoice>
      public void changePartyType(ValueChangeEvent valueChangeEvent) {
          //valueChangeEvent.getComponent().processUpdates(FacesContext.getCurrentInstance());
          logger.info("in changePartyType");
        if (this.getPartyType() != null) {
            if (this.getPartyType().equalsIgnoreCase("Organization")) {
                logger.info("Party type is : " + this.getPartyType());
                this.setOrgFlag(true);
            } else
                this.setOrgFlag(false);
    also for safety
        public void setPartyType(String partyType) {
            this.partyType = partyType;
            if (this.getPartyType() != null) {
                if (this.getPartyType().equalsIgnoreCase("Organization")) {
                    logger.info("Party type is : " + this.getPartyType());
                    this.setOrgFlag(true);
                } else
                    this.setOrgFlag(false);
        }i hv set the autosubmit property but still selecting the values doesn't submit the page
    any idea on to this ?
    thnks.

    opps ...got it :)
    added the partial trigger to the panel and started working :)
    Edited by: Kamaal on Mar 13, 2011 6:24 AM

  • UncommittedDataWarning with autoSubmit=true

    Hi,
    I am having a jspx page in which the af:document has a property uncommittedDataWarning="on".
    And the page has a inputText with autoSubmit="true".
    while giving some value to the text box and refreshing the browser the popup does not appear.
    Please help me in this regard.
    Jdev 11.1.1.7
    Thanks.

    hi,
    I met the same issue, but I didn't use autoSuggest behavior. And this issue can't be reproduced all the time, for some values it works fine. but for some values it will be refreshed to the first item of LOV.
    I used Jdev11.1.1.4
    Could anyone give some guide?
    thanks,
    zeroxin

  • In C# is there a way of refreshing query in EXCEL (REFRESH ALL)

    Hi All,
    Need C# code in SSIS Sript task which should refresh all excel data which extracts from a table using Microsoft query.
    Can anyone help at all ?
    Thanks 
    Sri.Tummala

    Hi All,
    Found the code to refresh excel data the above code is saving before refrshing so I added application wait for 20 seconds so that it refrshes first than saves it.
    Microsoft SQL Server Integration Services Script Task
    Write scripts using Microsoft Visual C# 2008.
    The ScriptMain is the entry point class of the script.
    using System;
    using System.Data;
    using Microsoft.SqlServer.Dts.Runtime;
    using System.Windows.Forms;
    using Microsoft.Office.Interop.Excel;
    namespace ST_53932a75e92c44f086535fc017a56e6a.csproj
    [System.AddIn.AddIn("ScriptMain", Version = "1.0", Publisher = "", Description = "")]
    public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
    #region VSTA generated code
    enum ScriptResults
    Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success,
    Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
    #endregion
    The execution engine calls this method when the task executes.
    To access the object model, use the Dts property. Connections, variables, events,
    and logging features are available as members of the Dts property as shown in the following examples.
    To reference a variable, call Dts.Variables["MyCaseSensitiveVariableName"].Value;
    To post a log entry, call Dts.Log("This is my log text", 999, null);
    To fire an event, call Dts.Events.FireInformation(99, "test", "hit the help message", "", 0, true);
    To use the connections collection use something like the following:
    ConnectionManager cm = Dts.Connections.Add("OLEDB");
    cm.ConnectionString = "Data Source=localhost;Initial Catalog=AdventureWorks;Provider=SQLNCLI10;Integrated Security=SSPI;Auto Translate=False;";
    Before returning from this method, set the value of Dts.TaskResult to indicate success or failure.
    To open Help, press F1.
    public void Main()
    // TODO: Add your code here
    ExcelRefresh(@"C:\Documents and Settings\ST84879\Desktop\ROBERT_DATA_SET\TEST.xls");
    Dts.TaskResult = (int)ScriptResults.Success;
    private void ExcelRefresh(string Filename)
    object NullValue = System.Reflection.Missing.Value;
    Microsoft.Office.Interop.Excel.Application excelApp = new Microsoft.Office.Interop.Excel.ApplicationClass();
    excelApp.DisplayAlerts = false;
    Microsoft.Office.Interop.Excel.Workbook Workbook = excelApp.Workbooks.Open(
    Filename, NullValue, NullValue, NullValue, NullValue,
    NullValue, NullValue, NullValue, NullValue, NullValue,
    NullValue, NullValue, NullValue, NullValue, NullValue);
    Workbook.RefreshAll();
    System.Threading.Thread.Sleep(20000);
    Workbook.Save();
    Workbook.Close(false, Filename, null);
    excelApp.Quit();
    Workbook = null;
    System.Runtime.InteropServices.Marshal.ReleaseComObject(excelApp);
    Thanks All
    Sri.Tummala

  • Af:inputListOfValues sets value of first item in result set when using enter key or tab and component set to autosubmit=true

    I'm using JDev 11.1.1.6 and when I type a value into an af:inputListOfValues component and hit either the enter key or the tab key it will replace the value I entered with the first item in the LOV result set. If enter a value and just click out of the af:inputListOfValues component it works correctly. If I use the popup and search for a value it works correctly as well. I have a programmatic view object which contains a single transient attribute (this is the view object which is used to create the list of value component from) and then I have another entity based view object which defines one of its attributes as a list of value attribute. I tried using an entity based view object to create the LOV from and everything works as expected so I'm not sure if this is a bug when using programmatic view objects or if I need more code in the VOImpl. Also, it seems that after the first time of the value being replaced by the first value in the result set that it will work correctly as well. Below are some of the important code snippets.
    Also, it looks like it only doesn't work if the text entered in the af:inputListOfValues component would only have a single match returned in the result set. For instance given the result set in the code: Brad, Adam, Aaron, Fred, Charles, Charlie, Jimmy
    If we enter Cha, the component works as expected
    If we enter A, the component works as expected
    If we enter Jimmy, the component does not work as expected and returns the first value of the result set ie. Brad
    If we enter Fred, the component does not work as expected and returns the first value of the result set ie. Brad
    I also verified that I get the same behavior in JDev 11.1.1.7
    UsersVOImpl (Programmatic View Object with 1 transient attribute)
    import java.sql.ResultSet;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import oracle.adf.share.logging.ADFLogger;
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Wed Sep 18 15:59:44 CDT 2013
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    public class UsersVOImpl extends ViewObjectImpl {
        private static ADFLogger LOGGER = ADFLogger.createADFLogger(UsersVOImpl.class);
        private long hitCount = 0;
         * This is the default constructor (do not remove).
        public UsersVOImpl () {
         * executeQueryForCollection - overridden for custom java data source support.
        protected void executeQueryForCollection (Object qc, Object[] params, int noUserParams) {
             List<String> usersList = new ArrayList<String>();
             usersList.add("Brad");
             usersList.add("Adam");
             usersList.add("Aaron");
             usersList.add("Fred");
             usersList.add("Charles");
             usersList.add("Charlie");
             usersList.add("Jimmy");
             Iterator usersIterator = usersList.iterator();
             setUserDataForCollection(qc, usersIterator);
             hitCount = usersList.size();
             super.executeQueryForCollection(qc, params, noUserParams);
        } // end executeQueryForCollection
         * hasNextForCollection - overridden for custom java data source support.
        protected boolean hasNextForCollection (Object qc) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             if (usersListIterator.hasNext()) {
                 return true;
             } else {
                 setFetchCompleteForCollection(qc, true);
                 return false;
             } // end if
        } // end hasNextForCollection
         * createRowFromResultSet - overridden for custom java data source support.
        protected ViewRowImpl createRowFromResultSet (Object qc, ResultSet resultSet) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             String user = (String)usersListIterator.next();
             ViewRowImpl viewRowImpl = createNewRowForCollection(qc);
             try {
                 populateAttributeForRow(viewRowImpl, 0, user.toString());
             } catch (Exception e) {
                 LOGGER.severe("Error Initializing Data", e);
                 throw new JboException(e);
             } // end try/catch
             return viewRowImpl;
        } // end createRowFromResultSet
         * getQueryHitCount - overridden for custom java data source support.
        public long getQueryHitCount (ViewRowSetImpl viewRowSet) {
             return hitCount;
        } // end getQueryHitCount
        @Override
        protected void create () {
             getViewDef().setQuery(null);
             getViewDef().setSelectClause(null);
             setQuery(null);
        } // end create
        @Override
        protected void releaseUserDataForCollection (Object qc, Object rs) {
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             usersListIterator = null;
             super.releaseUserDataForCollection(qc, rs);
        } // end releaseUserDataForCollection
    } // end class
    <af:inputListOfValues id="userName" popupTitle="Search and Select: #{bindings.UserName.hints.label}" value="#{bindings.UserName.inputValue}"
                                                  label="#{bindings.UserName.hints.label}" model="#{bindings.UserName.listOfValuesModel}" required="#{bindings.UserName.hints.mandatory}"
                                                  columns="#{bindings.UserName.hints.displayWidth}" shortDesc="#{bindings.UserName.hints.tooltip}" autoSubmit="true"
                                                  searchDesc="#{bindings.UserName.hints.tooltip}"                                          
                                                  simple="true">
                              <f:validator binding="#{bindings.UserName.validator}"/>                      
    </af:inputListOfValues>

    I have found a solution to this issue. It seems that when using a programmatic view object which has a transient attribute as its primary key you need to override more methods in the ViewObjectImpl so that it knows how to locate the row related to the primary key when the view object records aren't in the cache. This is why it would work correctly sometimes but not all the time. Below are the additional methods you need to override. The logic you use in retrieveByKey would be on a view object by view object basis and would be different if you had a primary key which consisted of more than one attribute.
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i) {
        return retrieveByKey(viewRowSetImpl, null, key, i, false);
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, String string, Key key, int i, boolean b) {
        RowSetIterator usersRowSetIterator = this.createRowSet(null);
        Row[] userRows = usersRowSetIterator.getFilteredRows("UserId", key.getAttribute(this.getAttributeIndexOf("UserId")));
        usersRowSetIterator.closeRowSetIterator();
        return userRows;
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i, boolean b) {
        return retrieveByKey(viewRowSetImpl, null, key, i, b);

  • Smartview Refresh All in Protected Worksheet

    Hi All,
    After locked the cells and protected the worksheet. I clicked the icon Refresh All and I discovered the cells are not lock. How can I Refresh All and the cells in the protected worksheet are still lock?
    Thanks,
    Michael

    Limit the refresh to those sheets you need either based on their name or on their index, For Example
    Sub Refrsh()
    'This will refresh the first 3 worksheets of you Workbook.
    Application.ScreenUpdating = False
    For i = 1 To 3
    Sheets(i).Select
    HypMenuVRefresh
    Next i
    Application.ScreenUpdating = True
    End Sub

  • How to reload frame in Safari? Reloading page does not refresh all frames

    I have IPAD Air. In Safari, reloading a page does not automatically refresh all frames. Is there a way to force a frame reload/refresh?
    This is true in other browsers, IE, Chrome, etc, that is reloading a page does not automatically fresh all frames. However, they all have a reload frame option.
    How can I do that in Safari?

    A frame is not a browser tab. A web page is made up of multiple frames. 'frame' is the standard HTML definition of the frame tag. Here is a html example, which specifies a web page that subdivides into 6 frames. Each frame links to a html page.
    In Safari, updating a page does not automatically updates all the frames. In all other browsers, you can put the mouse on a frame, right click, and select the 'reload frame.' option.
    My question is how to updat frames in Safari? One way that works, of course, is to go to IPAD Setup, select Safari, and flush the Safari cache, but that's very inconvenient.
    |                                                    |
    |                                                    |
    |                                                    |                 
    |                                                    |
    |                                                    |
    |          |                              |          |
    <frameset rows="45,50,*,60" frameborder="0" border="0" framespacing="0">
    <!--  <frame name="topNav" src="top_nav.html" target="_self"> -->
      <frame name="topNav" src="top_nav.html" target="_self">
      <frame name="menu" src="menu_1.html" target="_self">
      <frame name="content" src="../TaishaneseChopSuey/transcription.html">
    <frameset cols="200,*,300" frameborder="0" border="0" framespacing="0">
      <frame name="footer" src="footer.html">
      <frame name="footer2" src="footer2.html">
      <frame name="sound" src="sound.html" target="_self">
    </frameset>

  • Auto refresh all

    Hi All,
    I had a problem with a non displaying content tile but it appears when i do a "refresh all (ctrl + R)"
    I would like to do it automaticly
    have you some idea ?
    Regards, Julien

    Hi,
    When i try to include code in the tileset the system erase it so I have not do that on a tileset but on the "CRMPHA_comnotedetail" tile in the method "onload"
    I have monitored it by messagebox.show("message")
    Here is my piece of code :
    Private Sub mCore_onLoad() Handles mCore.onLoad
      Dim TerrAct As String
      On Error   GoTo ErrHandler
      TerrAct = _unwind(gServices.bol.UserDataDictionary.GetData("TERRACTIVE"))
      If (TerrAct = 1) Then
       ctrlCRMPHA_TERRID.visible = True
       ctrlCRMPHA_TerritoryIDLong.visible = True
       ctrlCRMPHA_TerritoryIDLong.[readonly] = True
      End If
      SpellCheckInitialize()
      If (Not (aCRMPHA_BONote Is Nothing)) Then
       If (Not (aCRMPHA_BONote.bo Is Nothing)) Then
        aCRMPHA_BoNote.bo.vResourcePath = gServices.getResourceFileName("LocaleIDList")
        If (aCRMPHA_BONote.bo.GetAttributeProp("Notes") <> BlAttributeAccessType.blAttributeReadOnly) Then
         ctrlSpellChk.enabled = True
        End If
       End If
       End If
    messagebox.show("begin")
            aCRMPHA_BONote.bo.RefreshEx()
            aCRMPHA_NoteCollection.bo.RefreshEx()
    messagebox.show("end")
    ErrHandler:
    End Sub
    When i tries to acces it the first messagebox appears but not the second....
    Best regards

  • Multiple select queries used in Excel BI report ,fetching data from Sharepoint DB(SP2010_Prod_ProjectServer) causing blockage on DB ,when more than one workbook(same copy of Excel BI Report) refreshed using Refresh All option.

    I am using mutiple select queries to fetch data from Project Server 2010 DB(its sharepoint DB) and these queries fetch data in Excel BI report by establishing connection with DB using instance name and all. I have enhance all these select queries and data
    is being fetched in secs. but when more than one copy of same Excel BI report is refreshed using 'Refresh All' option, then these select queries cause blockage on DB.
    Please let me know mitigation for this blockage issue.
    Should I use begin transaction and commit transaction statements/ shared lock statements.
    please reply

    Hi,
    run same query at the same time?

  • Excel 2007 = Refresh All = Error Message "Initialization Data Source Failed"

    Excel 2007 => Data Tab - Refresh All => Error Message "Initialization Data Source Failed
    2nd Error message:
    The following data ranged failed to refresh:  ExternalData1 - Continue to refresh all
    How do I resolve this? Trying to connect to Oracle DB environment 12C

    What will happen if you rebuild the PivotTable/Table ?
    Make sure the external database is available and the Oracle Provider for OLE DB is installed correctly.
    Wind Zhang
    TechNet Community Support

  • Running a "Refresh All" process for our BI reports created with Excel

    Hi folks,
    Using oData within Excel 2013 with Project Server 2013 Online.
    In previous versions of Project Server, we ran the process in PWA>Server Settings to get the OLAP cubes to regenerate periodically.
    Now, in Project Server 2013 ONLINE there are no cubes to generate.  As you know we access and create reports using oData via Excel.  No problem!
    Can we spare the users of these reports from having to manually regenerate their reports by doing a 'Refresh (All)'?
    Instead I was thinking maybe to create and run a script (VBA, etc.) and/ or schedule a task that will open the Excel file and perform a Refresh, save and close the file. 
    Any recommendations, opionions or suggestions appreciated?
    \Spiro Theopoulos PMP, MCITP. Montreal, QC (Canada)

    Spiro,
    To have a "Scheduled Data Refresh" on your BI Reports in Project Online, you need Power BI for Office 365. The exact steps are listed here: http://ppmblog.org/2014/04/20/background-refresh-your-project-online-reports/
    This is the recommended way, if the license cost is not a big deal for your organization.
    If that is not an option, then I guess, the next best method is to create a desktop task to open and publish the reports.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Error while autoSubmit = true in table row fields.

    I am having a data table bonded with a VO object. Table contains records in a inputText. When clicking on Add button adds a new blank row in the table. I need to update this row input fields and need to retrieve the latest Vo on server side. For that I am trying to set autoSubmit value to true on each text field of the column.
    However I am getting following error.
    Target Unreachable, identifier 'row' resolved to 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, #9
    Can you please help.

    jspx page*
    <af:commandImageLink text="> Advance View" id="cil1" useWindow="true"
    windowEmbedStyle="inlineDocument" windowHeight="475" windowWidth="325"
    action="lov" returnListener="#{browseEmployeesBean.onDialogReturn}"
    launchListener="#{browseEmployeesBean.launchHandler}"
    immediate="true"/>
    <af:panelFormLayout>
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
    text="Add Row"
    disabled="#{!bindings.CreateInsert.enabled}"
    id="cb1"/>
    <af:table value="#{bindings.departmentsLookup.collectionModel}"
    binding="#{browseEmployeesBean.dataTable}"
    var="row" rows="#{bindings.departmentsLookup.rangeSize}"
    emptyText="#{bindings.departmentsLookup.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.departmentsLookup.rangeSize}"
    rowBandingInterval="0" id="t1">
    <af:column sortProperty="DepartmentId" sortable="false"
    headerText="#{bindings.departmentsLookup.hints.DepartmentId.label}"
    id="c1">
    <af:inputText value="#{row.bindings.DepartmentId.inputValue}" autoSubmit="true"
    label="#{bindings.departmentsLookup.hints.DepartmentId.label}"
    required="#{bindings.departmentsLookup.hints.DepartmentId.mandatory}"
    columns="#{bindings.departmentsLookup.hints.DepartmentId.displayWidth}"
    maximumLength="#{bindings.departmentsLookup.hints.DepartmentId.precision}"
    shortDesc="#{bindings.departmentsLookup.hints.DepartmentId.tooltip}"
    id="it7">
    <f:validator binding="#{row.bindings.DepartmentId.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.departmentsLookup.hints.DepartmentId.format}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="DepartmentName" sortable="false"
    headerText="#{bindings.departmentsLookup.hints.DepartmentName.label}"
    id="c3">
    <af:inputText value="#{row.bindings.DepartmentName.inputValue}" autoSubmit="true"
    label="#{bindings.departmentsLookup.hints.DepartmentName.label}"
    required="#{bindings.departmentsLookup.hints.DepartmentName.mandatory}"
    columns="#{bindings.departmentsLookup.hints.DepartmentName.displayWidth}"
    maximumLength="#{bindings.departmentsLookup.hints.DepartmentName.precision}"
    shortDesc="#{bindings.departmentsLookup.hints.DepartmentName.tooltip}"
    id="it6">
    <f:validator binding="#{row.bindings.DepartmentName.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="ManagerId" sortable="false"
    headerText="#{bindings.departmentsLookup.hints.ManagerId.label}"
    id="c2">
    <af:inputText value="#{row.bindings.ManagerId.inputValue}" autoSubmit="true"
    label="#{bindings.departmentsLookup.hints.ManagerId.label}"
    required="#{bindings.departmentsLookup.hints.ManagerId.mandatory}"
    columns="#{bindings.departmentsLookup.hints.ManagerId.displayWidth}"
    maximumLength="#{bindings.departmentsLookup.hints.ManagerId.precision}"
    shortDesc="#{bindings.departmentsLookup.hints.ManagerId.tooltip}"
    id="it8">
    <f:validator binding="#{row.bindings.ManagerId.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.departmentsLookup.hints.ManagerId.format}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="LocationId" sortable="false"
    headerText="#{bindings.departmentsLookup.hints.LocationId.label}"
    id="c4">
    <af:inputText value="#{row.bindings.LocationId.inputValue}" autoSubmit="true"
    label="#{bindings.departmentsLookup.hints.LocationId.label}"
    required="#{bindings.departmentsLookup.hints.LocationId.mandatory}"
    columns="#{bindings.departmentsLookup.hints.LocationId.displayWidth}"
    maximumLength="#{bindings.departmentsLookup.hints.LocationId.precision}"
    shortDesc="#{bindings.departmentsLookup.hints.LocationId.tooltip}"
    id="it3">
    <f:validator binding="#{row.bindings.LocationId.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.departmentsLookup.hints.LocationId.format}"/>
    </af:inputText>
    </af:column>
    </af:table>
    </af:panelFormLayout>
    <!--<f:facet name="footer">
    Exception_
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase APPLY_REQUEST_VALUES 2
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'row' resolved to null
         at com.sun.el.parser.AstValue.getTarget(Unknown Source)
         at com.sun.el.parser.AstValue.isReadOnly(Unknown Source)
         at com.sun.el.ValueExpressionImpl.isReadOnly(Unknown Source)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:486)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:400)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.wasSubmitted(EditableValueRenderer.java:343)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.decodeInternal(EditableValueRenderer.java:116)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.decodeInternal(LabeledInputRenderer.java:56)
         at oracle.adf.view.rich.render.RichRenderer.decode(RichRenderer.java:293)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1118)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:717)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processDecodes(UIXComponentBase.java:800)
         at org.apache.myfaces.trinidad.component.UIXEditableValue.processDecodes(UIXEditableValue.java:236)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1255)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1410)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1073)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1330)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1424)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:168)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:720)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:678)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:333)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)

  • Refresh all worksheet not working in smartview 11.1.2.2.300

    Hi All,
    We have a excelsheet report which contain multiple sheets in it. These all sheets have essbase report using HsGetValue formulas. Now when we are clicking on 'Refresh all worksheet' its not working however single sheet refresh works. Can you anyone please sugget what will be the issue?
    Thanks,

    Hi,
    I didn't understand your first question. Can you please explain it more?
    In smartview log I'm getting below error-
    [2015-02-17T19:07:32][SVC][ERROR:1][SVC10000][SVC][ecid: be2ca10d-c2a6-4146-b8d0-21ec0852f46a,0]Registry write operation failed (System.NullReferenceException): Object reference not set to an instance of an object.
       at B8CEB14D_B26A_48bf_80BC_18D4B75F6D5F.ExtensionUpdater.GetBoolSetting(String strName)
    Thanks,

  • Focus lost in Date Field when the property autosubmit="true" is added

    Hi,
    I am using jdeveloper version 11.1.2.0.0.
    The issue I am facing is when I add the property autosubmit="true" for a date field and if I am selecting a date value using date picker, the focus is lost for the date field. But when I remove the property autosubmit="true" for the date field and if I am selecting a date value using date picker, the focus stays in the date field. This I tried in sample application with the default converter and validator. Anybody can help me with this issue?

    Hi,
    there is a preSubmit event for form objects you can use.
    Select your date field, open the script editor and add this script (language is FormCalc) into the preSubmit event.
    $ = num2date(date(), "MM/DD/YYYY")

  • Error when clicking on refresh all button in excell add in

    Hi All
    One of our users is facing an issue when clicked on the refresh all button on excel.
    Below is the error she is getting.
    "Request Definition has been changed on server since last download. Please use edit Prompts and levels to select new filters.tableView"
    Sometimes it does work and sometimes it doesnt.
    How can we rectify this issue? Please advice.
    Regds
    Mano

    Hi All
    Can somebody please help me on this?
    Regds
    Mano

Maybe you are looking for

  • Networking 2 Macs Together

    Hi, Is there an easy way to network a MDD G4 Mac to a new Mac Pro? I'm trying to decide whether to sell my old Mac or whether I might could use it for "storage" purposes (have some hefty hard drives in it)... Thanks! Jacki

  • I can´t open downloaded files ending .pdf.part? Why do I suddenly get this problem?

    When I open them in Word they are blank och in Adobe they don´t open at all. I havent changed anything exept accepted updates When I Downlode from Websites, this simply happens, never ever happend before. Started in February

  • Getting column names for resultMap - Ibatis

    Hi friends, I need to get the column names for the properties specified in sqlMap.xml in my code . for example: <resultMap id="resmap" class="java.util.HashMap"> <result property="custId" column="cust_id"/> <result property="routerId" column="router_

  • Setup additional distribution point

    Hi all, Currently i have one SCCM server setup and it already has distribution point role installed. We have several branches with limited network bandwidth and file server for each of them. My question is, is it possible to add more than one distrib

  • Problem moving previously purchased music to my new Touch

    When I attempt to transfer a song I had purchased into my new Touch and I get an error message that the song can not be transfered because the computer is not authorized to play it. I have tried authorizing the ocmputer, and reauthorizing, and that h