Enabling PPR Event across the regions

Hi All
I dearly need all your thoughts on the following requirement.
I have 2 items in 2 different regions referring to different CO's. For instance, first region is having a text item and the second region is having a MessageChoice item. Now if i change the value of the first item eventually the value in the second region's messageChoice item should be populated. How can i enable PPR event across 2 items referring to different COntroller files. Any input on this will help me a lot for proceeding further.
Thanks
Praveen

You can use the pageContext.putSessionValue and getSessionValue to get the value.
Yes you can change the parameter pass to a pass. In the Controller you can call the page with the help of pageContext.setForwardUrl.
You can just check the condition like on the basic of some condition like If A then code will execute [[With 1 parameter]] else another code will execute [[with 2 parameter]]
Thanks
--Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Need to collect the Windows logon and logoff events across the Domain in a DC eviornment, for different machines and user accounts.

    Hello All,
    I am trying to build a Tool to collect the info about all the user's who login and logoff on daily basis in a domain network. I am using a windows 2008 server as a DC and have xp, win 7, win 8 , win 12 server as clients in the network.
    There are few questions in my mind which I am not able to answer.
    1> When a user tries to login to the DC network, he/ she gets authenticated using the kerberos protocol. does these authentication gets logged on the AD server by default? I have see a way to enable it from registry but even that's not giving me the expected
    output in the eventvwr.
    2> Do I have to use Audit policies to monitor all the user's log off and log on activities?
    3> Is there a way to collect these information from any place on the AD server other than the Eventvwr?
    Please help me in finding the solutions to these query's  of mine.
    Thanks.

    1. Open the Group Policy Management console on any domain controller in the target domain: navigate to Start → Administrative Tools → Group Policy Management.
    2. In the left pane, navigate to Forest: <domain_name>→ Domains → <domain_name>→ Domain Controllers. Right-click the effective domain controllers policy (by default, it is the Default Domain Controllers Policy), and select Edit from the pop-up
    menu. </domain_name></domain_name>
    <domain_name><domain_name>3. In the Group Policy Management Editor dialog, expand the Computer Configuration node on the left and navigate to Policies → Windows Settings → Security Settings → Local Policies → Audit Policy. </domain_name></domain_name>
    <domain_name><domain_name>4. Set the Audit account management and the Audit directory service access policy to "Success". Set the Audit logon events policy to  "Success" and "Failure". </domain_name></domain_name>
    5. Navigate to Start → Run and type '"cmd". Input the gpupdate /force command and press Enter. The group policy will be updated.
    Number of events could be excessive so you need to adjust size of Security log ( 1gb for example ) 
    Usage of EventCombMT Tool (part of
    MS ALtools )
     This tool gathers specific events from several different servers to one central location.
     Run the EventCombMT.exe > Right Click on Select to search field > Choose Get DCs in Domain > Mark your Domain Controllers for search
     Click the Searches menu > replace Event ID field values with
    4624  LOGON / 4634  LOGOFF
     Click Search and wait for the process to complete the operation.
     After the search is done the output directory contains the log files for the domain controllers where events with the specified Event ID’s were found.
    Alternatively you can try Netwrix Auditor for Active Directory solution with 20 days of free trial to generate such reports.
    --- Jeff (Netwrix)

  • Synchronization of memberLeaving event across the cluster

    Hi,
    Let's assume that we have 2 nodes and one of them is leaving the cluster (but will continue to operate alone). Both nodes use a MemberListener to react to the memberLeaving(MemberEvent) event. Moreover, in our case as part of the leaving event logic we need to send a lot of messages from one node to the other node. That is why we need to have both nodes be part of the cluster until the leaving event is done in all nodes.
    So my question is: Will be node leaving the cluster wait to actually leave the cluster once all the other nodes (and itself too) finished processing the memberLeaving event?
    In case the answer is no I was thinking that the way to ensure a proper clean up would be to do all the clean up logic in the node leaving the cluster but that would imply bringing all the shared/cached data to the leaving node and that wouldn't be a scalable operation.
    Ideas are welcome. :)
    Thanks,
    -- Gato

    Hi Gato,
    The memberLeaving event is an asynchronous notification raised on a node B when another node A issues a programmatic Service.shutdown() or Cluster.shutdown() call. There is no way for code running on B to block or delay the shutdown process on the node A.
    If you want to "negotiate" the conditions of a clean shutdown between cluster nodes, you would need to use a "satellite" InvocationService to communicate all necessary information and actions across the cluster before initiating the shutdown sequence.
    Regards,
    Gene

  • Need to perform validations across the Regions in OAF

    Hi
    There are 4 regions in a seeded page. The hierarchy is like below.
    Region_1
    ---------> Item_1
    ********Region_2
    ********--------> Item_2
    ********Region_3
    ********--------> Item_3
    Region_4
    ---------> Button_1
    NOTE: Region_2 and Region_3 are under Region_1
    I have separate controllers for each and every region.Now the requirement is when i click on Button_1 i have to perform some validation by fetching the values of Item_2 from Region_2 and Item_3 from Region_3 and should throw some exception. How i will be able to achieve it?
    I tried the following code in Button_1 controllers ProcessFormRequest() method.
    ProcessFormRequest()
    if(pageContext.getParameter("Button_1") != null)
    OAMessageTextInputBean textItem = (OAMessageTextInputBean)webBean.findChildRecursive("Item_2");
    System.out.println("Value is "+textItem.getValue(pageContext));
    I am getting Null Pointer Exception on the 2nd line (S.O.P line) but the item is having value. Also i noticed one thing. The if condition which i have written is getting executed only if click twice on the Button_1.
    Kindly let me know how i can achieve it. Your inputs are much needed.
    Thanks

    Pratap
    I am very happy about one thing. You got my requirement exactly.
    ButtonRN is the top most region in the page which is having the "HrNext" button. Item1_RN and Item2_RN are one level below the ButtonRN and they are having Item1 and Item2 respectively. Item2_RN is the last region in that page.
    The controller for ButtonRN, Item1_RN and Item2_RN are CO_1, CO_2 and CO_3 respectively.
    Below is the code which i am referring to.
    Extended CO_2
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAMessageTextInputBean mesBean = (OAMessageTextInputBean)webBean.findIndexedChild(webBean,"HrWorkHours");
    String hoursWorked = (mesBean.getValue(pageContext)==null)?"-1":mesBean.getValue(pageContext).toString();
    pageContext.putSessionValue("sessionHoursValue",hoursWorked);
    I have created a session variable and assigned the value
    Extended CO_3
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    OAApplicationModule am=pageContext.getApplicationModule(webBean);
    if(pageContext.getParameter("HrNext") != null)
    String sessionHoursValue = (( pageContext.getSessionValue("sessionHoursValue"))==null)?"-1":pageContext.getSessionValue("sessionHoursValue").toString();
    OAMessageChoiceBean inpBean = (OAMessageChoiceBean)webBean.findIndexedChild(webBean,"HrEmpCategory");
    String newVariable = (inpBean.getSelectionValue(pageContext)==null)?"-1":inpBean.getSelectionValue(pageContext).toString();
    throw new OAException ("Test Exception - Session Value is "+sessionHoursValue+" Bean Value is "+newVariable);
    super.processFormRequest(pageContext, webBean);
    After migrating this code, if i click on "HrNext" button i am getting an error.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation.
    *## Detail 0 ##*
    java.sql.SQLException: Missing IN or OUT parameter at index:: 1
    I found that the query belongs to a VO which is not used anywhere in that page. It is just attached to the corresponding AM.
    My point is if it identifying the "HrNext" event why it should try to execute this VO ? Hope you got some more insight on this issue.
    Out of all these things i am bit worried whether i will be able to get handle for an item which is in a outside region. i.e if i am able to get the handle for item2 in item1_RN then my issue will be resolved. Any idea on that ?
    Thanks,
    Praveen

  • Is it possible to enable DOM events from a dynamically inserted QuickTime?

    QuickTime in IE uses an <object> as a 'behaviour' template in order to enable DOM events. The behaviour <object> is referenced from the QuickTime plugin instance with IE's behavior style: style="behavior: url(#idof_behaviorobject)".
    This works great for all QuickTime <object> instances declared before window.onload, but QuickTime <object> instances inserted into the DOM after that do not pick up the DOM events behaviour.
    I do not know exactly how behaviour styles work and what I've read so far hasn't made me any the wiser. Are behaviours called on elements that reference them, only on page load, and therefore can't be picked up later?
    Are there any known workarounds for enabling DOM events from QuickTime objects inserted after page load?
    Just so you know - I've tried various methods of DOM insertion - innerHTML, createElement, and calling iframes with their own html page containing the necessary objects. None of these work for enabling DOM events on insertion after page load.
    ( P.S. I've cross-posted this question on stackoverflow here:
    http://stackoverflow.com/questions/1336678/is-it-possible-to-enable-dom-events-f rom-a-dynamically-inserted-quicktime-object
    If I get a working answer I'll copy it across. )
    Cheers!
    Stephen.

    I found forwarding the impl_processMouseEvent kind of works ... except when the graphics of the transparent child window floats over the owner window's chrome elements - in particular the title bar, minimise/maximise and resized borders won't accept forwarded mouse events this way.
    Not true mouse transparency.

  • Error launching select event in a region

    Hi,
    We are developing an application using JHeadStart and ADF Faces in JDeveloper 10.1.3.1.
    Due to the size of the page code, we have splitted the page in different regions. The page has a master-detail-subdetail structure, where each subdetail has been put in a separated ADF region.
    When changing the selected row in the master table, the values displayed in the detail table are refreshed. But when we do the same in the detail, no action takes place (the data in the subdetail doesn't change, and the code for the selection event listener is not executed either).
    If I don't use ADF regions, the selection event listener code is executed. What could happen? On the other hand, an action event in the region is executed without problems.
    Some pieces of the code:
    - The include of the detail region in the main page:
    <af:region id="ConcepteEco2" value="#{bindings}" regionType="cat.coec.outis.view.region.ConcepteEco2"/>- The declaration of the detail table in the region:
    <af:table id="ConcepteEco2Table" styleClass="scrollable "
                  value="#{ConcepteEco2CollectionModel}"
                  inlineStyle="height: 120px; width:  1000px ; "                     
                  rangeChangeListener="#{ConcepteEco2CollectionModel.processRangeChange}"
                  selectionState="#{ConcepteEco2CollectionModel.selectedRow}"
                 selectionListener="#{ConcepteEco2CollectionModel.makeCurrent}"
                  disclosureListener="#{ConcepteEco2CollectionModel.hideAllDetails}"           
                  varStatus="status"
                  var="row" rows="#{bindings.ConcepteEco2Table.rangeSize}"
                  first="#{bindings.ConcepteEco2Table.rangeStart}"
                  emptyText="#{bindings.ConcepteEco2Table.viewable ? 'No hi ha dades.' : 'Accés Denegat.'}"
                  binding="#{ConcepteEco2CollectionModel.table}"
                  partialTriggers="TipusCctEcoTable"          >- The declaration of the table selection facet:
    <!-- DEBUG:BEGIN:TABLE_SELECTION : outis/pageComponent/tableSelection.vm, nesting level: 11 -->
      <f:facet name="selection">
            <af:tableSelectOne disabled="#{ConcepteEco2CollectionModel.newRow}"
            autoSubmit="true" id="ConcepteEco2SelectOne"
            onclick="javascript:selectCurrentRow('ConcepteEco2:ConcepteEco2',this);">
    <!-- DEBUG:BEGIN:DUPLICATE_ROW_BUTTON : outis/button/duplicateRowButton.vm, nesting level: 12 -->
    <!-- DEBUG:END:DUPLICATE_ROW_BUTTON : outis/button/duplicateRowButton.vm, nesting level: 12-->
        </af:tableSelectOne>
          </f:facet><!-- DEBUG:END:TABLE_SELECTION : outis/pageComponent/tableSelection.vm, nesting level: 11--> Any help would be appreciated,
    Carles Biosca
    BBR Ingeniería de Servicios SL
    www.bbr.cat

    hi,
    in your datagrid call use the property itemClick.
    e.g <mx:DataGrid id="DG" dataProvider="{some provider"}
    itemClick"myFunction())">
    then in your script you can declare the function myFunction
    to get column values of the selected row, use
    DataGrid.selectedItem.ColumnDatafield
    so for the above datagrid with a column name and
    dataField=fullName i can use
    DG.selectedItem.fullName
    HTH
    regards
    abhi

  • PPR event for messageLovInput

    I have a lov item - which 4 different values. When the value of the lov is changed, it fires a PPR event (LOV automatically fires a predefined
    PPR client action) and the below code is executed but if the user enters the value manually without clicking the LOV to select a value if (pageContext.isLovEvent()) never gets fired.
    I would like to fire the PPR event when the user tabs out from the LOV field without the user implicitly clicking the LOV field to select a value from the list. Is there any way to accomplish this?
    This fires only if you click the LOv item to change the value.
    if (pageContext.isLovEvent()) {
    String lovInputSourceId = pageContext.getLovInputSourceId();
    if ("SalesContact_qry".equals(lovInputSourceId))
    OAMessageLovInputBean mBean=(OAMessageLovInputBean)webBean.findChildRecursive("SalesContact_qry");
    String s = (String)mBean.getValue(pageContext);
    /** get AM details **/
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Boolean executeQuery = BooleanUtils.getBoolean(false);
    String v_SalesContact = pageContext.getParameter("SalesContact_qry");
    Serializable[] parameters = {v_SalesContact,executeQuery };
    Class[] paramTypes = { String.class, Boolean.class };
    am.invokeMethod("HandleSalesContact",parameters, paramTypes);
    }

    I am experiencing a similar problem as the original post with one difference. Validation on the field is triggering a lovValidation PPR event when the user tabs off the field. I can then catch that event in my processFormRequest and respond accordingly.
    However, when the user doesn't tab off but instead clicks on a submit button or another field's LOV flashlight icon, the processFormRequest never receives the LOV PPR event. It instead receives the event that is triggered from the submit button or the other field's LOV flashlight icon.
    Has anyone else run into this issue? I would imagine the MyOAF will run into this problem as well.

  • How do I pass an event up the component hierarchy?

    I have a child component which has a mouse listener and a parent component with a mouse listener. However the child component consumes all the mouse events so the parent doesn't get them.
    Is there a way for a child component to receive mouse events, then decided to pass them back up the component hierarchy so the parent can still receive them too?
    I've spent the last two hours on Google and can't seem to find anything relevant.
    Cheers, Eric

    Unfortunately, you cannot
    override this method since it ispackage-private.
    That was wrong of mine. Package-private members are
    visible to subclasses too (the package access is a
    complete superset of protected access). So you CAN
    override dispatchEventImpl and do your stuff there.
    When I try that the compiler gives me the following warning
    The method SheetElementPlacementComponent.dispatchEventImpl(AWTEvent) does not override the inherited method from Container since it is private to a different package.
    It lets me define the method, but does not let me override it.
    I just wonder why they made dispatchEvent() final,
    when it just calls dispatchEventImpl(), and it is
    not final...
    Another useful method is Component.enableEvents()
    and disableEvents() (which are both protected). You
    can use them to modify the so called event mask of a
    component, which is used to signify which events a
    Component is interested in. Disabled events (= not
    on the event mask) are not delivered to the
    component and the dispatcher skips it, looking for
    parent components which have enabled the event. For
    example, if you have a JButton in a scroll pane and
    you scroll the mouse wheel on the button, the event
    is dispatched to the scroll pane, even though it
    occurs over the surface of the button. That's
    because a button is not interested in mouse wheel
    events.
    You can use that hack the following way: In the
    mouse listener for your child component, after you
    have done your work, disable mouse events for the
    component and then post the event again (invoke
    dispatchEvent(theEvent)). That way, the event should
    be delivered to the closest parent that is
    interested in mouse events. This is done
    synchronously, so after all listeners for the parent
    components have finished, the dispatchEvent() method
    returns in your listener for the child component.
    Then you re-enable mouse events on the child
    component in order to receive the next mouse event.
    I don't know if this works or if it has any side
    effects, but it's worth a try...I can't call dispatchEvent() because it creates an infinite loop resulting in a stack overflow. It tried calling((JComponent) getParent()).dispatchEvent(e); but this does not help either, the parent never gets the event.
    Hope this helps you more :).
    Greets,
    MikeSorry, I still can't find a way around it other than to redesign my UI.
    FYI I created a bug report and Sun have assigned it Bug Id: 6571453. Everyone please vote on this if you think it's a cool feature request.
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6571453
    Cheers, Eric

  • What organizer app has a really good WEEK VIEW like my Palm Pilot - it's a grid with days across the top.  Below each day- the day is divided into hourly grids.  When events are schdeuled across  week - you get a mosaic of time blocks.  Analogue - great

    What organizer app has a really good WEEK VIEW like my Palm Pilot - it's a grid with days across the top.  Below each day- the day
    is divided into hourly grids.  When events are schdeuled across  week - you get a mosaic of time blocks.  Analogue view is  great way
    to comprehend the time obligations as a molar pattern.
    thx,
    Fritz

    I use Week Cal on the iPod.  I think it was only $1.99.  It is a lot better and does a lot more than the one that came with the Palm Pilot.
    As you know, unlike the Palm Pilot, the iPod does not come with a desktop application that you can sync your iPod calendar to.  Since I don't use Outlook, I have to use a Cloud based calendar to sync with my PC.  I use Hotmail's calendar for that.  (If your computer is a MAC, you can use iCal)

  • How to call  a javascript method after the PPR event has finished  ?

    Hi!
    How can we make a javascript method get called after the processing of ADF PPR event?
    My specific use case is,
    I want to call a javascript function after the data in the table is loaded...
    In 10g, that is not a problem, as the data used to get loaded directly during onLoad, and so i would call my js function on load;
    but in 11g , the table data is being loaded through PPR which is initiated onload, and so i needed to call my function after the PPR Response processing has been done; for which I need the name of the event triggered at that instance.
    Is it possible to do this?
    Regards,
    Samba

    Hey, I got it.
    I handled the ADF Controller's PREPARE_RENDER_ID phase of the lifecycle, and then called the
    script to get Executed.
    The code :
        public void afterPhase(PagePhaseEvent pagePhaseEvent) {
            FacesPageLifecycleContext ctx = (FacesPageLifecycleContext)pagePhaseEvent.getLifecycleContext();
                 if (pagePhaseEvent.getPhaseId() == Lifecycle.PREPARE_RENDER_ID) {
                    if(AdfFacesContext.getCurrentInstance().isPostback() )
                        afterRender();
        }is written in lifecycle listener , and my backing bean extended this listener ,
    and in the afterRender() method I did this :
       public void  afterRender(){
                System.out.println("AFTER RENDER CALLED");
               FacesContext context = FacesContext.getCurrentInstance();
               ExtendedRenderKitService service = (ExtendedRenderKitService)Service.getRenderKitService(context, ExtendedRenderKitService.class);
               service.addScript(context, "translate();");
           }That's it.
    It did work, magnificently.
    Thanks for the idea.
    Regards,
    Samba

  • Issue in PPR event calling as it submits the page validation

    Hi,
    i need to display the field based on the check box value.
    I used PPR event on clicking chekbox bean. event: update
    i set SPEL to the display fields.
    but when ever i select the value in checkbox , the page is submitting and pop up (checking all mandatory fields or not)
    It shows form validation failiures:
    Enter the mandatory fields/........
    how to handle this.
    please help in this .
    Thank you

    Please make sure, when you trigger your PPR event, you have some values given to the field which has REQUIRED = YES.
    Setting REQUIRED=YES makes that field a mandatory field, and you cannot submit the form to the server without giving value to that field.
    Thanks
    Saurabh

  • Cursor focus during a PPR event

    Hi,
    I have two messageTextInput columns (lets say text1 and text2) inside a table region. When a user enters a value in text1 and do a tab out, I fire a PPR event and set some attributes in my VO. The problem is: after it is done, the cursor focus does not move to text2, even though the user did a tab out after entering a value in text1. Cursor focus returns again to text1.
    Also, I do not want to do a page forward, so that processRequest is called again. That would be a costly operation for us. Please let me know if there is a way to regain cursor focus to the right textInput bean.
    Note: This is IE 7.
    Thanks. Much appreciate your inputs.
    Raja

    Raja see this thread, i have replied this some time back:
    Re: How to set focus on a textinput/poplist using PPR
    --Mukul                                                                                                                                                                                                                                                                                                       

  • PPR event hides button click :(

    Hi,
    I have a problem with the PPR event.
    I have a PPR on a field. If I change this field without tabbing out from it, and I press a button, the code in the button is not performed. I read the OAF DEV Guide, and I put in the processRequest the code:
    << OAWebBean body = pageContext.getRootWebBean();
    if (body instanceof OABodyBean)
    body.setAttributeValue(OAWebBeanConstants.FIRST_CLICK_PASSED_ATTR, Boolean.TRUE);
    >>
    but it does not work.
    Could you kindly help me?
    Thanks a lot,
    Rosanna.

    Sorry for the delay Rosanna.
    How are you capturing the event's such as when save button is pressed/ppr action fired. I assume you differentiate the save button's event by setting an attribute name something similar to "saveEvent" and the field's ppr event attribute as "varianceEvent" or something. Then on the controller code you could do pageContext.getParameter("event") and compare it with saveEvent and varianceEvent to differentiate what hte user has clicked on.
    You can also club the processing that you do for PPR enabled fields with the save part of the code. Then remove the PPR on the fields. You will have the fireaction/firepartialaction only on the save button in the page. Could you check if this approach works for you.
    Thank you,
    Arun

  • Access Items in jsff from the jspx that contains the region

    I have a jspx that has a region with several pages (train).
    I have the Save and Cancel (commit and rollback), etc... in the jspx (PanelHeader toolbar).
    I have another commandbutton (cb5) that creates a duplicate record in the same toolbar - (singe record on the page).
    I need to toggle a commandbutton (cb1) on the jsff from disable to enables when I create the new record.
    The question is how do I get a reference to the commandButton(cb1) on the jsff from the jspx where cb5 is defined?
    I understand the use of the iterators and actions - but I cannot seem to find anything on this?

    Shay, thanks - close but not quite what I was looking for.
    There is no navigation - the creation of the duplicate row is actually programatic in a backing bean (there is some other house keeping as well).
    I want to use something like an action event (actually it is an action event on the jspx button) - during the processing I want to reference cb1 in the jsff (r1) and set it to enabled.
    I was looking at the :r1 syntax (:r1:cb1.setDisabled(false)) but this does not do as I have no reference to the component. (I tried this - and it disabled cb1 in the jspx rather than the region)
    I would assume I would need to do something like :r1.getUIClient("cb1").setDisable(false)
    As there is never a need to disable it again (if there is - it would be when the region button (cb1) itself was pressed - this is simple).
    Hope this clears it up a bit.
    Unless you are referring to a Context event - I have never used this functionality - but from what I have read about it - it is more for databound components.
    Unless the parameter is actually a property name and the value (payload) would be the new value for the property.
    public String cb5_action() {
    r1:cb1.setDisabled(true); -- this set cb1 in the jspx
    ...

  • PPR bug when multiple regions share same iterator ?

    Hi,
    I have a page with a table binded to iteractor X.
    This page has a region binded to a bounded taskflow Y.
    Taskflow Y has a fragmented view with a form Z binded to iterator X.
    Form Z has a create button which fires the CreateInsert operation on the iterator X and has immediate = false because I want to execute validations on the current record
    Taskflow Y has the <data-control-scope> set to shared.
    On both views pagedefs the iterator X has the property ChangeEventPolicy="ppr"
    User case 1: If table is not empty (iteractor X has a current row value), when I press the create button, the form Z refreshs with a new record and the table is refreshed with an empty record as well.
    Use case 2: However, if the table is empty (iteractor X has no current row value), when I press the create button, the form Z refreshs with a new record and the table is refreshed with an empty record as well but, somehow, the page fires another page refresh which causes the form Z to process validations and show errors on mandatory fields.
    Notes:
    - I cannot use PartialTriggers because the fragment region does have references to table components on the main page
    - I could use contextual events however PPR on iterator X and sharing data controls between the region taskflow and calling page should be enough because use case 1 works.
    Any ideias ?
    Thank you in advance.
    Edited by: Paulo Moniz on 18/Dez/2011 12:10

    Thanks Frank
    Yes, that was one of the first things I did but somehow the region does not know its contents were refreshed in order to fire partial triggers. Here is the source code:
    Of the table:
    <af:table value="#{bindings.EbaErpSuppliersInvoices.collectionModel}" var="row"
    rows="#{bindings.EbaErpSuppliersInvoices.rangeSize}"
    emptyText="#{bindings.EbaErpSuppliersInvoices.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.EbaErpSuppliersInvoices.rangeSize}"
    rowBandingInterval="0"
    filterModel="#{bindings.EbaErpSuppliersInvoicesQuery.queryDescriptor}"
    queryListener="#{bindings.EbaErpSuppliersInvoicesQuery.processQuery}"
    filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.EbaErpSuppliersInvoices.collectionModel.selectedRow}"
    selectionListener="#{bindings.EbaErpSuppliersInvoices.collectionModel.makeCurrent}"
    rowSelection="single" id="t1"
    binding="#{backingBeanScope.backing_Views_Erp_SuppliersInvoicesList.t1}" displayRow="selected">
    </af:table>
    Of the region:
    <af:region value="#{bindings.supplierinvoiceformbtf1.regionModel}" id="r1" binding="#{backingBeanScope.backing_Views_Erp_SuppliersInvoicesList.r1}" partialTriggers="::pc1:t1"/>
    Of the btf:
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
    <task-flow-definition id="supplier-invoice-form-btf">
    <default-activity>SupplierInvoiceRecord</default-activity>
    <data-control-scope>
    <shared/>
    </data-control-scope>
    <managed-bean id="__8">
    <managed-bean-name>mbSupplierInvoiceRecord</managed-bean-name>
    <managed-bean-class>mbSupplierInvoiceRecord</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <view id="SupplierInvoiceRecord">
    <page>/Views/Erp/SupplierInvoiceRecord.jsff</page>
    </view>
    <use-page-fragments/>
    </task-flow-definition>
    </adfc-config>
    Edited by: Paulo Moniz on 19/Dez/2011 9:18
    Edited by: Paulo Moniz on 19/Dez/2011 9:19

Maybe you are looking for

  • I've run out of space on my computer's hard drive.  How can I clear up?

    I need to remove a few gig of data on my laptop. But I don't want anything to be deleted from my iPOD. I called the local Apple store, where the CSR said, "if you delete a tv show that you bought from iTunes you will be able to download it again at a

  • MacBook Pro update 10.7.4 Lion slow

    Hi ASC's, since I've updated my MacBook Pro from 10.7.3 to 10.7.4, it's been feeling a lot slower than it used to be! Is there a way to go back to 10.7.3 and then when Mountain Lion is relased I'll upgrade. Thomas

  • Can I use Imovie 6 to combine edit songs and combine them?

    I would like to import some songs, cut some of them in half, and make them into one big song.  Can I use iMove or is there a better free program for that?

  • Crash when saving spreadsheets in PXL

    StarOffice 8 PP 6 Linux Debian Etch and Windows XP When trying to save spreadsheets in PXL-Format for PDAs SO under XP crashes, under Linux error is reported. Is there a work around to get data on PDAs with Microsoft Mobile 5 and Pocket Excel without

  • Pb deploying applet using sqlj

    Hi, I'm trying to deploy an applet I have just created. This applet connects to an Oracle 8.1.7 database using this kind of command: Oracle.connect("jdbc:oracle:thin:@ ... ); Then the applet uses SQLJ class to deal with the datas. And after deploying