Data is refreshed only on explicit clearForRecreate on iterator

We are using jdev 11.1.1.6.0 and writing new datacontrol on essbase database
We are able to create the UI component like af:table from draggings the access iterators from the datacontrol to the jspx page..
But when the data in the model changes, the component doesn't get refreshed with the new data until we do clearForRecreate on the iteratorm in addition to doing adfFacesContext.addPartialTargets(<target component instance>)
Are we missing anything while creating the structure and accessors in the datacontrol?
I see the AccessorDef has apis like public void addProperty(java.lang.String propName, java.lang.Object value). Any idea what are the list of valid values we can pass?

Any expert comments?

Similar Messages

  • Refreshing only the single row of  ADF Table

    Hi All,
    I have a webcenter application where the ADF Applications has been deployed.Now the Data is coming onto the ADF Tables from a webservice.In that particular table i need to refresh only the single row(whichever selected by the user to edit ) or even a particular field with the updated values as well as need to validate and to create a message box saying about the errors if the validation goes wrong.
    Please suggest!!

    Hi,
    if "updated value" mean that the value got changed on the middle tier (not the browser client) then the update requires the table to be partially refreshed. If the user edits a row and in this row has dependent fields, then this can be achieved by partially refreshing the column. Note that ADF Faces tables don't refresh just one cell
    Frank

  • Displayed changed data without refresh

    Dear Expert,
    I am using CL_ALV_GRID to let the user input some code in one filed then the it's text display in another field automatically.But I meet a problem , to display the changed data I have to use method 'refresh'. This method will refresh all the data, but user only want to display the changed data.
    Is there any way to realize this kind of requirement ?

    Hi expert,
    Here data will be displayed on layout.After displaying the data first we need to modify the record after that selected that record
    and press the CUSTOME REFRESH button only selected row is changed  in internal table after that using set_table_for_fist_display using that method wt ever the modified the data in itab that data will display.
    claSS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
    MOVE 'REFRESH' TO ls_toolbar-function.
        MOVE icon_refresh  TO ls_toolbar-icon.
        MOVE 'REFRESH SCREEN'(140) TO ls_toolbar-quickinfo.
       MOVE 'DELETE DATA'(120) TO ls_toolbar-quickinfo.
        MOVE 'REFRESH'(140) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        APPEND ls_toolbar TO e_object->mt_toolbar.
        CLEAR ls_toolbar.
    ENDMETHOD.
    ENDCLASS.
    METHOD handle_user_command.
      CASE e_ucomm.
        WHEN 'REFRESH'.
          CALL METHOD r_grid->get_selected_rows
              IMPORTING
                 ET_INDEX_ROWS =
                 et_row_no     = it_rows.
          LOOP AT it_rows INTO wa_rows.
    MODIFY DBTAB FROM TABLE ITAB INDEX WA_ROWS-INDEX.
    ENDLOOP.
    CALL METHOD r_grid->set_table_for_first_display
            EXPORTING
              is_layout       = gs_layout "&see below
            CHANGING
              it_fieldcatalog = gt_fieldcat
              it_outtab       = ITAB.
    ENDMETHOD.
    STARTOFSELECTION.
    CREATE OBJECT r_container
        EXPORTING
          container_name              = 'CONTAINER_1'
    CREATE OBJECT r_grid
        EXPORTING
          i_parent          = r_container
    SET HANDLER event_receiver1->handle_user_command FOR r_grid.
      SET HANDLER event_receiver1->handle_toolbar FOR r_grid.
    Regards
    MURALII

  • "Use cellular data for" is only showing a few apps

    Hello,
    I just got a new 5S.  I have installed and used maybe 15 or so apps, but when I go to
    Settings -> Cellular -> "Use cellular data for"
    it only shows 5 apps: Calendar, FaceTime, Find iPhone, Passbook, & Skype.
    I would like to see all the apps so that I can control what is using cellular data.  When I read other posts online, it seems like this should show all apps.  Does anybody have any idea why I only see a few apps here or what I can do to display all apps?
    Thanks for any help!

    This troubleshooting guide helped me. Had to try up to step 7...
    iPhone: Troubleshooting a cellular data connection

  • I got the new iPhone 5C. In my cellular settings, under "Use cellular data for", it only show passbook and facetime. How can I add other apps? Also, my carrier is AT&T

    I got the new iPhone 5C. In my cellular settings, under "Use cellular data for", it only show passbook and facetime. How can I add other apps? Also, my carrier is AT&amp;T

    Hello Sophie59
    You should be able to see two different tabs when setting up the email if you go to Other > Add Mail Account. Once you enter in the email address and password, you should be at the next screen to provide more details about the email as far as incoming and outgoing servers and at the top there will be a blue section to add it in as a POP or IMAP email account. Check out the article below for further troubleshooting and emails setup options.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    iOS: Adding an email account
    http://support.apple.com/kb/ht4810
    Regards,
    -Norm G.

  • Xi Data Cache Refresh Problem

    Hello,
    We have following Problem:
    We send an XML-Request with HTTP-Adapter to XI and get Data from R/3, works fine.
    But when we send a Second Request we become an Error.
    The error comes because in the Java Runtime the XI writes wrong values into Message.
    When we do a XI Data Cache Refresh for INTEGRATION_SERVER
    and INTEGRATION_RUNTIME we can send a message and all works fine again.´
    Any Idea why the XI Caches Data from Request and set this values in the message of request that was send later?
    Thanks,
    Robin

    Hi,
    I think both are same. Because in SXi_ADM we also define our IS. so i think it may be same ...
    If I am wrong please share your knowledge . in this thread for more clarification ..
    Regards,
    Amit

  • How to remove unnecessary data and print only the required data in JSP

    Hi all
    The following output is from TCP/IP connection of RFID Reader.
    Connected to: /192.168.0.3
    EVT:DCE DCEVERSION 3.2.0.0
    EVT:DCE READER IM5 RFID Reader Ver 3.29
    EVT:DCE READERINFO Basic Reader Interface Version Q
    EVT:DCE READERINFO FCC 915Mhz
    EVT:DCE READERINFO Copyright (C) 2002-2006 Intermec Technologies Corp.
    EVT:DCE FIXEDATTRIB CHKSUM=OFF
    EVT:DCE FIXEDATTRIB TTY=OFF
    EVT:DCE FIXEDATTRIB ECHO=OFF
    OK>
    EVT:TAG H02000031323334000151E62B 1 1
    EVT:TAG H02000031323334000151B775 1 1
    For my JSP case I have converted above output's program in javabean I want to print only tagID and other values in a table in my JSP page. Could anybody let me know how to ignore the unnecessary data and print only values after EVT:TAG in three columns and rows, besically rows are not fixed because it depends on reader how many tags it detects?
    Thanx
    kvijai

    Hi,
    Try this
    private function doFilter(item:Object):Boolean
         var searchString:String = myTextIp.text.toLowerCase();
         if (item.name.search(searchString) == 0)
         return true;
              else
         return false

  • Delivery Date should propose only working days (Excluding weekends and holidays

    Hello All
    I have one requirement here, where delivery dates should propose only working days and it should not allow to add weekends and holidays during the creation of sales order.
    I would like to know if there are any standard settings to be done in plant or shiping point?
    Kindly need all your input on this
    Thanks
    Naveen

    Hello All
    Same calendar has already been assigned in shipping point,plant and sales org and also in the calendar holidays been maintained, even though when we create a sales order it will accept weekends and holidays
    Thanks

  • No data to refresh in BPC for Ecxel

    Hello,
    I created an input schedule and tested it by sending the data from BPC for Excel interface. It works fine.
    However, if I try to distribute the schedule as an offline document, collect the same after the user modifications and try to process it, I see the error "No data to refresh".
    Here is what I did to troubleshoot this:
    1) I tried using different dimensions to see if it's working, I get the same result.
    2) I tried the input schedules with and without password
    3) I reviewed the distribution list over and over again. Could not see anything wrong.
    I am not sure what I am missing. Any ideas would be of great help!
    Thx,
    Nsk

    All:
    An update. I manually copied the input schedule into one of the local folders without using the Distribute feature in the "Offline Distribution Wizard". Then I used "Offline Distribution Wizard" to collect the file and process it. It worked just fine. That leaves probably one area of problem: Distribution list.
    Thx,
    Nsk

  • No data to refresh in BPC clients with Russian regional settings

    Hello, colleagues
    I hope to get some advices and information about saving data in BPC client computers with non-English regional settings (e.g., decimal point is set ","). Our BPC server has English regional settings.
    BPC 7.0, SQL Server 2008. I created new Input Schedule by using standard EVDRE function. And data was not sent to SQL Server after clicking Send and Refresh, I got the message "No data to refresh". I examined hidden sheet EVDRE_DATACACHE and found cells in row A with cache data in XML format. After some experiments I found out that if all data values will be replaced with symbol "S" then all data in the sheet with EVDRE could be saved correctly. I don't know any other methods to make data with decimal point "," to be saved. Also I tried to change members of Measure (Periodic - YTD) but i got the same result.
    Thanks for your help.

    Actually you have the problem into server.
    I think you have the regional settings wrong into server.
    We have actually many customers using French, German, Dutch language having "," for decimal separator and it is working fine.
    It is not working when actually the settings into the server are not English US.
    Please check the follow keys from application server:
    HKEY_USERS - .Default - Control Panel - International
    HKEY_USERS - S-1-18.. - Control Panel - International
    HKEY_USERS - S-1-19 ..- Control Panel - International
    HKEY_USERS - S-1-20 ..- Control Panel - International
    HKEY_USERS - S-1-21..- Control Panel - International
    HKEY_USERS - S-1-21........ ..- Control Panel - International
    These keys should be sett all for english US. If it is at least one not correct that can cause problems with sending data.
    Regards
    Sorin Radulescu

  • My iPhone does not notify me of calls in Voice Mail. I will see that I missed a call but there are no messages in VM. Cellular data is off - only voice roaming. Suggestions?

    My iPhone does not notify me of calls in Voice Mail. I will see that I missed a call but there are no messages in VM. Cellular data is off - only voice roaming. Suggestions?

        DJTayLo, Let's get your voicemail working! I noticed you metioned that your Cellular Data is off. Visual Voicemail does need to be connected to Cellular Data in order to retreive voicemails for the iPhone. This can cause the notifications to be delayed. When you turn Cellular Data on do the notifications  then show correctly? Which model iPhone do you have? We'll figure this out.
    TanishaS1_VZW
    Follow us on Twitter @VZWSupport

  • Using Time Machine, is it possible to back up a computer AFTER a specific date. I only want to back up files from AFTER January 2015. Is this possible, and how can I do this?

    Using Time Machine, is it possible to back up a computer AFTER a specific date. I only want to back up files from AFTER January 2015. Is this possible, and how can I do this?

    emilypdunne wrote:
    Using Time Machine, is it possible to back up a computer AFTER a specific date. I only want to back up files from AFTER January 2015. Is this possible, and how can I do this?
    Is what you're saying that you only want backups in TM of the state of your Mac from January 2015 to the current date and nothing before then? I'd think the simplest solution would just be to delete in TM all the backups prior to 1/15 and then let TM do its thing. The ultimate source for all things Time Machine is here. On this page, note the comment that "Time Machine will never delete the backup copy of anything that was on the disk being backed-up at the time of any remaining backup" which I understand to mean that if you delete all the backups in the TM file prior to 1/15, any file that wasn't present on your Mac as of 1/15 will no longer be represented in the TM file. Note that the second link also has instructions for how to delete TM files.
    If you were trying to accomplish something else, then as Emily Litella (Gilda Radner in SNL) used to say, "never mind."

  • How to load data into read only cells in HFM?

    Can any one help me in loading data into Read only cells in HFM?. I am trying to lad data into a read only cell using data load file and i m getting the below error.
    NB: I need the "UseLineItem Details" to be enabled.I shud be able to submit the data thoudh the "UseLineItem Details" property of the account member is enabled
    Data load File
    !Column_Order = Scenario, Year, Period, View, Entity, Value, Account, ICP, Custom1, Custom2, Custom3, Custom4
    !DATA
    Actual; 2013; January; Periodic; NZ; NZD; 141100; [ICP None]; [None]; [None]; [None]; [None]; 10000
    Error Received
    Line: 4, Error: Cell for Period January is not an input cell.
    Actual; 2013; January; Periodic; NZ; NZD; 141100; [ICP None]; [None]; [None]; [None]; [None]; 10000
    >>>>>>
    Can any one please help me ....

    Hi,
    Example: Assume that you have Travel Account#141100
    Now you have below information
    Travel Expenses $30,000
    Food Expenses $50,000
    Hotel expenses$20,000
    To enter this details normally you will create additional 3 accounts(1.TravelExpenses 2.FoodExpenses 3.HotelExpenses) under Travel Account#141100
    Using lineItem Details No need to create additional accounts. you can show the detailed information in a single cell(Single Account).
    To do this
    1.Create a New datagrid in workspace
    2.Right-click and select Cell Line Item Detail on Account#141100 (which is enabled line item details)
    3.Click on add button then provide the description and Enter the amount then press enter.
    1)Travel Expenses $30,000
    2)Food Expenses $50,000
    3)Hotel expenses$20,000
    4.Total $100,000 will be shown in Account#141100
    (If you want to see the detailed information just Right-click and select Cell Line Item Detail on Account#141100)
    To get clear understanding please go through the HFM Admin guide.
    Regards
    Sarilla

  • In RSRT - Is it possible to check request wise data in RSRT only.

    Hi,
    In RSRT - Is it possible to check request wise data in RSRT only.
    Kindly advise me on the same.
    Thanks
    Bujji

    Saveen,
    Here is my problem.
    I have a infocube in which Material No and Base Unit are there.
    I have a DSO in which Material, (Alternate unit, Numerator and Denominator) which are associated to that material are there .
    I need to match the same material number from both infocube and DSO and load the associated Alternate unit, Numerator and denominator in the infocube.
    Since the infocube is non cumulative, I am not able to build Infoset.
    So I added the Infoobjects of (Alternate unit, Numerator and Denominator) to the cube.
    Now the cube has Material no, base unit-------For Both data is filled.
             and extra Alt unit, Numerator and Denominator- For these data empty.
    I need to load the alt unit Numerator and denominator from the DSO for which the Material no matches with the Infocube.
    I am not very good in explanation.Hope u understand. Pls adjust with the long text...
    Pls help me.
    Thanks.
    Guru

  • Problem in submitting data while refresh in web application

    Hi all,
    I have problem in submitting data while refreshing the page.
    In my application voucher number is generated automatically and as soon as number is genereated voucher detail is inserted in database for newly generated voucher number.
    Both of these activity done on the same page as my client want so.
    Now I have problem that while refreshing the page, the same data for incremented voucher number stored in database that should not be done.
    If there is any solution for this situation other than 1) Generating number in one page and inserting on another 2) block refresh activity, then please reply me.
    It's urgent. Your help will help me a lot.
    regards,
    Deepalee

    Hi
    <u>You can use either of the BADIs depending on your requirement.</u>
    BAdI Definition Name Description                                                                               
    BBP_PGRP_ASSIGN_BADI EBP Purchasing Documents: Assign Purchasing Group(s)       
    BBP_PGRP_FIND        Shopping Cart: Determine Responsible Purchasing Group(s)                                                                               
    BBP_DOC_CHANGE_BADI
    BAdI for Changing EBP Purchasing Documents
    <b>Please read the Standard documetation available with them using SE18 transaction in SRM system.</b>
    Which SRM version you are using ?
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

Maybe you are looking for

  • Problem building Client JVM on RedHat Linux 7.1

    Hi :) I am trying to build the client VM on RedHat Linux 7.1. I have religiously followed all the pre-requirements, making sure that I meet them all. Nevertheless, I get a bunch of error messages. They are divided into two categories: - "cannot conve

  • Horizontal scroll in webdynpro java table

    Hello, I have a webdynpro java application in which i have a table with 15 columns. I have set the scrollableColCount property of the table to 5. Now on click of some link(LinkToAction), i want to scroll horizontally to column 8. Can i do this from t

  • Is this sense to play games on Samsung UE32F5000 LED TV?

    Hey. Is this sense to play games on Samsung UE32F5000 LED TV? . My mother bought it to watch TV. But i am thinking now , can i play games on this? Max res is 1920. Will be good quality? I am asking because this is 32 size, very big . Got HDMI too:) Y

  • Where are my apps for my iPad?

    Admittedly it has been quite awhile since I synched my iPad and iPod but I updated my iMac. Now iTunes no longer will update my iOS devices. It does not show any of my apps or other items to update. It does show that my iPad is connected and needs to

  • How can I get my phone working after water ingress

    Help..... My phone just went into the toilet basin... It didn't get very wet because of the cover I use, but it still had a dunking.. Right, when I re-set the phone using on/off key top, I get the blackberry name and a white screen, after about 20 se