Updating a PPR region

I have a report with a PPR region in it. What I'd like to do is to trigger the list to refresh via PPR when I change the search criteria.
I've searched the forum, and I assume I need to call html_PPR_Report_Page in some way, but I can't find details on what I'd put in as parameters.
(Basically, I want to have an "onChange" event on my "pick a customer" dropdown list, which triggers a PPR refresh on the report region - just like a submit, but without refreshing the full page.)
Can anyone help?
Thanks,
Paul.

Ah, yes. I'd looked at Carl's examples, but hadn't noticed this one.
Thanks for the pointer.
Paul.

Similar Messages

  • KDL60W630b - software update check and region check - failing everytime and tv going into initial setup mode

    KDL60W630b - software update check and region check - failing everytime and tv going into initial setup mode I got this today today and when i tried to complete initial set-up. it never completed. TV is going in cycles with initial set-up everytime it connects to my internet and says connected successfully. after it tries to update software and tv restartssame initial set-up screen again i tried keypad button on remote and it took me to tv. i was able to see tv that way but whenever i start tv, it goes back into initial set-up again. any solution for this?

    Hi GC_Sugarland, 
    Thank you for considering Sony Community! 
    I'm sorry to hear that this happens to your TV after the update. Pleas reset your the TV to the original setting. click on this link to guide you on how to reset it.
    I hope this helps. Please keep me posted. 
    Regards,
    Jen
    If my post answers your question, please mark it as "Accept as Solution"

  • Confirmation in DA before refresh of a PPR region

    Apex 4.1.1.00.23
    I am working with an app that I am upgrading from v3.2 to 4.1.1.00.23 and I have a page/region that had some javascript in it that I am trying to move away from manual JS and into dynamic actions.
    The region in question is a tabular form with PPR turned on and the problem I'm having is that I wish to check if any of the checkboxes are checked and if so, display a confirmation message to the user before the region paginates. I want that if the user does NOT press OK to the confirmation that the pagination is cancelled.
    So I have a DA as:
    1. Before refresh of my region
    2. Conditional based on javascript expression (I have my own JS on the region that checks if any checkboxes are checked and it does work for sure) that checks if at least one checkbox is checked.
    <script language="javascript" type="text/javascript">
    function verifyCheckboxes()
      var checkboxes=document.getElementsByName('f01');
      if (checkboxes==null)
        return(false);
      else
        var vBoxChecked=false;
        for (var i=0;i<checkboxes.length;i++)
          if(checkboxes.checked)
    vBoxChecked=true;
    break;
    return(vBoxChecked);
    </script>
    3. If any are checked, prompt the user with the confirmation "are you sure you want to leave this page?". This action is defined as type "confirm".
    4. If the user presses cancel, the page should not continue.
    Steps 1-3 work fine. Step 4 doesn't happen...no matter what the user chooses (OK or cancel), the region paginates.
    I have worked with confirmations before on "before page submit" and it works like this...cancellilng in the confirmation box cancells the submission. I figured this would work similarly with "before refresh" of a region, but it does not.
    Is this an Apex bug that the confirmation OK/Cancel always allows the region to refresh (different behavior than with a confirmation used before page submit)?
    Ideas on another soution for what I'm trying to do?

    Well I guess the situation is that "before refresh" fires after the signal to refresh the region has been heard by the server.
    In other words, when I paginate through the region, I click the link to paginate, it wants to refresh but encounters my DA that fires before the region actually refreshes. This is fine. My code fires correctly and prompts "are you really sure...?". Problem is, the answer from the confirmation is ignored (either OK or cancel permits the pagination to continue).
    When I've used a confirmation with a "before page submit" in this same manner, answering "cancel" to the confirmation would also abort the submit process.
    So I want the same sort of "cancel" action to abort the region refresh in this case, but seems like it's ignored.

  • Updating 2 distinct regions with "for i in 1..htmldb_application.g_f01.coun

    I have 2 different queried regions (PL/SQL Function returning Query). I want to use one SAVE button to save all values in both regions. One is a student's SAT scores, the other is their ACT scores. They reference 2 distinct tables, sat and act.
    The problem seems to be that the regions share the f01, etc. identifiers. I tried to get around this by making f01 indicate which test it is, ie. which table to update.
    I'm using the "for i in 1..htmldb_application.g_f01.count loop" construct. It works fine when only 1 of the regions has records. But when they both have rows i get this error: ORA-01403: no data found... apparently not retrieving the records? Here is my process code, which is executed when the SAVE button is pressed:
    -- There are 2 regions, SAT and ACT. Since they share form identifiers
    -- (f02, etc.) the Test Type was needed to distinguish which table to insert
    -- the values into, sat or act.
    -- SAT
    -- f01 = Test Type ( = SAT )
    -- f02 = permnum
    -- f03 = SAT admindate
    -- f04 = SAT testsite
    -- f05 = SAT math
    -- f06 = SAT verbal
    -- f07 = SAT composite
    -- ACT
    -- f01 = Test Type ( = ACT )
    -- f02 = ACT permnum
    -- f03 = ACT admindate
    -- f04 = ACT testsite
    -- f05 = ACT math
    -- f06 = ACT english
    -- f07 = ACT reading
    -- f08 = ACT science
    -- f09 = ACT composite
    begin
    for i in 1..htmldb_application.g_f01.count
    loop
    if htmldb_application.g_f01(i) = 'SAT' then
    update sat
    set testsite = htmldb_application.g_f04(i),
    math = replace(htmldb_application.g_f05(i), '', NULL),
    verbal = replace(htmldb_application.g_f06(i), '', NULL),
    composite = replace(htmldb_application.g_f07(i), '', NULL)
    where permnum = :GLOBAL_PERMNUM
    and to_char(admindate, 'DD-MON-YYYY') = htmldb_application.g_f03(i);
    end if;
    if htmldb_application.g_f01(i) = 'ACT' then
    update act
    set testsite = htmldb_application.g_f04(i),
    math = replace(htmldb_application.g_f05(i), '', NULL),
    english = replace(htmldb_application.g_f06(i), '', NULL),
    reading = replace(htmldb_application.g_f07(i), '', NULL),
    science = replace(htmldb_application.g_f08(i), '', NULL),
    composite = replace(htmldb_application.g_f09(i), '', NULL)
    where permnum = :GLOBAL_PERMNUM
    and to_char(admindate, 'DD-MON-YYYY') = htmldb_application.g_f03(i);
    end if;
    end loop;
    end;

    Ok i broke them out into 2 separate processes, with a Save button in each region "SAVE_SAT" and "SAVE_ACT". Like this:
    // | PROCESS: Save Changes to SATs |
    -- There are 2 regions, SAT and ACT. Since they share form identifiers
    -- (f02, etc.) the Test Type was needed to distinguish which table to insert
    -- the values into, sat or act.
    -- SAT
    -- f01 = Test Type ( = SAT )
    -- f02 = permnum
    -- f03 = SAT admindate
    -- f04 = SAT testsite
    -- f05 = SAT math
    -- f06 = SAT verbal
    -- f07 = SAT composite
    begin
    for i in 1..htmldb_application.g_f01.count
    loop
    if htmldb_application.g_f01(i) = 'SAT' then
    update sat
    set testsite = htmldb_application.g_f04(i),
    math = replace(htmldb_application.g_f05(i), '', NULL),
    verbal = replace(htmldb_application.g_f06(i), '', NULL),
    composite = replace(htmldb_application.g_f07(i), '', NULL)
    where permnum = :GLOBAL_PERMNUM
    and to_char(admindate, 'DD-MON-YYYY') = htmldb_application.g_f03(i);
    end if;
    end loop;
    end;
    // | PROCESS: Save Changes to ACTs |
    -- ACT
    -- f01 = Test Type ( = ACT )
    -- f02 = ACT permnum
    -- f03 = ACT admindate
    -- f04 = ACT testsite
    -- f05 = ACT math
    -- f06 = ACT english
    -- f07 = ACT reading
    -- f08 = ACT science
    -- f09 = ACT composite
    begin
    for i in 1..htmldb_application.g_f01.count
    loop
    if htmldb_application.g_f01(i) = 'ACT' then
    update act
    set testsite = htmldb_application.g_f04(i),
    math = replace(htmldb_application.g_f05(i), '', NULL),
    english = replace(htmldb_application.g_f06(i), '', NULL),
    reading = replace(htmldb_application.g_f07(i), '', NULL),
    science = replace(htmldb_application.g_f08(i), '', NULL),
    composite = replace(htmldb_application.g_f09(i), '', NULL)
    where permnum = :GLOBAL_PERMNUM
    and to_char(admindate, 'DD-MON-YYYY') = htmldb_application.g_f03(i);
    end if;
    end loop;
    end;
    Now, i can save SAT information (for that region), but i get this error when i try to save changes to the ACT region:
    ORA-01403: no data found
    ?

  • How to update the spry region?

    there is a spry region that bound to a dateset for to show
    the dataset's records.
    when i reload the ds,how should i refresh the spry region?

    Hi lugreen,
    If a region is bound to a data set, it should *automatically*
    update whenever you reload its data.
    As Diana points out, you should can simply call:
    ds.loadData();
    If you want the data set to reload the same URL, or if you
    want to change the URL, do this:
    ds.setURL(myNewURL);
    ds.loadData();
    --== Kin ==--

  • Updating country and regional maps with Nokia Suit...

    Hi Folks
    I am an E72 owner and a frequent user of Nokia Maps. Hence I use Nokia Suite to keep the map data up to date, time to time.
    I normally download all countries by right-clicking the ALL item and choosing 'download all'. I thought I could download all available maps this way. But when all downloads are finished, I still can see some regional maps are NOT downloaded as the 'download' button is available for the regions.
    Initially, I thought the regional maps of a country were NOT necessary if their country map has been downloaded simply because the country map should cover its all regions (comparing the map size of a country and its regions, and the regional maps were not automatically downloaded by default)
    But it seems not that ture, at least for the latest map data v0.1.29.100.
    As shown in the attached screenshot, for some countries, e.g.China, France, India, Italy, Spain and USA, some regional maps were automatically downloaded though most regional maps remain undownloaded (the 'download' button is available).
    Why? Only those regional maps have been updated?
    Do I really need to download ALL regional maps to keep all data up to date?
    FYI
    Model: E72-1
    Type: RM-530
    Software Version: 091.004
    Software Version Date: 02-Jun-2012
    Custom Version: 091.004.C00.01
    Nokia Maps v3.04 10wk32 b04 MW OpenGL L MN
    Map version 0.1.29.100
    Nokia Suite 3.7.22
    Any comments please?
    Regards,
    bbao
    bbao
    * If this post helped you, please click the white Kudo star.
    * If this post has solved your issue, please click Accept as Solution.
    Attachments:
    Scr000078.jpg ‏44 KB
    Nokia_Suite.Maps_1.jpg ‏150 KB
    Nokia_Suite.Maps_2.jpg ‏156 KB

    bbao wrote:
    Thanks so much for effort farby and scoobyman.
    It is interesting that the World Maps of scoobyman's E52 does not show any regional maps of China. The regional map of Heilongjiang will not appear in scoobyman's Nokia Suite, as there is no triangle symbol before 'China' indicating no regional maps for China at all. That definitely looks like the same thing that I saw on my E72 before updating to 00.01.29.100 map data.
    First, scoobyman 's post has created confusion as he has not checked the same way as OP has done. He has checked selecting Maps and Voice Guidance on Phone at the bottom and not by selecting All under Maps at the top. If you see both attachments posted by me you can see the difference how they are displayed. 
    bbao wrote:
    Yes, farby's India map with Nokia 5800xm seems having totally different map data. e.g. India map: 532 MB vs 372 MB, and Delhi map: 51 MB vs 33.7 MB.
    BTW, it notice that you both are using a new version of Nokia Suite 3.8.13 Beta. Not sure if it could make any difference.
    Whether Maps version is same or different is not the point. Even if the Maps version is different in both the cases it is being displayed the SAME way as OP ..only difference being the sizes of the data files ...

  • ICloud update messes with Regional Settings on non-English Windows 7

    I have Windows 7 in French.
    Since the recent update of iCloud (and also iTunes and Quicktime), my other software (Sage 50 Accounting) is dropping the digits entered after the decimal point.
    Strangely, while I have iCloud installed, when I open Sage 50 Accounting first and then select my data file to open, the problem occurs, yet if instead I open the data file directly and let Windows open the associated software (Sage 50 Accounting), the problem doesn't occur.
    If I uninstall iCloud, the problem is resolved, however, I'd like to continue using iCloud if possible.
    Any ideas what's going on here?

    It appears that you did not follow the step in Bootcamp Assistant where you were to download the Windows Support software. You then had to install the Support software from within Windows. Did you do that step? The display drivers are part of the Support software.

  • Table Output text tool tip does not update on PPR

    We have a adf table with a Lov and a out put text .
    On changing the LOV, the out put text also change . but, on we mouse over on the tool tip does not changed . any suggestions ?
    below code :
    <af:outputText value="#{row.PlanTitle}" id="ot4" partialTriggers="soc3 si2"/>
    However , if we refresh the table or reload after save , the toop tip also get change . but we need to update the tool tip on change the lov . any suggestion ?
    Jdev : 11.1.1.3.0
    browser : all ,

    Hi,
    taking it from:
    +"However , if we refresh the table or reload after save , the toop tip also get change . but we need to update the tool tip on change the lov . any suggestion ? "+
    The autput text component is part of a table ? If so then the table needs to be refreshed as the values in there are stamped. If I am wrong with my table assumption and the output text is part of a form, try setting clientComponent="true" for the output text field
    Frank

  • Problems - Update Record/Conditional regions

    Hi,
    I am building an admin interface in ASP VBScript, and have
    built an 'edit' page which has a load of text fields, with initial
    values bound to the data in a database, and which are hidden or
    shown depending on whether there is data in those fields in the
    database. Then there is the Update Record behaviour to update the
    info in the database.
    However, when I go to the edit page on the web, and click the
    udate button, it returns an error - i.e.
    'there was a problem processing the requested URL'.
    Is this because there are fields on the page which, since
    they have not been displayed, are not being included in the Update
    Record?
    How can I get the update record to work?
    Please help!
    thanks
    Ian
    Using DW8 on Mac
    Server: Win2000

    Ian
    If you are simply hiding fields by setting their type to
    hidden then this
    should not cause an update script to fail. However if you are
    simply not
    writing them to page then this will cause an issue.
    I suggest that you turn off friendly http errors (in tools:
    Internet Options
    : Advanced) and then post exactly what the error is.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "iandobie" <[email protected]> wrote in
    message
    news:e6ji55$i8t$[email protected]..
    > Hi,
    > I am building an admin interface and have built an
    'edit' page which has a
    > load of text fields, with initial values bound to the
    data in a database,
    > and
    > which are hidden or shown depending on whether there is
    data in those
    > fields in
    > the database. Then there is the Update Record behaviour
    to update the info
    > in
    > the database.
    > However, when I go to the edit page on the web, and
    click the udate
    > button, it
    > returns an error - i.e.
    > 'there was a problem processing the requested URL'.
    > Is this because there are fields on the page which,
    since they have not
    > been
    > displayed, are not being included in the Update Record?
    > How can I get the update record to work?
    > Please help!
    > thanks
    > Ian
    >
    > Using DW8 on Mac
    > Server: Win2000
    >

  • Turn Off Updates to a Spry Region?

    I have a script that manipulates the contents of a spry
    region by removing selected rows, then re-applying a pre-existing
    filter. I'd like to temporarily suspend any updates to the region
    so that the contents remain static until I've finished all my
    manipulations, then I'd want to update the region to show the final
    result of my processing. Is there a way to turn off and on updates
    to a region?

    cmanmcl,
    This can be done by signing out of Messages in Settings -> Messages, then signing in with the desired Apple ID.
    iOS 6 and later: Go to Settings > Messages, then tap Send & Receive.
    If you signed out before changing your Apple ID:
    iPhone, iPod touch: Tap "Use your Apple ID for iMessage" and enter your current Apple ID.
    iPad: Enter your current Apple ID.
    If you're still signed in with your previous Apple ID, tap your previous Apple ID, then tap Sign Out.
    iPhone, iPod touch: Tap "Use your Apple ID for iMessage" and enter your current Apple ID.
    iPad: Enter your current Apple ID.
    Apple ID: What to do after you change your Apple ID
    http://support.apple.com/en-us/HT5796
    Cheers,
    Allen

  • Auto Updating Report

    Hello.
    I am using Apex 2.2.1 and am trying to get Carl Backstrom's wonderful Auto Updating Report to work.
    In the Region Template he is using REGION_STATIC_ID. What is that? How do I supply this value? In Apex 3.x there is a field in which to enter a "Report Id" when creating a report. But in 2.x, I see no such field anywhere.
    I went ahead and tried to create a report using his example. I made a copy of the Standard PPR template for Theme 10 (Sand). I then copied his code into my PPR copy. When I run my report, there is no refresh and also I am getting the text "#TOP_PAGINATION#" at the top of the report.
    How does one get an Auto Updating report to work in Apex 2.2.1?
    Thank you for any help.
    Elie

    Hi Carl.
    Thanks very much for helping me out.
    I've posted my Apex 2.2.1 app onto my workspace on OTN. Of course, this workspace is a 3.0.1 workspace, and so, I see the REGION_ID field in the report region. This field is missing in my 2.2.1 workspace.
    Here is the link and credential info you'll need to see my report page.
    workspace = play30
    username = [email protected]
    password = flowers
    The relavent page is page 3 - "Errlog Report".
    With respect to the way you're auto updating your report, I have a couple questions.
    1) The #REGION_STATIC_ID# and #REGION_ID# values -- are these the same as the region_id obtained via the query:
    SELECT region_id
    FROM apex_application_page_regions
    WHERE application_id = :app_id
    AND page_id = :app_page_id
    AND region_name = 'Errlog Report';
    2) You're using AJAX to auto update a report region, and so, I was expecting to see some reference to the javascript function htmldb_get(). And yet I see you are not calling this function anywhere in the javascript you're using. Perhaps the functions you are using are calling htmldb_get() behind the scenes, I don't know.
    We've not upgraded to 3.0.1 because we have so many Apex (2.x) apps being used in production (and this number is increasing as more users see what we've done) that we need to find a suitable time to upgrade without affecting users too much. We read in the Apex install notes that we need to make our database instance unavailable during the upgrade (an hour or so), and so, finding this hour of space is the main hurdle blocking our upgrade to 3.0.1.
    Thanks, again, for any help/advice. It is much appreciated.
    Elie

  • How to delete the region code for country in T005U

    Hello,
    The region code for XX country are changed, So I have deleted all entries for that country in transaction code "OVK2" and updated the new region code which should be updated in Table T005S and T005U.
    But in table T005U there are few region code for language other then EN. Now I need to delete the entries T005U for other language.
    Now region code in OVK2 = Table T005S, but not equal to T005U
    How language can be selected to delete the region code (TABLE T005U), please advise.
    Thanks in advance.
    Praveen

    Hi Praveen,
    In order to delete the entries from the language table T005U, you will have to maintain in T005S.
    It means that, suppose in table T005U, you have a region appearing in two languages danish and german and the corresponding entry does not exist in T005S, then follow the steps below.
    1. Maintain Region XX in EN in T005S.
    2. Log on in language Danish, and in table T005U, only delete the text and log off.
    3. Log on in Language German, and in table T005U, delete the text only and log off.
    4. Now your T005U table is clear, log on in language EN and delete from table T005S.
    5. Check both tables T005S and T005U for the region XX. they both should be empty.
    Regards,
    SAPFICO

  • A New BlackBerry 10.1 Update Available Starting Today

    From the Inside BlackBerry Blog today:
    For those of you enjoying your shiny new BlackBerry 10 smartphone, we’re delivering another update to the BlackBerry 10 version 10.1 software that will be steadily rolling out on carriers around the globe. To bring software updates to you, we work closely with our carrier partners through a certification process.
    Before we get into the features of the update we want to let you know up front when you can start to expect the update in your region. Note that carriers in some regions may take longer than others based on their individual processes. As you may know, we announced a BlackBerry 10.1 update at BlackBerry Live in May and some of you may have already downloaded that update. To be sure you’re getting all the goodness we’ve built-in since then, look for OS version number of 10.1.0.4181 / 10.1.0.4537 or higher to confirm you have the latest update. You can find the OS version number you are currently running by going to the System Setting, selecting About, then selecting OS from the drop down Category menu.
    Asia Pacific: Starting July 29th
    Canada: Starting July 29th
    EMEA: Starting July 29th
    Latin America: Starting Mid-August*
    U.S.: Starting End of Summer
    Why You’ll Want to Update BlackBerry 10
    If you can't wait for your carrier to roll it out...
    here's a link to the manual upgrade process.
    http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/Upgrading-OS10-devices-using...
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

    Hi, I've done this update and now this phone won't turn on. It is stuck on the blue BB logo after the restart. Any thoughts?

  • Apply request values from a region on an event from another region

    Hi,
    I am quite new to ADF and that's my first question/post here (and as a matter of fact pretty much anywhere),
    so i hope i manage to make my problem clear enough.
    First i am using ADF Faces + ADF BC using JDeveloper 11.1.2.1.0 with the integrated WebLogic Server
    Now the what is the case:
    I have a page with two af:regions in it.
    The first one is basically a single selection table.
    The second one is a to put is simply an edit form for the selected row of the first table.
    I don't use the contextual events mechanism ( i have spent some week or more playing around with it awhile ago, but from that exprience i don't recollect any particular thing that might solve my problem) so what i do is pass as parameter to the first(table) region a "delegate" that would listen/handle selection events and in the backing bean of the table i have the selection listener that fires the events/calls the delegate's handleEvent(String eventType,Object data) method so that the main page knows and refreshes the second/edit form region
    with the newly selected ID of the entity.
    My problem is that if i had entered data in the form in the second region it is lost after selection
    has been made in the first one.
    I see (in the http request content of the selection event, or in the requestMap), that all that was in the html page, including the second region is transmitted to the server - so are the newly entered values. However the jsf components that are a part of the second region are not applied with their new values, nor their model is updated in the next jsf phase.
    Now I suspect that has something to do with the (Adf)RichRegion being a EventRoot or something.
    I tried putting partialTrigger to the second region (though i currently and for various reasons call the AdfFacesContext.addPartialTarget programmatically at about one million places in the java code after the selection event)
    I even tried hacking the javascript AdfRichRegion object, so that it would always return false if asked isEventRoot. :) that's how desperate i was
    The only solution i have so far is:
    First to make clear. When i say refreshing the second region i don't mean calling RichRegion.refresh(), but rather RichRegion.queueActionEventInRegion(....., "refresh",PhaseId.ANY_PHASE) which in the second's region taskflow is just a method call, that sets the right current row of the iterator and then loops back to the same (one and only view in this taskflow - the edit form) and adds some parialTargets to the AdfFacesContext, so we see the new data
    then in that methodCall (which i think happens in the INVOKE_APPLICATION phase) i add those few lines to make sure the values are applied to the jsf components sub-tree of interest:
    RichPanelGroupLayout fl = getFl();//that's a binding of the UIComponent, that holds all the inputTexts i care about
    fl.processDecodes(FacesContext.getCurrentInstance());
    fl.processValidators(FacesContext.getCurrentInstance());
    And when i say make sure that the values are applied... i actually mean - get on my knees and pray because the whole thing looks too hacky already, but so far it works.
    But now i have to make sure the validation has been ok (otherwise i get a funny effect of seeing the red popups at the invalid text inputs just for a second and then my region is refreshed to the new entity or i get an JBO exception depending of whether i call the next lines that follow without the if(..){processUpdates}
    How do i check this:
    System.out.println(FacesContext.getCurrentInstance().isValidationFailed());
    //The above line would print false nomatter what happenned so i decided to use this "something":
    boolean validationFailed = FacesContext.getCurrentInstance().getMessageList().size()>0;
    if(validationFailed){
    //dont update the iterator's current row and return to the edit form page
    return "fail";
    }else{                    
    fl.processUpdates(FacesContext.getCurrentInstance());
    //update the current row and return to the edit form page
    It took me days to come up with this...i would call it hack...And a day or two more to adapt the rest of the page's logic with the whole design changes i had to make but i still believe there must be some better solution that i am missing because for a number of reasons i don't feel right eith this one, which, while implemented and working (i hope) makes the whole real case a lot more complex than it used to be (and still feels like a hack),
    just for the simple reason that I want to get some updated values back in the model.
    Just as an example of a design change i had to make i give you the afformentioned methodCall i had to add, because the processUpdate would not work if not called with the right adf bindings context... first i tried calling them from a custom PhaseListener i have but at that moment nobody knows what #{bindings.MyEntityId.inputValue} is.
    Thanks and Greeting
    trout
    Edited by: trout1234 on Aug 2, 2012 10:47 AM
    Edited by: trout1234 on Aug 2, 2012 10:57 AM

    Oh yes... and i have also noticed that if the action is triggered from a component(e.g. clicking on a commandLink) that is a part of the main page
    the values are updated in all regions (i think so :) ) ... so i even tried a client listener in the first region that calls javascript function that queues a custom event with a source component from the main page, but yet the selection event is propagated to the server even with the event.cancel() and evt.stopBubbling()
    and i could not make my custom event force the apply request values... but here i might have done somthing wrong i dont know it is a mess anyway... sure this one sound more of a hack than my current option....by my criteria at least

  • Need to update software - Help please? :/

    So, I have a Nokia C3-00. My current software details are:
    V 03.61
    05-08-10
    RM-614
    (c) Nokia
    I know that this version is way out of date because I bought it years ago, and have never updated it.
    I think the current version is now 7.20 or something like that. Don't quote me on it
    Anyways, when I run the Software Update through OVI Suite, it just says that my current software 
    is up to date. I read somewhere that this phone is supposed to have WLAN settings, and mine has
    no such thing. So I can't check for updates via my phone, considering I cannot access the internet.
    Is there any way that I can download the newest version through my PC and update my phone manually?
    I don't know if I'm missing something here, and I just sound stupid right now. But I would appreciate all the help I can get. Thank you.

    In fact the latest version is v08.70
    ..but since the Nokia Suite doesn't show any availability and you don't have internet access thru' the phone there is nothing that you can do yourself.. You may ask your local Nokia care which can be found thru' this link whether they can help you.
    BTW, Availability of update depends on Region / Product Code and also, for Network locked devices, update is possible only after an approval from the Operator ..

Maybe you are looking for

  • Cant uninstall iTunes--help!

    It wont let me uninstall itunes, it says something about an error occured. Can someone help me?!

  • Dual Nic Load Balancing Solution

    Hi, I have a very peculiar situation. I'm currently a college student with access to an almost unlimited network. But the problem is that the network limits each IP to 30 Mb/s. I have 2 nics at my disposal and have tried two options so far: bonding t

  • Clarification on how Edge works

    Hello - just want to confirm how the Edge program works before getting new iPhone 6's for the family. We have 5 lines and only 1 is a smartphone (iPhone 4 on the unlimited plan). We will be dropping 1 of the 5 line completely because it is not being

  • How to dispatch the request to another server

    Is there a possibility to dispatch the HTTP request to another server using servlet API. I want my application to act like a proxy and route URL's to different applications and get the reaponse to the client , this is typically i want to do to avoid

  • What is a BitTorrent Client?

    My son is interested in getting a piece of software called XTorrent; a BitTorrent Client. I don't really understand what this does or how it works. If you buy it, it says it can do searches faster for you. It also does music, film and file downloads.