Region templates not refreshed until after restart

Hi guys,
Another problem we are facing is when updating region templates. On a local workstation with JDev and a local SSXA connected to a remote UCM, changes to the region template's underlying JSP are taken into account on every page load. However, when using the remote SSXA connected to the same remote UCM, changes to the region template are not taken into account until the SSXA server is restarted.
Surely there must be some caching parameter somewhere? How can we modify this behaviour?
Thanks again!

Hi ,
Download 13502977 from MyOracleSupport and upgrade the UCM server .
After that install the JDev plugins from the upgraded server by navigating to :
/Oracle_ECM1/ucm/Distribution/RIDC/jdev
/Oracle_ECM1/ucm/Distribution/SiteStudioExternalApplications/jdev
After this test to see if the issue still persists .
Reason for asking this is I am not able to see any issues with SSXA region templates .
Hope it helps .
Thanks
Srinath

Similar Messages

  • Can not refresh page after save properly(When not saving master record)

    I am using jdeveloper 11g R2 (11.1.2.3) JSF Facelet
    In some use case I have Address as master table and Person as detail table
    For some business reason I need to don't save same addresses
    eg:
    If +1 Test St+ is in database already and new user coming and adding this address with new person
    I need to use the row in database not creating a new address
    I do saving in doDML method of Address with some hashing algorithm and it is fine
    My problem is that I can not refresh page after save properly
    User coming to page think Adding a new address and a new person but in fact no new
    address added because of business I describe above
    Any ideas how I can implement this?
    Appreciate that
    Regards
    Mohsen

    Hi,
    from your description it is not clear why the page doesn't refresh. It could be a problem in your implementation code - who knows. What if you perform the address check on a command button that actually submits the new address? If the check returns true (address exists) you would call row.refresh(forget new row); and re-query the view object so the address coming from the database is displayed. If you wanted to use the doDML then yuou need to be aware that doDML doesn't help removing the row the user created. It just ignores the database update but the entity is still around, which in my suggested solution wont be the case.
    Frank

  • Firefox 11.0 Personas are not staying enabled after restart of FF11

    After updating Firefox 10.0.2 to FF 11.0, both of my PC's personas that I have will not stay enabled after restarting FF 11.0. I have tried different personas on each PC and they also will not stay enabled after a restart of the browser. FYI, I am still using the same extensions that I had used in FF 10.0.2 and there all up to date in FF 11.0, it's just this persona issue that bug me big time.
    I've tried all the Knowledge Base help suggestions, but none have worked.
    Any one else having this issue? Any on have a fix that worked?
    Help!

    The installed personas and the currently selected persona is saved as a pref in the prefs.js file in the Firefox Profile Folder, so there may be a problem with that file.
    See:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/kb/Preferences+are+not+saved

  • Region does not refresh in Address ESS.

    Dear all experts,
    When updating address of employee who belongs to Kuwait country group on web portal ESS, all regions are Kuwait specific and regions do not refresh if employee chooses a different country to update emergency or permanent addresses.
    Can you help on this problem?
    Thanks and kind regards,
    TramNguyen

    You have to create a new address using the NEW button from the overview screen in order to enter a new country within the address screens. You cannot update country within the existing addresses as they screens will not update based on the new country selection. In fact the country should not even be an open field on the screen when in edit mode. If you do not have a NEW button on the overview screen, please check your configuration for subtypes for ESS within the IMG.
    Cheers,
    Mike

  • Since I updated to firefox 3.6 I keep gettin multiple popup windows. This did not happen until after the update. The popups appear as regular windows so popup blockers can not stop them.

    Since I updated to firefox 3.6 I keep gettin multiple pop up windows. This did not happen until after the update. The pop ups appear as regular windows so pop up blockers can not stop them. Why has the new update made my laptop more vulnerable. updates are supposed to be improvements!
    == This happened ==
    Every time Firefox opened
    == as soon as I updated to ver 3.6

    Im having the same problem, I updated my Iphone 4S to 6.1.3, shortly after that my phone had no audio. It was working fine one minute and then stopped. Was listening to music when sound gave out on me. It wont ring, phone just vibrates even after turning off vibration option. I've tried all the options listed and nothing. My phone has never been jailbroken either. If I connect the earphones is works perfectly. On one of my last calls received, phone's ringtone was heard for about 2 seconds before muting and just vibrating. Ringtone sounded perfect, speakers did not sound damaged. 
    What else could be done? I've read several post regarding this and it seems like Apple has no solution to this yet. Very dissappointed.

  • Content not visible until after refresh

    I have two sites live now via muse, and once in a while some of the content isn't visible (mostly text) until after I refresh the page. Has anyone else had this issue?

    If the widget requires you to add it to each Master, then yes. Also, as the issue lies with Chrome's latest release, please wait for Google to release an updated version of the browser. You may want to follow this thread - https://code.google.com/p/chromium/issues/detail?id=336476&q=font&colspec=ID%20Pri%20M%20I teration%20ReleaseBlock%20Cr%20Status%20Owner%20Summary%20OS%20Modified.
    Thanks,
    Vinayak

  • Not Refresh Value After Add New Record used with RPC Component

    This is my code in the class Users.as
    package inthanous
    import mx.controls.Alert;
    import mx.rpc.http.HTTPService;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    public class Users
    private var service:HTTPService;
    [Bindable]
    public var xmllist_user:XMLList;
    public function Users(){
    service = new HTTPService();
    service.method = "POST";
    service.useProxy = false
    service.resultFormat = "e4x";
    public function listUser():void{
    service.url = "/user/get_all_user_group_name";
    service.addEventListener("result", httpResultListUser);
    service.addEventListener("fault", httpFaultListUser);
    xmllist_user = new XMLList();
    service.send();
    private function httpResultListUser(event:ResultEvent):void{
    service.removeEventListener("result", httpResultListUser);
    service.removeEventListener("fault", httpFaultListUser);
    xmllist_user = new XMLList(service.lastResult.children());
    listAllUser();
    private function httpFaultListUser(event:FaultEvent):void{
    var faulstring:String = event.fault.message;
    service.removeEventListener("result", httpResultListUser);
    service.removeEventListener("fault", httpFaultListUser);
    Alert.show(faulstring,"Error");
    public function createUser(_xml:XML):void{
    service.url = "/user/create_user";
    service.addEventListener("result", httpResultCreateUser);
    service.addEventListener("fault", httpFaultCreateUser);
    service.send({firstName: _xml.firstName,
    lastName: _xml.lastName,
    gender: _xml.gender,
    login: _xml.login,
    pwd: _xml.pwd,
    dtBirth: _xml.dtBirth,
    telephone: _xml.telephone,
    idGroup: _xml.idGroup
    private function
    httpResultCreateUser(event:ResultEvent):void{
    service.removeEventListener("result", httpResultCreateUser);
    service.removeEventListener("fault", httpFaultCreateUser);
    listUser();
    clearUserDetail();
    private function httpFaultCreateUser(event:FaultEvent):void{
    var faulstring:String = event.fault.message;
    service.removeEventListener("result", httpResultCreateUser);
    service.removeEventListener("fault", httpFaultCreateUser);
    Alert.show(faulstring,"Error");
    This code i used with Ruby on Rail to connect with MySQL.
    When i used with FireFox browse after i create new user
    success it refresh the new record in Datagrid. But for the Internet
    Explorer Datagrid not refresh it because of it display the old
    recode before create.
    So i don't know it problem by Internet Explorer or my script.
    i hope someone can help me the solve this problem.
    thanks

    If you restrict the selection, a record value outside of that selection is not acceptable and will give you this error. This is how BPS works.
    You need to restrict on some other char so BASIC1 doesn't come in, but this value should be part of any selection on ZSEGMENT field for it to be accepted back.

  • Login Window: Screen does not refresh correctly after waking 10.7.2 iMac and MacBook.

    I have a client who brought to my attention that when we wakes his iMac and MacBook after the screen dims or sleeps at login screen, that sometimes the screen does not refresh correctly and you must use the cursor to basically "clear the screen."  I have witnessed this myself and elimiated all third party products and this still happens.  I am starting to believe that is is a bug in 10.7.2.  Has anyone witnessed this or have any suggestions on how to remedy?  Thank you.

    Thanks lynque.  It turns out I did need a keychain repair, but that didn't fix the problem.  I probably should have done this earlier, but I ended up unplugging all peripherals (2 firewire + 3 USB) then powered up without issue.
    So I shut down, plugged in one at a time, and ran into the problem again after plugging in an external hard drive (WD My Book Essential).  I repaired with disk utility, but the problem remained.
    I then rebuilt the partitions with Disk Warrior, and now everything seems to work....

  • My music in iTunes will not play until I restart my computer. Please help!

    When I open iTunes, I cannot get songs to play. The pause/play button reads as if it is playing, but the progress bar does not move and no sound is heard. When I restart my computer, songs play as normal. Any help would be greatly appreciated. Thanks!

    Same thing happened to me...called into Apple , in order to retrive my music purchased on itunes, you have to go to the itunes store, then go to Quicklinks there you will see purchased songs, and you can redownload them to itunes..... But there is an catch ...... It is taking FOREVER  to download  all my songs (500+) back into iTunes. Other issue I got a message saying can not load all songs to libary not enough memory after having like 150 transfer... so this issue needs to be worked on

  • TS140 Second HD (non-Lenovo) not seen until after boot

    I have a TS140 (70A4001MUX), which came with a 500 GB HD. I installed Win7Pro x64, replaced the 4GB RAM with 16 GB of Crucial RAM, and added a second HD (4 TB Western Digital Enterprise WD4000F9YZ). Both HDs are configured GPT, I am booting via UEFI, and the latest firmware (99A) is installed.
    This configuration mostly works, except that the second HD isn't visible until after booting. It does not appear in BIOS, which means I cannot boot from it. I have a boot partition on the second HD, cloned from my primary boot partition via Casper software. Normally, this provides me an alternative boot in case of drive failure or corruption on the first HD. But, on the TS140, attempting this alternative boot fails completely, as though the second drive were not there at all. Once I'm booted, though, I can read and write to the second HD all day long. Fwiw, all 16 GB of the new RAM does appear in BIOS.
    The second HD:
    Does NOT appear in BIOS.
    Does appear after boot to Windows 7.
    Does appear when booted from CD, such as WinPE and Paragon boot CD.
    Why won't BIOS recognize the second drive, that is clearly present and functional? Thanks for any thoughts and suggestions.

    Do you see the same behavior on a cold boot and a powered-up reboot?
    Since I'm not familiar with ThinkServers, I'm just tossing stuff at the wall here, but I wonder if the new drive is slow to initialize and BIOS is not waiting long enough to detect it.  Cold boot and reboot might behave differently in that case.  Not sure how to fix that if it is the problem, but it might help to narrow things down.
    [edit]  There is a hard disk pre-delay option in BIOS.  Not quite sure if it's intended for this situation (the one my WAG applies to) but might be worth a try.
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Calender Icon do not change until phone restart

    My calender icon do not change the date everyday and until i restart the phone the calender icon just will change to the current date. Did anyone have the same problem too? I am currently using iPhone 4 running 5.1.1 firmware.

    Hmm...
    I do not have that issue. iOS 5.1.1, iPhone 4S.
    Try resetting:
    Hold the home and power buttons at the same time until the Apple boot logo appears. No data will be lost.

  • VNC - remote computer now not discoverable until after log in

    I've been using Chicken of the VNC on a G4 laptop (OSX 10.4.7) to control a headless Intel Mac Mini. It's worked great so far. Through VNC I could log in to the Mini and get going.
    But I just updated the Mini to Intel 10.4.7 and iTunes 7 and now the Mini is not discoverable by Chicken until after I log in to the Mini. I had to connect a monitor and keyboard to do this, which entirely goes against the point of the headless Mini.
    I have Remote Desktop turned on on the Mini and I'm also now running OSXVNC. Either through OSXVNC or Apple's remote desktop server the Mini cannot be found by Chicken until I log in to the Mini.
    Is there another setting in the OS that will allow a remote computer to log in using VNC? What would have changed here?
    Thanks!

    Hi,
    I was facing the same issue and contacted Apple support.
    They told me to perform the following 2 actions.
    OS X Mavericks: Reset your computer's PRAM 
    Intel-based Macs: Resetting the System Management Controller (SMC)
    After resetting the PRAM, I did not notice any change, but resetting the SMC solved the problems.
    Please also try.
    Daniel

  • My MBP will not start up after restart

    My MBP (late 2011 running 10.8.something - receintly updated) will not start up after I had to do a restart to install Blackberry Desktop software (for my wife, I promise).  It chimes, gets past the grey screen with the Apple logo and then just sits on the login screen but with the background only, no account or anything.  My mouse pointer is there and moves but nothing else.  Anyone have any idea?

    Reboot holding the Shift key down on a wired or built in keyboard, this is Safe Mode and will disable the at boot kernel extension file that Blackberry installed.
    When you get in uninstall the software using their uninstaller. Then reboot normally again, visit their website for a update if there is one.
    Blackberry/RIM software has been causing issues around here lately.
    If your machine refuses to boot normally again, then run through this list 1-8,, by #8 your machine should be booting normally again.
    Step by Step to fix your Mac

  • Participant assigned roles not refreshed until they log to workspace

    Hi !
    We are using Oracle BPM 10.3.1 with latest hotfix with Hybrid LDAP eDirectory 8.8 SP5 (supported).
    If we restart the engine and ask via java or pbl for participants with a specific role, the query does not returns info. But if those users start to login to their workspaces, the query starts to include those participants in the result. One side problem of this, is that after every engine restart, users do not keep recieving mail notifications about the processes they are in, until they login to their workspace at least once.
    Any clues ? This is happening since we made this installation. We recently installed last hotfix, but the problem persists.
    Many thanks in advance.
    Regards,
    Matias.

    After applying SP12 in the portal landscape (EP 6.0), the role transports only work in our test environment, but not in production.  Even the manual corrections suggested in OSS note 1002832 didn't help.  I can preview all the iviews in the roles with my user id (admin id), but as soon as I log-in with the end user id nothing shows up [Not even the top level navigation tabs show up].  The following is the portal authorization methodology I chose.
    1. I assign users to the user groups
    2. I assign user groups to the roles
    I want to emphasize that all is well in our test environment, it is the production environment that shows inconsistency.  Let me know if anyone has any pointers.

  • Can not refresh ValueObject after altering database table

    Hello All,
    In FB4, in order to refresh a service, I used to
    - select a service operation
    - select configure return type
    - select auto-detect
    - hit next and on the follow page select the existing ValueObject
    ...it would update.
    As far as I can see, this does not work in FB4.5.  Instead, after selecting auto-detect and clicking next:
    There was an error while invoking the operation. Check your operation inputs or server code and try invoking the operation again.
    Reason: Warning: mysqli_stmt_bind_result(): Number of bind variables doesn't match number of fields in prepared statement in...
    Is there a way to refresh a ValueObject.  Clicking refresh is a no go.
    Thanks for your help!
    J

    hey jay.  did you ever figure out how to update your valueObject?  I just posted a similar discussion "changing php-service in FD breaks AS3 service class and valueObjects" here: http://forums.adobe.com/thread/882288
    maybe we'll get a reply....

Maybe you are looking for

  • Link to QT videos and display in media holder on same CF page

    I am using a learning object which I downloaded from Macromedia many years ago. The white paper which came with it was very usueful in parts but did not cover this problem. One of the interactions which I was never able to get to work as given was fo

  • Do not function

    hi. i've got a problem to upload my video in flash on my site. I've made a video flash with flash8 and I dont'n know how to put html code in my site page to load the video and I' don't know how save the video in "swf" instead "fla". Thaks.

  • How do I add a watermark to my photo in Elements 8?

    Please give me step by step instructions on how to add a watermark in Elements 8 Thanks

  • Different measures use same source column but gives different values in SSAS project

    I've inherited a SSAS project. I'm currentlig gaining knowledge, but do not understand this: There are 4 measures that get data from same source table and column. Example measures: [Started] [Processing] [Processed] [Finished] All of them gets data f

  • How to hide either the File menu or the Save button.

    Hello.  Recently we upgraded Adobe Reader from 8.0 to 9.0 on our kiosks and we are having a problem.  We used to be able to hide the save button when viewing a PDF file on a web page through a javascript inside the javascripts folder.  However, while