Could not Refresh  Popup  Iterators located in region by using TP3

Hi i have the following problem which appears when i switched to TP3:
I have a create form, which i included as a region in a page.
I create a new row in a caller page by using createInsert operation.
The problem is that when i open the popup, create form is not refreshed with a newly created row as it expected. The form is positioned on the last selected row (before execute create) in a caller page
As it seems region iterator is not refreshed and the newly created row is not inserted inside the iterator.
Is it necessary programmatically to do region iterators refresh and how ?
If not programmatic iterators refresh is needed as i mean it should be , where is the problem?
In TP2 that was working.
Regards,
Krasimir
Message was edited by:
K.Penev

HI Frank , actually the problem is more general:
It consists of inability of synchronizing different regions iterators.
For example , if i have a search form placed in a region, and an edit or summary form for example, placed in another region (which points to the same view object),
<f:view>
<af:document>
<af:form>
<af:region value="#{bindings.staffSearchDR.regionModel}"
id="staffSearchDR"/>
<af:region value="#{bindings.staffSummaryDR.regionModel}"
id="staffSummaryDR" partialTriggers="staffSearchDR"/>
</af:form>
</af:document>
</f:view>
the iterators in different regions are not getting synchronized (That was working in TP2). I tried to synchronize the iterators on the following way:
BindingContainer bc = ADFFacesUtils.findBindingContainer(pageDefName);
DCIteratorBinding iter = (DCIteratorBinding)bc.get(iteratorName);
iter.setCurrentRowWithKey(rowKey);
And that is working , but i cannot refresh JSF Components, even by using partialTriggers or AdfFacesContext.addPartialTarget() method
Can you help me with this?
Krasimir

Similar Messages

  • Windows could not start the Network Location Awareness service on Local computer

    i have a dell inspiron 1501 laptop running windows vista home premium media center edition. i have recently been getting an error when trying to view networked computer saying  "connection status: unknown" and "the dependency service or group failed to start". i started by disabling and re-enabling the driver and that did not help. i then brought up the services.msc thing and started looking at the networking services. i noticed that the Network Location Awareness service was not started so i tried to start it. i got a popup message saying "Windows could not start the Netwrok Location Awareness service on Local Computer. Error 0xc000096: 0xc0000096".
    i also get an error popup when i try to start the Network List service saying "Windows could not start the Network List Service service on Local Computer. Error 1068: The dependency service or group failed to start".
    what might i have done to make this happen and what can i do to try to fix it?
    haus

    Hi,
    Thank you for the post.
    I fully understand the inconvenience the issue has been caused and the current situation can be frustrating. Please try the following steps for troubleshooting.
    1.    Please start the computer in Safe Mode with Network and check the result. If the issue disappears, please perform a clean boot.
    For the detailed steps, please refer to the step 1 and 2 in the KB article 936214 (http://support.microsoft.com/kb/936214).
    2.    If the issue persists, please check the system file by using the command SFC /scannow.
    For more information, please refer to the KB article 929833 (http://support.microsoft.com/kb/929833).
    If the above suggestions do not resolve the issue that service fails to start up, please understand that debug and dump analysis may be required for further troubleshooting. Also, in most cases, it is necessary to check the source codes. However, debugging is out of our forum’s support boundary. A support call to our product service team is needed for the debugging service. In this case, I’d like to suggest contacting Microsoft Customer Support Service (CSS) for assistance so that this issue can be resolved efficiently.
    To obtain the phone numbers for specific technology request, please check the website listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS
    Thank you for your understanding.
    Sincerely,
    Joson Zhou
    Microsoft Online Community Support

  • I get an error message when downloading ITunes :could not access the network location %public%\desktop\

    I get an error message when downloading ITunes "could not access the network location" %public%\desktop\?
    windows vista 32 bit

    Try the following user tip:
    "Could not access network location %PUBLIC%\Desktop\" install errors

  • Apple Configurator Could not refresh the ios update catalog

    I tried to open up apple configurator today and it's giving me an arror saying "Could not refresh the iOS update catalog. The store's response could not be parsed." I have no idea how to even start troubleshooting this. any tips?

    This is an annoying problem. I have phones and pads that I have to release for the Corporate world. I thought macs/apple were supposed to be perfect .
    Any Fixes or responses to this as a potential iTunes problem.
    Is this an iTunes to server conn problem or would this be a problem with the software to iTunes programming?

  • I can't import any photos. 'Could not copy to requested location' is the given but i have tried importing to both hard drive and external drive.

    i can't import any photos. 'Could not copy to requested location' is the given but i have tried importing to both hard drive and external drive. Help please ?

    Most likely, the "requested location" where you are trying to copy files to does not have WRITE permission, and so you need to change the permissions.

  • Could not load load from location:/test_subreport.jasper

    Hi All:
    Any help or hint is greatly appreciated it!!
    I am currently using IceFaces 1.8.2, Jsf 1.1, and JasperReport 3.5.2.
    I get the following error:
    net.sf.jasperreports.engine.JRException: Could not load object from location : /test_subreport.jasper
    The report test_report.jasper has a subreport called test_subreport.jasper. I placed both test_report.jasper and test_subreport.jasper in the directory "WEB-INF/reports/"
    public String testSearch() throws Exception
              try
                   Connection connection;
                   FacesContext context = FacesContext.getCurrentInstance();
                   HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
                   InputStream reportStream = context.getExternalContext().getResourceAsStream("WEB-INF/reports/test_report.jasper");
                   ServletOutputStream servletOutputStream = response.getOutputStream();
                   ServletContext ctx = (ServletContext) FacesContext.getCurrentInstance().getExternalContext().getContext();
                   String filepath = ctx.getRealPath("/WEB-INF/reports/");
                   filepath = filepath = "/";
                   String imagepath = ctx.getRealPath("/WEB-INF/images/test_logo.gif");
              HashMap parameterMap = new HashMap();
              parameterMap.put("SUBREPORT_DIR", filepath);
              parameterMap.put("Test Number", testNumber);
              parameterMap.put("Image Path", imagepath);
              Properties properties = new Properties();
              properties.load(context.getExternalContext().getResourceAsStream("WEB-INF/config.properties"));
              String driver = properties.getProperty("jdbc.driver");
              String jdbc_url = properties.getProperty("jdbc.url");
              String username = properties.getProperty("jdbc.username");
              String password = properties.getProperty("jdbc.password");
              Class.forName(driver);
              connection = DriverManager.getConnection(jdbc_url, username, password);
              JasperRunManager.runReportToPdfStream(reportStream, servletOutputStream, parameterMap, connection);
              //byte[] reports = JasperRunManager.runReportToPdf(reportStream, parameterMap, connection);
              connection.close();
              response.setContentType("application/pdf");
              servletOutputStream.flush();
              servletOutputStream.close();
              catch(Exception e)
                   log.error("exception message:"+e.getMessage());
              return "success";
         }

    There is a forum dedicated to JasperReports and you might find help there..
    http://jasperforge.org/plugins/espforum/browse.php?group_id=102&forumid=103
    Also don't forget to use tags because they make it easier for others to read your posts.
    Finally, I suggest moving all of your database access code into a separate class.  It will help you write code that is easier to maintain.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I am getting the error message "could not copy to requested location" to a drive i have been using for over a year... when I do the same thing to another drive - it works just fine. why?

    i am getting the error message "could not copy to requested location" to a drive i have been using for over a year... when I do the same thing to another drive - it works just fine. why?

    Possibly the drive is full
    Possibly the permissions are not set to WRITE permission
    Possibly there has been a "user mistake" and you think you are copying to a drive you have been using for over a year but something has accidentally changed and you're copying to a different location

  • Iphone 3G S map could not detect my current location

    hello everyone, i just bought my iphone 3G S last january and all went well until 3 weeks ago when my map could not detect my current location...whenever i push that circle picture to detect my current location, it just keeps on connecting but wont detect at all...my internet is fine...but my only problem is my current location cannot be detected...please help me solve my problem...thank you and God bless you everyone!

    rhowan_jacky wrote:
    hello everyone, i just bought my iphone 3G S last january and all went well until 3 weeks ago when my map could not detect my current location...whenever i push that circle picture to detect my current location, it just keeps on connecting but wont detect at all...my internet is fine...but my only problem is my current location cannot be detected...please help me solve my problem...thank you and God bless you everyone!
    I have the same problem sometimes when inside my house, on some occasions it shows the wrong location (1/4 mile out), when it does this, this is because it cannot get a GPS signal and instead triangulates the cellular network for a location. On other occasions it does not get GPS signal.
    Has soon as I go outside the Map works fine and shows my exact location.

  • In my first iPhone 5, the speaker didn't work and people could not hear me on Speaker phone when I used it. When I used the video recording it did not record sound at all only a hissing/static sound, no voice.

    In my first iPhone 5, the speaker didn't work and people could not hear me on Speaker phone when I used it. When I used the video recording it did not record sound at all only a hissing/static sound, no voice. I wished for a software fix. I did a hard reset, nothing. I did a full restore to factory settings not putting my backup on and the problem persisted.
    i have been provided with this info
    You can find troubleshooting tips, how-to articles, and moderated
    > > discussion forums on our support website:
    > >
    > > www.apple.com/support
    > >
    > > iPhone: Basic troubleshooting
    > > http://support.apple.com/kb/HT1737
    > >
    I did every step in the link that i have been provided with (thank you), but I’m
    still experiencing the same issue. My experience with Apple has been
    excellent and this has been the first time I have experienced something
    like this with an Apple product. I hope we can find a quick solution.
    In order to get the iPhone 5 as soon as it launched (being a major fan of
    Apple products!), I purchased my iPhone 5 from the UK through a friend of
    mine who lives there.
    My question is: can I have the faulty device replaced within Saudi by one
    of the official resellers here (we have 3: STC, Mobily and Zain)? I want to
    avoid the disruption, complication and expense of sending it back to the
    UK.
    Could you advise whether this is possible or not, and if not how should I
    go about having the device replaced?
    Thank you in advance for your cooperation.

    Nice try! Take a hike.

  • Could not complete the command because of a problem using the Adobe Color Engine

    Hi all
    This bizarrely started this morning - completely out of the blue - and I've no idea why.
    Setup: Mac 10.8.2 / Creative Suite Premium PhotoShop CS5 extended (patched to 12.04)
    Am working on images exported from LightRoom 4 (16bit A3 Pro Photo RGB PSDs) in PhotoShop CS5.
    As part of my image grading process I have a PhotoShop Action that does the following: copy layer to new document (document respects all of copied layer settings) > Image > Adjustments > HDR toning > apply a certain HDR preset > copy to resultant image back to original doc > set opacity as 40%.
    Totally out of the blue, after having this action for about 2 months, this morning I start getting a warning dialog of "Could not complete the command because of a problem using the Adobe Color Engine" and the action fails. The failure seems to take place at the 'make document' part of the action and seems to somehow be related to the contents of the clipboard.
    I've tried trashing and re-creating the action. It works first time out fine and then - on the next image - errors again.
    At present I can only safely carry out the work 'manually' by completing all the actions myself.
    I can think of no settings that have changed and the OS hasn't been updated in a while.
    I have found one other thread on a similar problem in PhotoShop Elements, but no definitive solution.
    Any help appreciated as I have a shedload of stuff to process.
    Best wishes
    TP

    OK: trash of prefs didn't work. Tried thrice. Re-created orig action. same problem.
    BUT!
    Your 'Image > Duplicate' suggestion does seem to work. If I use that in a new action as the method for creating the HDR version doc (instead of 'Select > Copy > New > Paste), it seems to work.
    Will try that out this afternoon, but for now: WIN!
    Many thanks for the suggestion!
    TP

  • Error - Exclusive access could not be obtained because the database is in use

    I am actually trying to make a script (in Sql Server 2008) to restore one database from one backup file. I made the following code and I am getting an error -
    Msg 3101, Level 16, State 1, Line 3
    Exclusive access could not be obtained because
    the database is in use.
    Msg 3013, Level 16, State 1, Line 3
    RESTORE DATABASE is terminating abnormally.
    How do I fix this problem ?
    IF DB_ID('AdventureWorksDW') IS NOT NULL
    BEGIN
    RESTORE DATABASE [AdventureWorksDW]
    FILE = N'AdventureWorksDW_Data'
    FROM
    DISK = N'C:\Program Files\Microsoft SQL Server\
    MSSQL10_50.SS2008\MSSQL\Backup\AdventureWorksDW.bak'
    WITH FILE = 1,
    MOVE N'AdventureWorksDW_Data'
    TO N'C:\Program Files\Microsoft SQL Server\
    MSSQL10_50.SS2008\MSSQL\DATA\AdventureWorksDW.mdf',
    MOVE N'AdventureWorksDW_Log'
    TO N'C:\Program Files\Microsoft SQL Server\
    MSSQL10_50.SS2008\MSSQL\DATA\AdventureWorksDW_0.LDF',
    NOUNLOAD, STATS = 10
    END

    Check, if there are existing connections to the database you are restoring by following command
    select spid from sys.sysprocesses where dbid = db_id('AdventureWorksDW')
    if you see any existing connections then kill them by issuing KILL command Syntax for kill is
    KILL <SPID>
    once you see there are no more connections then 
    Use mastergoIF DB_ID('AdventureWorksDW') IS NOT NULL
    BEGIN
    RESTORE DATABASE [AdventureWorksDW]
    FILE = N'AdventureWorksDW_Data'
    FROM
    DISK = N'C:\Program Files\Microsoft SQL Server\
    MSSQL10_50.SS2008\MSSQL\Backup\AdventureWorksDW.bak'
    WITH FILE = 1,
    MOVE N'AdventureWorksDW_Data'
    TO N'C:\Program Files\Microsoft SQL Server\
    MSSQL10_50.SS2008\MSSQL\DATA\AdventureWorksDW.mdf',
    MOVE N'AdventureWorksDW_Log'
    TO N'C:\Program Files\Microsoft SQL Server\
    MSSQL10_50.SS2008\MSSQL\DATA\AdventureWorksDW_0.LDF',
    NOUNLOAD, STATS = 10
    END
    Mark as answer, if it works.

  • InD blocking Ps to save a file / Could not save * because the file is already in use error

    Many users have reported a  Photoshop Could not save * because the file is already in use error in many different circumstances.
    I place raw jpgs in InDesign document, then open them in Photoshop via Edit original order to adjust them. On random occasions Ps gives me that annoying error. So i found a little trick to avoid saving that image under a different name and relinking it plus reloading Ps since the error repeats on other pictures to.
    All you have to do is: when Ps gives error, (Cmd-Tab) switch to InD, directly select the worked jpg in image frame (one that you try to save in Ps)  and simply move it left-right (or move it and Undo). Now you can save it without problem.

    JPEG is a "lossy" compression format. Every time you save as jpeg you recompress and throw away a little more information. In addition, jpeg does not support transparency or layers, both very useful features for woring with images. For example, you can add an adjustment layer in Photoshop to do your adjustments non-destructively for may of the things that you can do using Image > Adjustments... which will change your pixel data permanently. Throw away an adjustment layer and you image data is untouched. Also, ID allows you to place a layered image and control layer visibility from within ID, making it possible to multi-purpose a single file by showing or hiding various layers.

  • Trigger line requested could not be reserved because it is already in use.

    Hi , I am trying to export markers on PFI0 and PXI_Trig0 on NI5450 (in the script mode)
    using the following code 
    There are no errors when I configure using the following code.
    commWrapper.ExportSignal(PXICommonGenWrapper.niFge​nConstants.MarkerEvent, "Marker1", "PFI0")
    commWrapper.ExportSignal(PXICommonGenWrapper.niFge​nConstants.Marker, "Marker0", "PXI_Trig0")
    When I run the script, I get the following error
    Trigger line requested could not be reserved because it is already in use.
    Property: Marker Event Output Terminal
    Destination Device: PXI1Slot2
    Status Code: -89126
    Would appreciate any solution that enables to me configure the two triggers/markers. I use these markers to trigger another PXI card (NI5644R on PXI_Trig0) and an external piece of equipment (using PFI0 output).
    Thank you.
    Solved!
    Go to Solution.

    Hi Surya,
    Thanks for posting this on the community page. What this error is telling you is that it can't route a trigger to your requested destination because something else has already reserved that trigger line. One pottential typo is that your second ExportSignal command specifies niFgenConstants.Marker and not .MarkerEvent. This is a simple error to resolve but there are many possible sources. Is it possible for you to share the full code with me? Or,maybe you could host a join.me session and I can look at your full setup.
    Sean Ferguson
    Application Engineering Specialist | RF and Reconfigurable Test

  • The catalog could not be opened because it is currently in use by another program

    I get the following error message when I try to open Organizer:
    "The catalog could not be opened because it is currently in use by another program."
    Any suggestions?

    Have you rebooted?
    Ken

  • Could not complete the command because of a problem using the Adobe Colour Engine??

    When I am playing back a set of recorded actions, I receive a message that says "Could not complete the command because of a problem using the Adobe Colour Engine". This occurs after I copy a part of an image to paste it onto a new file. It occurs during the "Make" part(making a new file) and I was just wondering how to fix it.

    It's a known (but esoteric) bug in Photoshop CS5 and earlier, seen with grayscale images.  It used to crash utterly, but after I reported it I think they patched Photoshop 12.0.something to avoid the crash.  However, the step still fails when you make a new grayscale image in an action.
    I saw it because I created an action to paste the clipboard into new document, all in one motion.  It virtually always works as long as I have a colored image in the clipboard.  But not grayscale.
    One workaround, which is not particularly convenient, is to turn on prompting for the Make new image step.  I haven't used this workaround for a while, but it used to be that if you confirmed the "File New" operation manually it would continue and work.  I don't know if the workaround is still valid.
    -Noel

Maybe you are looking for