*Conditional* Refresh of IRR

I have an Interactive Report Region on a page which I have automatically refreshing. I am doing this with the following block placed in the Region Footer:
<script type="text/javascript">
<!--
  setInterval("jQuery('#US_INTRADAY_IRR').trigger('apexrefresh');", 300000);
//-->
</script>
This is working as it should and the page is refreshing on the schedule.
However, my users have complained that, if they are in the middle of using one of the action panels, e.g. setting a filter, creating a calculated column, etc. the refresh kicks off and they lose thier work.
I have found a way to determine if one of these panels is open. This can be based on:
$("#apexir_CONTROL_PANEL_DROP").css('display');Basically, the pseudo-code would be:
if CONTROL PANEL IS NOT DISPLAYED then REFRESH
else
SLEEP until next refresh interval
end
Can anyone help me figure out how to put this test in place?
Thanks,
-Joe

Why not instead of triggering the refresh in your interval, call a function
function test_refresh_ir(){
   if($("#apexir_CONTROL_PANEL_DROP").css('display')=="none"){
      $('#US_INTRADAY_IRR').trigger('apexrefresh');
setInterval(function(){test_refresh_ir();}, 300000);No need to sleep, after another 3000000ms the test will happen again.

Similar Messages

  • Refresh selectOneChoice ListBinding Conditionally

    Hi,
    I am again asking for help. It stuck me for a while now. Thanks in advance for your inputs.
    I want 3 list boxes conditionally refreshed depending on a data input. So a data input triggers the refresh of list binding of the dropdown list. The input data serves as the bind variable for the list Binding VO instance.
    here is what I tried:
    <af:inputText value="#{bindings.Zip.inputValue}"
                                  label="#{bindings.Zip.label}" required="true"
                                  columns="#{bindings.Zip.displayWidth}"
                                  id="legalZip"
                                  binding="#{managed_ProjectInfoPage.legalZip}"
                                  autoSubmit="true"
                                  immediate="true"
                                  valueChangeL!stener="#{managed_ProjectInfoPage.ZipPPR}">
                      <af:validator binding="#{bindings.Zip.validator}"/>
                    </af:inputText>
                    <af:selectOneChoice value="#{bindings.ProjectInfoState.inputValue}"
                                        label="#{bindings.ProjectInfoState.label}"
                                        binding="#{managed_ProjectInfoPage.stateChoice}"
                                        id="stateChoice"
                                        partialTriggers="legalZip">
                      <f:selectItems value="#{bindings.ProjectInfoState.items}"
                                     binding="#{managed_ProjectInfoPage.selectItems5}"
                                     id="selectItems5"/>
                    </af:selectOneChoice>
                    <af:selectOneChoice value="#{bindings.ProjectInfoCounty.inputValue}"
                                        label="#{bindings.ProjectInfoCounty.label}"
                                        binding="#{managed_ProjectInfoPage.countyChoice}"
                                        id="countyChoice"
                                        partialTriggers="legalZip">
                      <f:selectItems value="#{bindings.ProjectInfoCounty.items}"
                                     binding="#{managed_ProjectInfoPage.selectItems6}"
                                     id="selectItems6"/>
                    </af:selectOneChoice>
                    <af:selectOneChoice value="#{bindings.ProjectInfoCity.inputValue}"
                                        label="#{bindings.ProjectInfoCity.label}"
                                        binding="#{managed_ProjectInfoPage.cityChoice}"
                                        id="cityChoice"
                                        partialTriggers="legalZip">
                      <f:selectItems value="#{bindings.ProjectInfoCity.items}"
                                     binding="#{managed_ProjectInfoPage.selectItems4}"
                                     id="selectItems4"/>
                    </af:selectOneChoice>On my backing bean, I have the valueChangeEvent set for the inputFields(the trigger)
        public void ZipPPR(ValueChangeEvent valueChangeEvent) {
            String zipInput = getLegalZip().getValue().toString();
            System.out.println(zipInput);
            OperationBinding operationBinding = getBindings().getOperationBinding("ExecuteZip");
            Map params = operationBinding.getParamsMap();
            params.put("Zip", zipInput);
            operationBinding.execute();
        }The ActionBinding on PageDef.xml:
        <action IterBinding="LocationL!stIterator" id="ExecuteZip"
                InstanceName="PortalPublicServiceDataControl.LocationL!st"
                DataControl="PortalPublicServiceDataControl"
                RequiresUpdateModel="true" Action="95">
          <NamedData NDName="Zip" NDType="java.lang.String"/>
        </action>The problem I have is I am not able to manually refresh the selectOneChoice L!stBinding with the passed bind variable (Seems like The execution of "ExecuteWIthParameter" action is not explicitly refresh the l!stBinding). The dropdown list doesn't have any data when put data in the inputField.
    I even tried to call a VO.executeQuery() method in AM from backing bean to requery the VO with passed parameter but I still droplist doens't have any data.
    Any ideas? please advise.
    thanks !

    >
    >
    <action IterBinding="LocationL!stIterator" id="ExecuteZip"
    InstanceName="PortalPublicServiceDataControl.LocationL!st"
    DataControl="PortalPublicServiceDataControl"
    RequiresUpdateModel="true" Action="95">
    <NamedData NDName="Zip" NDType="java.lang.String"/>
    </action>Correct me if i am wrong... LocationListIterator does not seem to be used in your dropdown fields ?
    My few cents:
    1) Have you tested it in Mozilla Firefox. Cos, lately i have seen issues with PPR in IE7 albeit it works fine in FF.
    2) Another approach without having to write any Backing bean code at all, would be
    a) define a view link on ZipCode between your main vo and a dropdown vo, say ProjectInfoCity
    b) make sure autosubmit on zip code inputText field is set to true.
    c) make sure partialTriggers of ProjectInfoCity dropdown refers to zipCode field
    Bingo! ADF will do rest of the stuff for you.
    I am sure it works as i have tested similar usecase just now; country being text input, on which two other dropdowns state, and city are dependent. It works perfectly fine.
    Regards
    Srini

  • Refresh event problem, when using anything other than on-load

    I am attempting to create a series of sequential xml loads, without any user interaction.
    I.E. xml1 contains the location of xml2, and xml2 contains the location of xml3, so the next must wait until the prior xml has been loaded.
    It is impractical to use dropdown lists or refresh buttons to update these - (they should all happen behind the scenes as they are just loading selections that change depending on the user privileges).
    While my desired refresh-event is the when-value-becomes, I have tested when-value-changes, and found the same problem.
    When I set these to automatically chain through (xml1 is set to refresh-on-load, xml2 is set to load by a trigger cell that equals "load" if there are values loaded from xml1, and so on) - the conditional refresh events do not fire.
    When I use a manual refresh button, they load without a problem, and when I use a dropdown list to test the on-change or value-equals logic, this loads correctly too. So the problem is specifically during the intial load-up point, and is reproducable in any new xcelsius project I create.
    To state the problem precisely, during the initial loading phase of xcelsius, the logic behind when-value-changes and when-value-equals load events does not seem to execute - however after the initial load, they fire correctly based off user input.
    Is there any workaround or solution? If any clarification is needed, let me know where.

    May not be your exact issue, but something similar -
    Only a problem w/SP3 - I used dynamic visibility to hide two connection refresh buttons that were loading data after components finished. They stopped working until I turned the dynamic visibility off and just hid them behind other layers. Confirmed by revealing them after load and the triggers ran appropriately. May not be the issue (since you didn't mention visibility), but worth a try.

  • BeanScope and Binding layer relationship

    Generals,
    Does the scope of the bean has any resemblance to the data fetched/displayed using the binding layers ?
    thnks
    Jdev 11.1.1.5

    Hi,
    bean scopes have no relation to the binding layer, which is conditionally refreshed by request
    Frank

  • AJAX Report Refresh  a_report- Condition for display not being validated

    Hi ,
    I have a report which has the following condition for dispaly:
    Exists(SQL query returs atleast one row) - SELECT * from temp1The query for the report is : select * from temp1 Now I have a button on the page and on click of the button I call the below Javascript :
    function f_insert_Temp_table(pTrans){
          var l_Return = null;
          var get = new htmldb_Get(null,$x('pFlowId').value,
                  'APPLICATION_PROCESS=temp_table_insert',206);       // ODP to insert into temp1
          get.add('TRANS_ID_ITEM',pTrans);
          gReturn = get.get('');
         //alert(gReturn);
         //$x_Show('6342610690289435');
         $a_report('6342610690289435','1','15','15');
    }Everything executes fine and the report refreshes the rows but the condition used for display doesn't get checked when I call $a_report() ...
    I can see the ODP execute successfully and row gets inserted into temp1 which means report condition is satisfied .
    If I remove the condition for the report, I can see the report getting refreshed and showing new rows through the $a_Report() call.
    Is there something that needs to be added to the script or $a_report call to validate the condition too ?Is there a way I can validate the region condition too ?
    Appreciate any suggestions/pointers here. I really do not want to refresh the whole page.
    Thanks,
    Dippy
    Edited by: Dippy on Feb 5, 2010 11:05 AM

    Hi Flavio,
    Thanks for your support.I figured where I was going completely wrong.
    Its just that when the page loads for the first time the temp table is empty and hence the report is not being displayed which simply
    means that the report id Im passing into the a_report function is not rendered on the page. Hence no matter what the temp table contains the report id is absent from the page.
    I fixed it as follows :
    Remove the condition for the report.
    Added and item and computed(P_Compute) its value using select count(*) from temp.
    Added an onload JS function which does a $x_Show('Report_Region') if P_Compute > 0 or $x_Hide('Report_Region') if P_Compute <0 .
    Now in my JS function which has an AJAX call to an ODP does an $x_Show('Report_Region').
    Flavioc : the query for my report is simple
    select * from tempIt finally dawned upon me that I'm trying to catch hold of an ID that's not rendered.
    So one issue is solved now the other part would be figuring out how to make $a_report work with pagination etc .

  • ADF Faces & BC: PPR and refresh condition on pagedef executables.

    Hi all,
    I'm running into some problems on my page when a command button is pressed. It's partialSubmit attribute is set to true, it seems that iterators/invokeActions within my pageDef are re-executed and thus resetting the index iterator cursor to its original position which leads to the following two messages:
    Jun 2, 2008 5:34:57 PM oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel setRowKey
    WARNING: row is null for rowKey:oracle.jbo.Key[TEST_MN 00123456 2008-05-08 98 98 4 ]
    Jun 2, 2008 5:34:57 PM oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel makeCurrent
    My pageDef code:
    <iterator id="MasterVoIterator" RangeSize="10"
    Binds="MasterVo"
    DataControl="AppModule" />
    <iterator id="DetailVoIterator" RangeSize="10"
    Binds="DetailVo"
    DataControl="AppModule" />
    <invokeAction Binds="invokeInitValues" id="initValues"/>
    I would like to know how to setup the refresh property under the following scinero:
    1. when the page shows up for the first time:
    MasterVoIterator - invoke
    DetailVoIterator - invoke
    invokeInitValues - invoke
    2. When a show/hide button is used to display the detail rows is clicked:
    MasterVoIterator - do nothing
    DetailVoIterator - invoke // to refresh the detail records.
    invokeInitValues - do nothing
    Here is a pic of the component I am working with:
    http://i108.photobucket.com/albums/n23/zeoneozero/mrbhelp.jpg
    Any advice is appreciated
    Thanks,
    Wes

    Hi,
    use
    ${!adfFacesContext.postback}
    as the refresh condition property value to avoid a refresh on postback (when a button is clicked)
    Frank

  • Formated Search: Auto refresh with two conditions.

    Hi,
    I've created a Formated Search in one of my column.
    I defined my formated search as :
    - Auto refresh "When Exiting Altered Column" Item No.
    - Display Saved Values.
    Now how can I make it Auto refresh with two conditions?
    - Auto refresh "When Exiting Altered Column" Item No.
    And
    - Auto refresh "When Field Changes" Customers/Vendor Code.
    - Display Saved Values.
    Is there any way to make it work?
    Thanks In Advance.
    Bruce.

    Hi Bruce,
    You could try this trick.
    You need to execute SELECT1 in Col1 when Item No. column is altered or the Customer code is changed.
    Then, in the Item No. column asign a new Formatted Search which selects the Item No. column value (Its value) when the Customer code is changed.
    And in the Col1 asign a formatted search that acts when the Item No. column is altered.
    I think this should do the trick.
    Let us know if works.
    Regards,
    Ibai Peñ

  • Manual rebate condition exclusion not refreshed after redetermination of it

    Hi Experts.
    I am working with CRM 4.0.
    Lately, we realized there is an error occurring in the price deternination:
    The condition exclusion for manual rebate condition is not refreshed after redetermination of the product. There is missing a price validation before saving the document with the new product.
    Step-to-step description of the error:
    1)     I am creating an order in trx. CIC0 or CRMD_BUS2000115 and determine the product (sector A).
    2)     Now I assign a manual rebate (condition Z...) of 20 % on item level.
    3)     On header level I replace the product to one of another sector (B).
    4)     I check the pricing conditions of the new product on item level. The same rebate of 20 % is maintained.
    This is an error, because the condition exclusion for products of sector B allows rebates only until 5 %.
    Can anybody help me, please.
    Best regards,
    Cristina

    This is not standard due to information of SAP OSS.

  • Refresh condition of invoke action

    Hi,
    I'm working with ADF 11g JDeveloper 11.1.2.2.0.
    I am facing problem with invoke Action.I have a jspx page that contains a table. I have created a method in AM and calling it when the page load. I have created invoke action, then made it the first one to be executed. In the definition page (xml) the code is :
    <invokeAction id="invoke" Binds="getEmployeesInDept" Refresh="prepareModelIfNeeded"/>
    I want the invokeAction to run ONLY the first time when the page is rendered. I think refresh condition has to handle this. Which condition I should give? So that my method will get executed only when the page is rendered.

    Hi,
    have you tried with setting
    RefreshCondition=#{adfFacesContext.postback==false}and
    Refresh="prepareModel"you can also have a look at http://hazem-adf-tips.blogspot.in/2012/10/how-to-deal-with-invokeaction-refresh.html
    ~Abhijit

  • Condition to test for the browser closing/refreshing

    I have an applet that rotates pictures in a html file. I have it in an eternal loop to keep it running. It loads fine, but if you refresh or try to close the browser, the browser locks. Without question this happens because the loop does not test for the browser closing or refreshing so the loop never stops. Does anyone have an idea of a Java condition to test for the browser closing/refreshing so I can stop my loop when these events occur.

    The applets stop message should be called on a reload and/or a close. You could set a flag in your stop method that could be checked by a thread that actually sits and loops.
    When the flag is set, kill the tread.
    You should clear that flag in your start method.
    I have an applet that rotates pictures in a html file.
    I have it in an eternal loop to keep it running. It
    loads fine, but if you refresh or try to close the
    browser, the browser locks. Without question this
    happens because the loop does not test for the
    browser closing or refreshing so the loop never
    stops. Does anyone have an idea of a Java condition
    to test for the browser closing/refreshing so I can
    stop my loop when these events occur.

  • ADF Faces refresh conditions cause NullPointerException

    We are developping an ADF faces web application. For the jspx pages we use EJB3 data controls to display data from the database and other legacy systems.
    Most values in our application are read-only and some take some time to be provided by the database. To increase performance of our web application we decided to change the refresh condition from Refresh="ifNeeded" to Refresh="renderModelIfNeeded". The parameters of the bindings should not change so this seemed to be o.k. for our needs. To avoid the call during postbacks we added RefreshCondition="${!adfFacesContext.postback}".
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
    version="10.1.3.41.57" id="app_pagePageDef"
    Package="web.pageDefs"
    EnableTokenValidation="false">
    <methodIterator id="findSomething"
    Binds="findSomething.result"
    DataControl="GatewayLocal" RangeSize="-1"
    BeanClass="entities.MyObject"
    RefreshCondition="${!adfFacesContext.postback}"
    Refresh="renderModelIfNeeded"/>
    Performance is now really good and all data is displayed.
    On the other hand we now experience a strange behaviour and from time to time we get the following error message:
    07/10/30 14:02:37 java.lang.NullPointerException
    07/10/30 14:02:37 at oracle.jbo.uicli.binding.JUCtrlListBinding.findListIndex(JUCtrlListBinding.java:1096)
    07/10/30 14:02:37 at oracle.jbo.uicli.binding.JUCtrlListBinding.setValueAt(JUCtrlListBinding.java:1726)
    07/10/30 14:02:37 at oracle.jbo.uicli.binding.JUCtrlListBinding.updateValuesFromRow(JUCtrlListBinding.java:1339)
    07/10/30 14:02:37 at oracle.jbo.uicli.binding.JUIteratorBinding.navigated(JUIteratorBinding.java:282)
    07/10/30 14:02:37 at oracle.jbo.common.RowSetHelper.fireNavigationEvent(RowSetHelper.java:261)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.notifyNavigationEvent(DCRowSetIteratorImpl.java:1611)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCGenericRowSetIteratorImpl.notifyNavigationEvent(DCGenericRowSetIteratorImpl.java:313)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.syncIterator(DCRowSetIteratorImpl.java:258)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.first(DCRowSetIteratorImpl.java:653)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:649)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCIteratorBinding.rangeRefreshed(DCIteratorBinding.java:735)
    07/10/30 14:02:37 at oracle.jbo.common.RowSetHelper.fireRangeRefreshed(RowSetHelper.java:172)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.notifyRangeRefreshed(DCRowSetIteratorImpl.java:1570)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.buildProviderIterator(DCRowSetIteratorImpl.java:465)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.fetchDataSource(DCRowSetIteratorImpl.java:394)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.getRowAtAbsoluteIndex(DCRowSetIteratorImpl.java:1008)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.syncIterator(DCRowSetIteratorImpl.java:225)
    07/10/30 14:02:37 at oracle.adf.model.generic.DCRowSetIteratorImpl.first(DCRowSetIteratorImpl.java:653)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCIteratorBinding.internalGetCurrentRowInBinding(DCIteratorBinding.java:1919)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCIteratorBinding.getCurrentRow(DCIteratorBinding.java:1866)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCIteratorBinding.prepareCurrentRow(DCIteratorBinding.java:548)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:683)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:3499)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCBindingContainer.refreshExecutables(DCBindingContainer.java:2637)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2568)
    07/10/30 14:02:37 at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2260)
    07/10/30 14:02:37 at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareRender(PageLifecycleImpl.java:534)
    07/10/30 14:02:37 at oracle.adf.controller.faces.lifecycle.FacesPageLifecycle.prepareRender(FacesPageLifecycle.java:99)
    07/10/30 14:02:37 at oracle.adf.controller.v2.lifecycle.Lifecycle$1.execute(Lifecycle.java:297)
    07/10/30 14:02:37 at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    07/10/30 14:02:37 at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java:29)
    07/10/30 14:02:37 at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$1.before(ADFPhaseListener.java:426)
    07/10/30 14:02:37 at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.beforePhase(ADFPhaseListener.java:77)
    07/10/30 14:02:37 at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:192)
    07/10/30 14:02:37 at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    07/10/30 14:02:37 at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    07/10/30 14:02:37 at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    07/10/30 14:02:37 at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)
    07/10/30 14:02:37 at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)
    07/10/30 14:02:37 at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)
    07/10/30 14:02:37 at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)
    07/10/30 14:02:37 at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    07/10/30 14:02:37 at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)
    07/10/30 14:02:37 at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)
    07/10/30 14:02:37 at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)
    07/10/30 14:02:37 at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)
    07/10/30 14:02:37 at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
    07/10/30 14:02:37 at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
    07/10/30 14:02:37 at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
    07/10/30 14:02:37 at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:436)
    07/10/30 14:02:37 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    07/10/30 14:02:37 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    07/10/30 14:02:37 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    07/10/30 14:02:37 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    07/10/30 14:02:37 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    07/10/30 14:02:37 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    07/10/30 14:02:37 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    07/10/30 14:02:37 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    07/10/30 14:02:37 at java.lang.Thread.run(Thread.java:595)
    Has anyone seen this error before or can anyone explain this error? This problem is mission criticle to us so any help is appreciated. Without the boost of performance and unnecessary callbacks the application is just unusable.
    Thanks in advance,
    Robert

    Hi Frank,
    it seems that this issue is dependent to the renderModelIfNeeded phase. I still have no explanation for this behaviour. For now I've changed our implementation to use the prepareModel phase but I'm still not happy with the ADF phase implementation and documentation. Some methods that we use in the backend are called many times.
    I'll keep on trying to find a solution...
    Thanks
    Robert

  • Tax Percentage NOT Refresh for MWST Condition when Tax Code Change

    Hi All,
    I have maintained MWST condition on Purchase Order with a default value P1 (10%).
    During data entry, when I attempted to overwrite the tax code to P0 (0%), under Condition tab the tax percentage still showing 10% instead of refresh the rate according to the tax code.
    Is this a config error or system behaviour? Are there any SAP Note that I can apply to fix the problem?
    Applied SAP Note 655335 - ME22 ME22n tax at service level - Doesn't seem to fix the problem.
    Regards,
    Sarah

    Hi
    I think this may useful to U
    Condition Type for Adding VAT  
    Definition
    A condition type that you use to show the VAT amount in the pricing procedure in purchase orders.
    Use
    Customizing
    Create a new condition type, ZWST, in Customizing for Materials Management (MM), by choosing Purchasing ® Conditions ® Define Price Determination Process ® Define Condition Types ® Define Condition Type.
    To do so, copy condition type MWST and make the following settings:
    Description: VAT Amount
    Condition Class: D (Tax)
    Calculation Type: A (Percentage)
    Condition Category: D (Tax)
    In the Changes Which Can Be Made group box, select the following checkboxes:
    Item Condition
    Delete
    Amount/Percent
    Value
    Add the new condition type to the pricing procedure (in the standard system, RM0000), in Customizing for MM, by choosing Purchasing ® Conditions ® Define Price Determination Process ® Define Calculation Schema.
    Create a new entry in the pricing procedure as follows:
    Step: 36
    Cntr (Counter): 0
    CTyp (Condition Type): ZWST
    Man. (Manual Entry): Select this indicator.
    P (Print): S (printed in totals block)
    Reqt.: 10
    AltCty. (Condition Formula): 16

  • IRR dynamic action filter does not work when condition set.

    Hi All
    I've set up a filter on an Interactive report using a dynamic action. The fiilter is used to display records that expire within a term ( example 30,60,90 days.) The dynamic action is set to fire On Change. This all works fine as long as I do not set the report condition to only display when P1_DAYS is not null.
    I am using a report template that includes #REGION_STATIC_ID# as referenced in this post -
    http://anthonyrayner.blogspot.com/2010/07/report-filtering-with-apex-40-dynamic.html
    I hoped not to display a blank report region .. wait until after the user selects the "term" before displaying the results. Any workaround suggestions would be appreciated.
    Version -
    Application Express 4.0.1.00.03
    Thanks
    MO

    Kindly check the following link for reference.
    sample configuration link
    http://www.cisco.com/c/en/us/td/docs/wireless/controller/5700/software/release/3se/security/configuration_guide/b_sec_3se_5700_cg/b_sec_1501_3850_cg_chapter_01110.html
    http://www.cisco.com/c/en/us/td/docs/wireless/controller/7-0/configuration/guide/c70/c70intf.html
    Trouble shooting link
    http://www.cisco.com/c/en/us/support/docs/security/secure-access-control-system/113485-acs5x-tshoot.html

  • Refresh Cell Value Of Column Based On Condition

    Hi Experts,
    I m working on UI5 grid.
    This my grid:
    My requirement is:
    On change of "Actual Value ", if value is in between UL and LL then "Sub Test" column should be refreshed with image(ex.green ! mark)
    Till Now i achieved upto comarision in columns:
    But now i stucked with ,how to refresh image in "Sub Test" column based on valued entered in "Actual Value" column.
    Request your ideas.
    Regards,
    Neha

    You can also use CalcFields to bind to your data if you don't want the Icon column to be part of you model.
    Documentation/AdvancedTopics/DataBinding/CalcFields – SAPUI5 Wiki (TIP CORE User Interface)
    I've modified Dennis' example slightly to use a CalcField, notice the paths are defined to create a composite binding, the data is the automatically passed to the formatter function.
    http://jsbin.com/poren/1/edit
    Regards,
    Jason

  • Mass refresh of Condition Types in Purchase Orders

    HI,
    I have created an new conditon type and added int he Customisation, Now i am stuck in a situation where in i need all the open purchase orders to have this new condition type , Can v do an Mass Maintainance of the Purchase Orders ? If so can any body please help me in this regard
    with rgds
    Ranjith Singh

    Hi
    Check this link.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CAGTFMS/CAGTFMS.pdf
    PS : Reward points if helps

Maybe you are looking for

  • Installing elements 12 software on second machine

    I have Elements 12 installed on desktop but now buying a laptop and want to install it on that.  My software is registered with Adobe.  How do I do that? 

  • Sun-ejb-jar.xml  y ejb-jar.xml

    Hello I�m using SUn oNE Applciation Server and it request sun-ejb-jar.xml for this file when i deploy a ejb but i only have in the jar, generating by sun one studio , ejb-jar,xml , is it the same file?

  • RTP's are not showing up from the forms

    Case1: ======== I have a business rule which has seven RTP's. I have unchecked the Hidden Value for the BR in the Calculation Mgr. I have included this rule in a Menu and executing it from the form. Here it is not showing the pop -up for the RTP's bu

  • Ipod touch missing pairing record

    Built new Windows 8Pro 64Bit computer, installed Itunes, updated Itunes, now my IPOD Touch comes up with Ipod missing pairing record, what does that mean and how do I correct.

  • Unable to install Intel Management Engine Interface

    http://support.toshiba.com/support/viewContentDetail?contentId=4007230 When I try to install it, a box pops up and says ERROR Do Not Support This Platform. I have a Toshiba Satellite C855-S5234