ADF UI is not reflect the ADF view updated values.

Hi Expert,
I have a ADF fusion web application using the ADF-BC. In that one of the View is created using the SQL query (refer the database base view in the back ground). I have some operation in the model layer. The operation updated the records so the view reeds be refresh to get the new values. Unfortunately the values are not refreshed even i ppr the view UI table. I checked in the model by adding some log and the values are correct in the model. So how can i push back the updated values to the UI.
Please guide me on this.
- t

Hi,
if you change the data through ADF then a PPR refresh will do. If you change the data underneath (which sounds like you are doing), you will need to re-execute the iterator (just use the Execute operationof the view Object in the data control), wich can be done programmatically and declaratively
Frank

Similar Messages

  • I purchased a Pixma Pro-100. My prints do not reflect the edited images from CS6/LR5.

    I just got a Canon Pixma Pro-100 printer. I'm running CS6 and LR5. My monitors are calibrated, my color space is Adobe RGB (1998). I want the Photoshop /LR to manage my color. I (believe) am using the correct profile for the Canon paper (Pro Luster). However, my prints do not reflect the edited versions I am viewing on my monitors. The colors are darker, dull, a bit on the reddish side, and not as vivid as what I am expecting. Is there anyone out there who can guide me to the proper way to set the up my printer and color space? I this is very confusing to me.

    You don't need any additional gadgets to set up your monitor(s) and the printer.  Mostly you will just frustrate yourself and waste a lot of ink and paper.  Stop wasting your time with them, too.
    You do need to get three things set carefully.  You need the brightness, the contrast and the grey-scale set right for the printer.
    Big point to remember you are dealing with two completely different types of color.  One is light and the other is dyes.  They will never match exactly except for maybe one or two colors at a time.  I generally shoot for flesh tones as that is what people notice mostly.
    Always check the details and never let the printer do any color managing.  All Canon printers I have worked with have a reddish bias.  You can not or at least it is very difficult to get rid of it.  Canon engineers seem to prefer a warm tone in their printers.
    I curently use three of the Canon Pro printers form the 9000, 9500 II amd the 100.  All are great printers.  But right now what you are seeing and what you are sending to the printer is different.  These need to match or you need to know what to adjust in PS to make them match.  Don't use LR to print, it isn't as good as PS and it will be different.  If you must, stick to either/or but not both.   I prefer PS.
    Always shoot RAW and use ACR to convert in either LR or PS but I always print from PS.
    Let me know how you get along.
    EOS 1Ds Mk III, EOS 1D Mk IV, EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 85mm f1.2 L II USM, EF 70-200mm f2.8 L IS II,
    Sigma 120-300mm f2.8 EX APO, Photoshop CS6, ACR 9, Lightroom 6

  • IPone 6, iOs 8.1.2 when removing the phone from the charging does not reflect the increase in the percent charge level , by reconnecting displays correctly

    when removing the phone from the charging does not reflect the increase in the percent charge level , by reconnecting displays correctly

    Addendum
    Last night charging for around 3-4 hours only charged a dead phone by 55% then left it to charge overnight
    Today the battery dropped from 6:15 am full charge to 53% at 10:38 am at time of writing this with
    1 phone call out for 30 secs
    1 incoming missed call,
    Whatsapp fetched around 10 msgs
    Email fetched around 20 ermail from 4 accounts but not viewed yet on phone

  • HT2513 my iCal shows events in the "month" view but not in the "week" view? why is that?

    my iCal shows events in the "month" view but not in the "week" view? why is that? doesnt sync automatically all the time only sometimes

    my iCal shows events in the "month" view but not in the "week" view? why is that? doesnt sync automatically all the time only sometimes

  • Tree table is not reflecting the updated model data changes at the front end

    I have two tables ,
    1) Provider table(tree table)  2)member table
    I have implemented drag and drop functionality using jQuery UI on both tables.
    In my scenario when I drag a member from the member table and drop it on the Provider table and also when I delete an assigned member from the provider table I will update the data fetched from odata model and again I will call the method which binds the data to the provider table so that the table will reflect the changes.
    here is the code,
    on drop:
    $("#Provider tbody tr").droppable({
      drop: function(event){
           oController.AssignMember(oProviderId, oMemberId)
      }).disableSelection();
    Assign member function:   here am updating the model.
    AssignMember : function(oProviderId, oMemberId){
      var oModel = new sap.ui.model.odata.ODataModel("../../../services/provider.xsodata/", true);
      var oParameters = {};
      oParameters.PROVIDER_ID = oProviderId;
      oParameters.MEMBER_ID = oMemberId;
      oParameters.CREATED_ON = new Date();
      oModel.setHeaders({"content-type" : "application/json;charset=utf-8"});
      oModel.create( "/PROVIDERMEMBERS", oParameters, null, function() {
      var oController = sap.ui.controller("adsm.provider.member_assignment_view");
      oController.GetProviderData();
      },function(jqXHR) {
      var errorMessage = jqXHR.response.body;
      var jsondata = JSON.parse(errorMessage);
      sap.ui.commons.MessageBox.alert(jsondata.error.message.value);
    GetProviderData function: here i bind the data to the table
    GetProviderData: function(){
    var oModel = new sap.ui.model.odata.ODataModel("../../../services/provider.xsodata/", true);
    var Context = "/PROVIDERS?expand=ASSIGNEDMEMBERS&$select=NAME,ID,ASSIGNEDMEMBERS/NAME,ASSIGNEDMEMBERS/ID,ASSIGNEDMEMBERS/PROVIDER_ID";
      var oTable = sap.ui.getCore().byId("tblProviders");
      oModel.read(Context, null, null, true, onSuccess, onError);
      function onSuccess(oEventdata){
      var outputJson = {};
      var p = 0;
      var r = {};
      if (oEventdata) {
      r = oEventdata;
      try {
      if (oEventdata.d){
      r = oEventdata.d;
      } catch(e){
      //alert('oEventdata.d failed');
      try {
      if (oEventdata.d.results){
      r = oEventdata.d.results;
      } catch(e){
      //alert('oEventdata.d.results failed');
      try {
      if (oEventdata.results){
      r = oEventdata.results;
      } catch(e){
      //alert('oEventdata.results failed');
      $.each(r, function(i, j) {
      outputJson[p] = {};
      outputJson[p]["NAME"] = j.NAME;
      outputJson[p]["ID"] = j.ID;
      outputJson[p]["PROVIDER_ID"] = j.ID;
      outputJson[p]["DELETE"] = 0;
      var m = 0;
      if (j.ASSIGNEDMEMBERS.results.length > 0) {
      $.each(j.ASSIGNEDMEMBERS.results, function(a,b) {
      outputJson[p][m] = { NAME: b.NAME,
      ID : b.ID,
      PROVIDER_ID: b.PROVIDER_ID,
      DELETE: 1};
      m++;
      p++;
    var oModel = new sap.ui.model.json.JSONModel();
      oModel.setData(outputJson);
      oTable.setModel(oModel);
      function onError(oEvent){
      console.log("Error on Provider Members");
    oTable.bindRows({
      path:"/"
    Its working fine in chrome but in IE the model data gets updated but the table is not reflecting the changes at front end.Can anyone suggest me a possible solution to fix this?
    Please have a look at the attached screen shots.
    Best regards,
    Amala Suganya.

    Hi Amala,
    I think this will help you:
    Disabling Cache for CRUD/FI OData scenarios for a UI5 Application on Internet Explorer
    Kind regards,
    RW

  • Output error:the name of the package "greet" does not reflect the location of this file...

    output error: The name of package 'greet' does not reflect the location of this file. Please change the package definition's name inside this file, or move the file. C:\Documents and Settings\Igal\My Documents\meiran\greet\Greeter.as
    I keep on recieving this output error although my source path is set to C:\Documents and Settings\Igal\My Documents\meiran\greet.
    any suggestions why this happens?

    The classpaths you define in your Flash software tell the compiler where to look when it needs to find a class.  According to your as file, the very top line indicates the Greeter.as file should be at a location specified by the path...
    one-of-your-classpaths\com\example\quickstart\
    So if one of your classpaths is:  C:\Documents and Settings\Igal\My Documents\meiran\greet\
    and you placed the file in the greet folder, then in your AS document you should not have the "com\example\quickstart" and your import statement in the fla should not be using that (should just be... import Greeter;)

  • WEBDAV rules repository not reflecting the changes

    WEBDAV rules repository does not reflect the changes unless i restart the application server. i dont have a problem with file repository because i can change the file repository using the link from the BPEL console and the changes are reflected immediately from the very next instance. .
    But in case of WEBDAV repository, even if i change the rules , they dont get reflected in any of the further instances unless i restart the server.
    Please help on this one.

    Another observation is that the entire bpel process(with decisionservice on webdav repository) works even if the webdav server is shut down.
    The webdav server needs to be up only for the first instance of the bpel process. After that, even shutting down the webdav server does not effect any further instances and they all run smoothly.
    This shows that the decison service builds up some kind of cache on the first call of the decisionservice. Some way to destroy this cache everytime the webdav repository changes will solve the problem.
    Any help on this topic is highly appreciated.

  • Passwords cannot be saved in version 22. worked fine before the upgrade. I am NOT in the "Private Viewing" setting. It just will NOT save passwords.

    The "dropdown for "Save passwords is NOT grayed out. Clicking the "save password box does NOTHING. I am running Windows XP SP3. The previous version (21) worked fine. Version 223 does not allow for passwords to be saved. I am NOT in the Private viewing mode. The ""Remember Passwords for sites" box under Tools/ Options/ Security is checked. "remember History" shows on Tools/ Options/ Privacy. As I said: Save passwords is no longer working with version 22. It worked on version 21. No settings were made with this upgrade. I am on another computer that does NOT have version 22 on it. I refuse to upgrade this computer.

    This does NOT work either. If you are not running Windows XP SP# and Firefox 22 please do not make these suggestions. These two "suggestions" do NOT work either. The problem is inherent with Firefox release 22. It will NOT allow the saving of passwords. Again: if you are not running Windows XP SP3 and Firefox 22 please do not offer these "suggestions"....

  • Every photo has a blue sting but not in the level view. What must I do to change this? In other programms the pictures are shown right.

    Every photo has a blue sting but not in the level view. What must I do to change this? In other programms the pictures are shown right.

    Open the PSE Editor, not the Organizer.
    Enhance>Adjust Color>Remove Color Cast
    If that does not fix it, you can post a picture here on the forum so that we may provide additional suggestions. To do that, use the camera icon at the top of the reply box.

  • Not reflecting the new value of the AWvariable

    I am working with Jdeveloper and BI beans
    we are using Java Analytical workspace API for connecting and saving the user input as a Analytical workspace Variable
    by using fallowing code
    awConn.executeCommand("awvariable=value");
    here the problem is i can not made this assignment perminent in Analytical Workspace
    i.e after execution of the program i checked with AnallyticalworkSpace manager's worksheet it not reflecting the new value of the AWvariable. It is showing only old value.
    how can i do that assignment it from java api .
    any one can help me

    That other post looks different, though - the OP is now manipulating the model.The OPs statement of the problem was:
    Adding new data to the exitsting model causes the JList to display blank when I refresh the screen.
    The suggestion in the other posting was to change the model not the array and the tutorial has a working example of this.
    The OPs question was:
    When my action performed creates a new instance of the model everything works fine but is this how it should work?
    The answer to this is no, you don't need to change the model, just update the model.
    So if the OP read the other posting and read the tutorial they should have an answer to their problem.
    As you suggested there is no need to create a custom model. The example in the tutorial uses the default list model, if the OP read the tutorial they would know that.

  • Not reflecting the sales offices for top down manual planning hierarchy

    Hi Experts,
    Please help me on this issue.
    I hava an Hierarchy like from District to Offices
    for eg: for district-                'ZBHDEL' I have salesoffice like 100, 101, 102, 103,105.
    like wise for other district          'zbhyd' i have salesoffices like 200, 201, 202.
    I have created the Mannual layout with Hierachy datamodel with BPS characteristics, TOP-DOWN, AND enabled check entry.
    In the additional setting i have select All Possible combinations.
    District at Headerlevl, along with Product and Division
    and selected salesoffice at Leadcoloumn.
    My Planning levell and package contains : for sales office slected Hierarchy at planning level. 
    BRAND
    Base Unit
    Company code
    Country
    Currency
    Division
    Fiscal year/period
    Fiscal Year Variant
    PRODUCT
    SIZE
    Sales District
    Sales Office
    Segment
    Version   
    *The Prolem is when i input some plan for a district ZBHDEL from the other layout, WHEN I RUN THE sALES OFFICE hIERARCHY
    Mannual Layout its not reflecting the sales office where i have to plan for the salesoffices by seeing the values
    of planned District.
    where as for one district i can able to see the sales offices. even i have maintained the masterdata at Infoobject level.
    Can anybody please help me out.
    thanks
    Deenu
    Edited by: deenu prasad on Aug 4, 2010 7:07 AM

    Create hierarchy for sales district info-object in following way.
    Sales District         Text Node                          Level 1
    Sales Distirct         Characteristics Node         Level 2         
                                  value 1 = ZBHDEL
                                  value 2 = ZBHYD
    sales Office          Characteristics Node         Level 3
                                  values will be according to district (include diff sales offices for diff districts in level 2)
    restrict district to this hierarchy in planning level and plan according by both approaches (create 2 seperate layouts):
    Top down  - to plan at main node i.e. sales district
    bottom up - to plan at sub node  i.e. sales office

  • Design Window is not displaying the correct view

    Hi
    For some reason the Design View on my CS3 is not displaying
    the correct view.
    It used to show how the web page would look but it is simply
    showing up the wording and pictures surrounded by dotted black
    lines.
    I am using a template as a bases for all the pages and all
    the pages are showing like this.
    My other sites are showing up OK though.
    When I Preview in Browser, it all shows up OK.
    Can anyone help?
    Bezz

    VIEW | Style Rendering > Display Styles
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Bezz333" <[email protected]> wrote in
    message
    news:fttdsr$394$[email protected]..
    > Hi
    >
    > For some reason the Design View on my CS3 is not
    displaying the correct
    > view.
    >
    > It used to show how the web page would look but it is
    simply showing up
    > the
    > wording and pictures surrounded by dotted black lines.
    >
    > I am using a template as a bases for all the pages and
    all the pages are
    > showing like this.
    >
    > My other sites are showing up OK though.
    >
    > When I Preview in Browser, it all shows up OK.
    >
    > Can anyone help?
    >
    > Bezz
    >

  • Infopath Form error - validation errors that are not in the current view?

    Hey Experts,
    I have a Sharepoint 2010 server running on Server 2008. We have a list that has a custom form created using infopath for editing and new creations.
    The problem appeared after a server restart.
    Users can no longer create a new item in the list when they do they get this error:
    The form contains the following errors:
    Field or group: my:Author
    Error: Cannot be blank
    When I try and preview it in infopath2010 it also does the same thing but provides a more detailed error:
    Infopath cannot submit the form because it contatains validation errors that are not in the current view. Errors are marked with a red astrick or red dashed boarder.
    If you cannot find an error in otherviews, there might be a problem with the forms design.
    I checked all thru the form for my:Author field and can't find it on the page as a control or in the list of fields. Any recommendations?
    Thanks!

    Didn't know you also created this as a thread.  If you send me a direct email in the future, please let me know you also created a thread so that I can answer publicly to help others and to get credit for the time/effort spent.  Thanks.SharePoint Architect || Microsoft MVP ||
    My Blog
    Planet Technologies ||
    SharePoint Task Force

  • There is no pic shown when someone calls me. Not even the thumbnail view. How to fix this?

    I just reset my iphone. Now there is no pic shown when someone calls me. Not even the thumbnail
    view on top right corner. How to fix this?

    Have you entered pics for contacts in your contacts?

  • Error «The entered value is not on the list of valid values» in the hierarchy of mss web dynpro abap

    Hello Experts
    The error «The entered value is not on the list of valid values» in the hierarchy of mss web dynpro abap occurs after manager’s following actions:
    selected detailed Team View ;
    selected hierarchy;
    changed style of the hierarchy to any other (for example, the vertical);
    the error occurs after attempting to do any action.
    Our system is EHP7.
    If someone faced with this error, please give me advice how can i resolve this problem.

    Hi John,
    Sorry for the delay in replying. No, we do not have the same problem if we understand you correctly.
    "We have bypassed the MSS Home Page and just embedded the Detailed Team View as a standalone application in our MSS portal role" - we also made for the our customer. BUT we have error «The entered value is not on the list of valid values» in our standard system.
    Regards,
    Andrey

Maybe you are looking for

  • No costs visible for statistical WBS element

    Hi, The followin steps are the setup: - Project with a statistical WBS element and a network below - Create a PO with Account category "Fixed Asset" - Fill in a fixed asset, but also a (statistical) WBS element (put field 'project' optional in custom

  • Streams in standard edition

    Dear all, 11.2.2 standard edition rac on solaris 10. We have a remote site which has a standard edition rac . Now, there is a requirement to replicate the data. We are planning to implement oracle streams . 1) Is oracle streams free with standard edi

  • "media start" on log and transfer is now time of day

    I'm using a Canon T2i, and previously, while ingesting clips in the log and transfer window, the "media start" was 0:00:00 for all clips. For the past few days, the media start has instead been the time of day (i.e. 18:34:23) which has become quite a

  • Csom javascript get Document Libraries with particular Content Type

    I need to filter result to particular content types fo document library. I cannot seem to retrieve the content type of library. How is this <g class="gr_ gr_29 gr-alert gr_gramm Punctuation multiReplace" data-gr-id="29" id="29">possible.</g> When I t

  • 11g vs Exadata- SQL Tuning approach

    We are developing an OLTP application in which the development database is in 11g and Production database would be in Exadata. We have a testing database in Exadata. The plan is to develop queries and tune it in 11g development database. After this,