Serious Issue CRM5.2: Lost Header Global Functions (HDRGLOBALFUNCTIONS)

Client wanted 4 links on the top right screen removed. I did it via SPRO-CRM-Business Roles-Define Navigation Frame. We have 3 layout profiles. In CRM Master layout I unchecked box Global Func Disp El = HDRGLOBALFUNCTIONS. And that did the trick.
Now they want to reverse the links back . I did the same thing just checked the box but nothing. No links no logos nothing in the upper bar. Anyone please suggest what can be a problem.

hi,
Try removing cookies and relogging again.
Thanks and regards
Pankaj Kumar

Similar Messages

  • I am having serious issues trying to alter my old iCloud account with an old non-functioning email to my new apple id with a new email address. The message keeps coming up on all my apple products with my old email (which is not available anymore).

    I am having serious issues trying to alter my old iCloud account with an old non-functioning email to my new apple id with a new email address. The message keeps coming up on all my apple products with my old email (which is not available anymore).

    I have the same problem - it is maddening. I rely on this iPad for work so this is not just an annoyance! The above solutions of changing the appleid on the device or on the website do not work.
    The old email address no longer exists - I haven't used it in a year probably and I no longer have the account.  I logged into the appleid website and there is no trace of the old email address so there is nothing that can be deleted or changed there.  On the iPad there is no trace of the old email address so nothing can be deleted there either. I have updated the iPad software and the same problem comes right back.  Every 2 seconds I am asked to log in using the old non-existent email.  The device is currently useless.
    The only recent change to anything was the addition of an Apple TV device, which was set up using the correct login and password.
    Does anyone have any ideas? The iPad has been backed up to the iCloud so presumably it now won't recognize the current iCloud account? So restoring may notbe an option?

  • _global variable lost outside of function?

    Vexing riddle: why are my global variables undefined outside
    of the functions that use them?
    Loading XML file and creating arrays from the child nodes.
    Like this:
    var modules:Array = this.firstChild.childNodes;
    _global.moduleContents = new Array();
    for (var i = 0; i<modules.length; i++) {
    _global.moduleContents.push(modules
    .attributes.contents);
    then I have another function that recursively extracts each
    index from _global.moduleContents array and pushes them into a
    _global. pageContents array. (see attached code)
    I made sure to use _global. in front of all global variables.
    The code workd flawlessly in itself. I am able to trace the whole
    array or single array indices from within the functions.
    But they are undefined outside of the functions! I checked to
    make sure there is no local variable of the same names - in every
    case I use _global before the variable name.
    The crazy part of it is I tried testing some simple functions
    with global variables in a new movie to understand the scope issues
    and they worked fine!
    function messages() {
    _global.greetings = ["hello", "hi", "how are you?"];
    function sayHi() {
    _global.greetings.push("how goes it?");
    sayHi();
    messages();
    trace("this is outside: "+_global.greetings);
    Why not in this:

    Gotcha, what is happening is that you call a loading script
    that basically works in the background of other scripting
    operations, you can call multiple load actions and they will all
    execute at the same time, because you have your trace call after
    the load action and you are not waiting for that file to be loaded
    you are getting an 'undefined' var.
    You may want to put something in at the end of all of your if
    (success) statements like
    _global.docstructureLoaded = true;
    checkLoadStatus();
    then say this on your next load function;
    _global.pageContentsLoaded =true;
    checkLoadStatus();
    then in your root area
    checkLoadStatus(){
    if(_global.pageContentsLoaded==true && .... ){
    //when all your loads are done do this ...
    Just to make sure that you arn't calling any other functions,
    or moving your timeline ahead before your data gets to the right
    place.

  • W540 + Ultra docks = big serious issue

    Hello everyone, We recently ordered 30+ x240s and w540 laptops using the ultradocks. Here's the prequel
    1. initially they had the issue with monitors going blank, that has been fixed with a firmware update
    2. there was a second firmware update ver 2.21 that fixes some issues with HP monitors. Ok , done.
    Ok now all is well, we have the x240s on the docks and w540s with their docks + the 175w powersupply supplies etc.
    Now we have users that wanted 27inch and some 30 inch monitors and a big big problem comes up.
    The docks cannot drive anything higher then those 24inch monitors (1920x1200). the 27 inch (2560x1440) and the 30inch (2560x1600) does not work AT all.
    it does not work with even ONE of those monitors hooked into the dock not speaking of the 2 that users wanted.
    So w540+ultra dock + 1 27/30 inch monitor = nothing, blank screen, go to display settings and it detects a grey option
    Now, the w540 without the ultra dock and hooked directly into a 27/30 inch monitor = no problem, we have full functionality.
    We have tried every combination to try to get it to work and it's a no go.
    Researched the dock's DVI port and see if we can possibly use that, nope, the DVI is only single link so our only option are the 2 display ports on the dock.
    Of course those don't work at all. We have opened a ticket with lenovo and it's been escalated, awaiting responds.
    This maybe a serious issue I am seeing here since we have 30+ docks and more coming. (yes we have tested on them all and their firmwares are 2.21)
    Anyways, if anyone has run into this please confirm. Suggestions are welcome, but I am sure we have tried just about everything.
    Thanks Everyone, J

    I was able to connect a W540 to an Ultra Dock (170W) in "Standard" mode and then get an external monitor working at a resolution of 3840 x 2160. The monitor is a Samsung U28D590D connected via the DisplayPort on the docking station. Note that "Advanced" mode was very unstable, and often crashed within a few minutes. Standard mode works when connected via DisplayPort but would also crash instantly and repeatedly if connected via HDMI.
    Tested with a variety of bios, firmware and driver versions. Including System BIOS v2.17 & v2.18. Docking station firmware v2.22 and multiple Intel and NVIDIA driver versions. None worked with HDMI or in Advanced mode. Hopefully this gets fixed at some point.

  • Child.swf to pass two variables to parent in global function

    Hi, I have a parent.swf and wish to load a varying child.swf as a sub-menu. How do I establish a global function that will allow the child.swf to pass back two variables (storyName & storyType) to the parent and kick off a task.
    The submenu (swf) items will change so I cannot explicitly add a listener to a child.button. The submenu is on a children’s library so will have numerous graphics and movieclips included so I don’t think it would be suitable to simply call xml data to build a menu at runtime (at my level of knowledge). There will be a number of child.swf depending on books available.
    I am not familiar with package { and public class { etc...
    In as2 I would have used a _global.function() and used that to pass the variables back to the parent and then start a parent.action.
    Totally new to AS3, suggestions appreciated. I have no problem loading the child.swf.

    Hi Ned, thank you for your response. I don’t know if it is relevant, but the container clip is run via AIR. That seems to affect some things as I’ve lost fullscreen functionality somewhere.
    I tried you suggestions, if I have translated it into place correctly I don’t know. Do I need to treat the parent.parent as a variable (yes this one is done via a loader) ?
    I get an error if I leave the function call open, I can tell I’m getting into the call as the trace on each side is happening.
    In the External Movie:
    blob_b.addEventListener(MouseEvent.CLICK, ms_bF);
    function MbRemEL(nameof:String):void {
                blob_b.removeEventListener(MouseEvent.CLICK, ms_bF);
    function ms_bF(event:MouseEvent):void {
                var m_ar:Array = new Array();
                m_ar=event.target.name.split("_");
                MbRemEL("r");
                trace("StoryMenu: "+event.target.name);
                if (this.parent.parent != null){
                            MovieClip(parent.parent).story = event.target.name;
                            //MovieClip(parent.parent).gcr(event.target.name);
                             // = TypeError: Error #1006: gcr is not a function.
                            MovieClip(parent.parent).gotoAndStop("g_home");                   
    In Container Movie:
    function gcr(stry:String):void{
                trace("gcr: "+stry);

  • Where to put javascript as global function

    Hi,
    Most of threads i read (which have simple javascript codes), the codes are written in 'HTML HEADER' on each pages and later can be call by items or else. If i have the same javascript but is used by many pages, so far my understanding is i have to duplicate the code on each pages. So my question is, where can i write the javascript in apex so it can be called by many pages ? ('Global' function).
    Thanks
    Gamez

    Hello,
    It looks like your confusing a couple concepts.
    Oh i see, i thought theres something like 'Application Process' where people can put some code inside.If your build AJAX functionality the easiest way to do it in APEX is using PL/SQL code in Application OnDemand Process.
    Andy, since i also totally new in java, what SIMPLE tool to use for compiling the script ? (need to compile?).In APEX you don't use java you use javascript and you don't need a compiler. Since your just starting out with javascript you should spend an hour or two at this site [http://www.w3schools.com/JS/default.asp]. It will save you countless hours in the future and is applicable in any web development environment.
    Martin, i'v created Page 0, but i dont see any place to put the javascript inside the page. Theres no kinds of HTML Header/Footer/Body where i can put it.So to your main question what is the best place to put a global javascript. There are four answers and I will put them in order from best to worse.
    1. In an external javascript file included in you page template between the head tags.
    2. In an external javascript file included in Page 0, put it in a HTML Region with No Template in the After Header region position.
    3. In an inline script section in the page template between the head tags.
    4. In an inline script section in the page template between the head tags in Page 0, put it in a HTML Region with No Template in the After Header region position.
    PS. I'm not kidding about the w3schools link it will save you hours!
    Regards,
    Carl

  • HELP: SERIOUS ISSUES WITH BILLING

    I have had serious issues with BT since joining their service. Without getting into the issues we had with the BT homehub and other things at the start of the contract with them here is what's been happening. 
    When we joined BT we explained that we wanted a monthly direct debit. Sounds simple enough but apparently not. 
    I have phoned over 6 times in the last year to change this. It has still not happened. Several times we were told that on the system it said monthly for it to be then taken out quarterly. In July while we were away this happened again. Only as we assumed that as they had informed us it would definitely be on monthly direct debit that it was the money for the whole of the quarter was not there. So when they took the money for a quarterly bill again. We were charged. It has set back other bills as the money had been eaten up by charges for this. As you can imagine we were quite annoyed. This was not our fault and we felt that BT were not capable of holding our account details without taking money they we repeatedly requested not to. I admit we should have kept a closer eye on our bills account but you don't think that a company will repeatedly do this to you. 
    After phone calls it emerged that they would not say more than a 'sorry' about this. 
    The saga then continued. I cancelled the quarterly direct debit at the back and have asked BT to send me monthly paper bills. Then last month our phone and internet was cut off. 
    We rang up and suggested that due to the mix up could they add the money we owed to our monthly bills and we'd pay this off on top of the monthly bill. Despite that the reason we owe this at all is not through any fault of our own but through theirs. The money would have been available had they taken it as repeatedly requested.
    We were on the phone for 1hr and 10 mins ( 21st September) to three different people. No, they said  must be paid in 10 day. My partner only managed to get money off this in about an hour - the point being we were happy to pay the whole amount over a year and were not allowed. We asked to speak to a manager after 1hr and 10 and were put back to the start of the queue. 16 minutes later the man we spoke to said a manager named Samantha would call us back. No-one did. 
    On the 22nd of september a rather annoyed me called back and repeatedly requested a manager - sadi would be put though. After 17 minutes the phone went dead. 
    Called later on same thing phone went dead after requesting a manager at 10 minutes.
    Later on called for 28 minutes and told the call centre the issue £20 deducted from amount but said it had to be paid in ten days and a  bill would be sent. Was told that the internet would be reconnected that day. 
    23rd September was hung up on after thre minutes on requesting why the internet had not been connected.
    Phoned later. The man that I spoke to said that no action had been put through to reconnect the internet. He would do it and it would be through by 5pm.
    My partner phoned at 8pm when the internet still had not been reconnected. It was done the next day. 
    Today BT phoned to ask if I had the bill ( Not sent) and tell me that the line will be disconnected by the end of the day. i explained that we were in the middle of complaints procedures with them. She looked on the system and said that there were no notes on the account. I asked for a manager and then asked for this managers superior. She put me through to someone that when questioned was not her superior and half way through my explanation of this....you guessed it..... the line went dead. 
    I am so annoyed that we've been fine with bill paying and as of their mistake we're now in debt to them and feel like we can't sort it out as there is not anyone who will listen or help. Has anyone had similar probelms or does anyone have a number for their English call centre?
    Jess

    hi Jess,
    I am really sorry that you have had so much trouble trying to get this sorted out.  I'll get this straightened out.
    Could you drop me in an email please to the address in my profile with your BT account and telephone number along with a link back to this thread.
    Cheers
    Craig 
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Serious issues with "Mingler"

    There are many articles about "Mingler", but I cannot believe that Apple does not solve this serious issue/bug. It can really take down your laptop: memory, CPU and battery. What can I do to make this come up in front of Apple, as a serious enough issue for them to address?

    6/13/13 9:27:04.039 PM Mingler[2047]: [0x7ffeb3403800] |ISDException|Error| *** SyncServices Exception
    Type                 : ISDSQLiteTimeoutReachedException
    Reason               : error executing 'pragma synchronous=normal': 5 (database is locked)
    Database Path        : <unknown>
    Database Access Mode : Locked
    Open SQLite Files    :
              */Library/Application Support/SyncServices/Local/TFSM/com.apple.Calendars/data.syncdb
              */Library/Application Support/SyncServices/Local/clientdata/1e11da60e580da2b947cd4f732856f1fe48006c7/ recordids.synciddb
    Stack Trace          :
              0   SyncServices                        0x00007fff83ad904c _ISDSQLiteBlowOut + 1107
              1   SyncServices                        0x00007fff83a3b480 sqliteExecuteWithCallbackAndOptions + 556
              2   SyncServices                        0x00007fff83a3b229 -[ISDDatabase(SqliteHelpers) execute:] + 207
              3   SyncServices                        0x00007fff83a3aebb -[ISDDatabase openDatabaseAtPath:] + 260
              4   SyncServices                        0x00007fff83a3ad33 -[ISDDatabase initWithDatabaseAtPath:] + 156
              5   SyncServices                        0x00007fff83a4f231 -[ISDRecordIdMapDatabase initDatabaseAtPath:] + 166
              6   SyncServices                        0x00007fff83a4f050 -[ISDSqliteRecordIdMapper initRecordIdMapperInDataDirectory:] + 174
              7   SyncServices                        0x00007fff83a4ef75 +[ISDSqliteRecordIdMapper recordIdMapperInDataDirectory:] + 230
              8   SyncServices                        0x00007fff83a4ee22 -[ISDClientState recordIdMapper] + 60
              9   Mingler                             0x0000000103b040a7 Mingler + 77991
              10  Mingler                             0x0000000103b04ed3 Mingler + 81619
              11  Mingler                             0x0000000103b03ed8 Mingler + 77528
              12  Mingler                             0x0000000103af371f Mingler + 10015
              13  Foundation                          0x00007fff8e35dcd2 __NSThread__main__ + 1345
              14  libsystem_c.dylib                   0x00007fff830e77a2 _pthread_start + 327
              15  libsystem_c.dylib                   0x00007fff830d41e1 thread_start + 13
    6/13/13 9:27:04.041 PM Mingler[2047]: [0x7ffeb3403800] |ISDDatabase|Error| Failed to open database at path /Users/dcazacu/Library/Application Support/SyncServices/Local/clientdata/1e11da60e580da2b947cd4f732856f1fe48006c7/ recordids.synciddb. Reason:
    *** SyncServices Exception
    Type                 : ISDSQLiteTimeoutReachedException
    Reason               : error executing 'pragma synchronous=normal': 5 (database is locked)
    Database Path        : <unknown>
    Database Access Mode : Locked
    Open SQLite Files    :
              */Library/Application Support/SyncServices/Local/TFSM/com.apple.Calendars/data.syncdb
              */Library/Application Support/SyncServices/Local/clientdata/1e11da60e580da2b947cd4f732856f1fe48006c7/ recordids.synciddb
    Stack Trace          :
              0   SyncServices                        0x00007fff83ad904c _ISDSQLiteBlowOut + 1107
              1   SyncServices                        0x00007fff83a3b480 sqliteExecuteWithCallbackAndOptions + 556
              2   SyncServices                        0x00007fff83a3b229 -[ISDDatabase(SqliteHelpers) execute:] + 207
              3   SyncServices                        0x00007fff83a3aebb -[ISDDatabase openDatabaseAtPath:] + 260
              4   SyncServices                        0x00007fff83a3ad33 -[ISDDatabase initWithDatabaseAtPath:] + 156
              5   SyncServices                        0x00007fff83a4f231 -[ISDRecordIdMapDatabase initDatabaseAtPath:] + 166
              6   SyncServices                        0x00007fff83a4f050 -[ISDSqliteRecordIdMapper initRecordIdMapperInDataDirectory:] + 174
              7   SyncServices                        0x00007fff83a4ef75 +[ISDSqliteRecordIdMapper recordIdMapperInDataDirectory:] + 230
              8   SyncServices                        0x00007fff83a4ee22 -[ISDClientState recordIdMapper] + 60
              9   Mingler                             0x0000000103b040a7 Mingler + 77991
              10  Mingler                             0x0000000103b04ed3 Mingler + 81619
              11  Mingler                             0x0000000103b03ed8 Mingler + 77528
              12  Mingler                             0x0000000103af371f Mingler + 10015
              13  Foundation                          0x00007fff8e35dcd2 __NSThread__main__ + 1345
              14  libsystem_c.dylib                   0x00007fff830e77a2 _pthread_start + 327
              15  libsystem_c.dylib                   0x00007fff830d41e1 thread_start + 13
    6/13/13 9:27:04.186 PM SyncServer[2044]: [0x7ffee2c0bdf0] |Server|Warning| Mingler finished because it encountered an exception: *** SyncServices Exception
    Type                 : ISDSQLiteTimeoutReachedException
    Reason               : error executing 'pragma synchronous=normal': 5 (database is locked)
    Database Path        : <unknown>
    Database Access Mode : Locked
    Open SQLite Files    :
              */Library/Application Support/SyncServices/Local/TFSM/com.apple.Calendars/data.syncdb
              */Library/Application Support/SyncServices/Local/clientdata/1e11da60e580da2b947cd4f732856f1fe48006c7/ recordids.synciddb
    Stack Trace          :
              0   SyncServices                        0x00007fff83ad904c _ISDSQLiteBlowOut + 1107
              1   SyncServices                        0x00007fff83a3b480 sqliteExecuteWithCallbackAndOptions + 556
              2   SyncServices                        0x00007fff83a3b229 -[ISDDatabase(SqliteHelpers) execute:] + 207
              3   SyncServices                        0x00007fff83a3aebb -[ISDDatabase openDatabaseAtPath:] + 260
              4   SyncServices                        0x00007fff83a3ad33 -[ISDDatabase initWithDatabaseAtPath:] + 156
              5   SyncServices                        0x00007fff83a4f231 -[ISDRecordIdMapDatabase initDatabaseAtPath:] + 166
              6   SyncServices                        0x00007fff83a4f050 -[ISDSqliteRecordIdMapper initRecordIdMapperInDataDirectory:] + 174
              7   SyncServices                        0x00007fff83a4ef75 +[ISDSqliteRecordIdMapper recordIdMapperInDataDirectory:] + 230
              8   SyncServices                        0x00007fff83a4ee22 -[ISDClientState recordIdMapper] + 60
              9   Mingler                             0x0000000103b040a7 Mingler + 77991
              10  Mingler                             0x0000000103b04ed3 Mingler + 81619
              11  Mingler                             0x0000000103b03ed8 Mingler + 77528
              12  Mingler                             0x0000000103af371f Mingler + 10015
              13  Foundation                          0x00007fff8e35dcd2 __NSThread__main__ + 1345
              14  libsystem_c.dylib                   0x00007fff830e77a2 _pthread_start + 327
              15  libsystem_c.dylib                   0x00007fff830d41e1 thread_start + 13
    6/13/13 9:27:04.197 PM iCalExternalSync[2042]: [0x7fcdd9c0e580] |ISyncSession|Warning| com.apple.iCal: transitioning to cancel - session cancelled by server: SyncServer failed to merge the changes from some clients: ISDSQLiteTimeoutReachedException *** SyncServices Exception
    Type                 : ISDSQLiteTimeoutReachedException
    Reason               : error executing 'pragma synchronous=normal': 5 (database is locked)
    Database Path        : <unknown>
    Database Access Mode : Locked
    Open SQLite Files    :
              */Library/Application Support/SyncServices/Local/TFSM/com.apple.Calendars/data.syncdb
              */Library/Application Support/SyncServices/Local/clientdata/1e11da60e580da2b947cd4f732856f1fe48006c7/ recordids.synciddb
    Stack Trace          :
              0   SyncServices                        0x00007fff83ad904c _ISDSQLiteBlowOut + 1107
              1   SyncServices                        0x00007fff83a3b480 sqliteExecuteWithCallbackAndOptions + 556
              2   SyncServices                        0x00007fff83a3b229 -[ISDDatabase(SqliteHelpers) execute:] + 207
              3   SyncServices                        0x00007fff83a3aebb -[ISDDatabase openDatabaseAtPath:] + 260
              4   SyncServices                        0x00007fff83a3ad33 -[ISDDatabase initWithDatabaseAtPath:] + 156
              5   SyncServices                        0x00007fff83a4f231 -[ISDRecordIdMapDatabase initDatabaseAtPath:] + 166
              6   SyncServices                        0x00007fff83a4f050 -[ISDSqliteRecordIdMapper initRecordIdMapperInDataDirectory:] + 174
              7   SyncServices                        0x00007fff83a4ef75 +[ISDSqliteRecordIdMapper recordIdMapperInDataDirectory:] + 230
              8   SyncServices                        0x00007fff83a4ee22 -[ISDClientState recordIdMapper] + 60
              9   Mingler                             0x0000000103b040a7 Mingler + 77991
              10  Mingler                             0x0000000103b04ed3 Mingler + 81619
              11  Mingler                             0x0000000103b03ed8 Mingler + 77528
              12  Mingler                             0x0000000103af371f Mingler + 10015
              13  Foundation                          0x00007fff8e35dcd2 __NSThread__main__ + 1345
              14  libsystem_c.dylib                   0x00007fff830e77a2 _pthread_start + 327
              15  libsystem_c.dylib                   0x00007fff830d41e1 thread_start + 13
    6/13/13 9:27:04.199 PM iCalExternalSync[2042]: [ICalExternalSync ]The sync server failed to let client Calendar pull changes
    6/13/13 9:27:15.534 PM SyncServer[2044]: [0x7ffee2c0bdf0] |SyncPlan|Warning| Mingle failed for clients com.apple.iCal
    6/13/13 9:27:15.629 PM syncuid[2052]: [0x7ff0aa40c690] |SSUID|Warning| Database was copied to /Users/dcazacu/Library/Application Support/SyncServices/Local.Thu-2013-06-13-21-27-04 and rebuilt. Reason:
    *** SyncServices Exception
    Type                 : ISDSQLiteTimeoutReachedException
    Reason               : error executing 'pragma synchronous=normal': 5 (database is locked)
    Database Path        : <unknown>
    Database Access Mode : Locked
    Open SQLite Files    :
              */Library/Application Support/SyncServices/Local/TFSM/com.apple.Calendars/data.syncdb
              */Library/Application Support/SyncServices/Local/clientdata/1e11da60e580da2b947cd4f732856f1fe48006c7/ recordids.synciddb
    Stack Trace          :
              0   SyncServices                        0x00007fff83ad904c _ISDSQLiteBlowOut + 1107
              1   SyncServices                        0x00007fff83a3b480 sqliteExecuteWithCallbackAndOptions + 556
              2   SyncServices                        0x00007fff83a3b229 -[ISDDatabase(SqliteHelpers) execute:] + 207
              3   SyncServices                        0x00007fff83a3aebb -[ISDDatabase openDatabaseAtPath:] + 260
              4   SyncServices                        0x00007fff83a3ad33 -[ISDDatabase initWithDatabaseAtPath:] + 156
              5   SyncServices                        0x00007fff83a4f231 -[ISDRecordIdMapDatabase initDatabaseAtPath:] + 166
              6   SyncServices                        0x00007fff83a4f050 -[ISDSqliteRecordIdMapper initRecordIdMapperInDataDirectory:] + 174
              7   SyncServices                        0x00007fff83a4ef75 +[ISDSqliteRecordIdMapper recordIdMapperInDataDirectory:] + 230
              8   SyncServices                        0x00007fff83a4ee22 -[ISDClientState recordIdMapper] + 60
              9   Mingler                             0x0000000103b040a7 Mingler + 77991
              10  Mingler                             0x0000000103b04ed3 Mingler + 81619
              11  Mingler                             0x0000000103b03ed8 Mingler + 77528
              12  Mingler                             0x0000000103af371f Mingler + 10015
              13  Foundation                          0x00007fff8e35dcd2 __NSThread__main__ + 1345
              14  libsystem_c.dylib                   0x00007fff830e77a2 _pthread_start + 327
              15  libsystem_c.dylib                   0x00007fff830d41e1 thread_start + 13
    6/13/13 9:27:15.839 PM SyncServer[2044]: [0x7ffee2c0bdf0] |Server|Warning| lost connection 0x7ffee3c02e00 to com.apple.iCal
    6/13/13 9:28:16.988 PM SyncServicesAgent[316]: [0x4423ab0] |ISyncSessionDriver|Error| Caught top level exception: Session <ISyncConcreteSession: 0x8512690> cancelled. lost connection to SyncServer Stack trace: (0x9895be7f 0x9285252e 0x9895bd31 0xb14da 0xc6c76 0x161aa2 0x15d768 0x15d815 0x945107c8 0x9451074b 0x96c865b7 0x96c70d4e)
    6/13/13 9:29:18.539 PM mdworker[2057]: Unable to talk to lsboxd
    6/13/13 9:29:18.661 PM sandboxd[2058]: ([2057]) mdworker(2057) deny mach-lookup com.apple.ls.boxd
    6/13/13 9:29:19.000 PM kernel[0]: Sandbox: sandboxd(2058) deny mach-lookup com.apple.coresymbolicationd
    6/13/13 9:30:52.479 PM com.apple.usbmuxd[60]: _heartbeat_failed heartbeat detected detach for device 0x72-192.168.1.10:0!
    6/13/13 9:35:14.817 PM com.apple.usbmuxd[60]: _heartbeat_failed heartbeat detected detach for device 0x73-192.168.1.3:0!
    6/13/13 9:37:20.188 PM mdworker[2070]: Unable to talk to lsboxd
    6/13/13 9:37:20.309 PM sandboxd[2071]: ([2070]) mdworker(2070) deny mach-lookup com.apple.ls.boxd
    6/13/13 9:37:20.000 PM kernel[0]: Sandbox: sandboxd(2071) deny mach-lookup com.apple.coresymbolicationd
    6/13/13 9:38:29.713 PM com.apple.usbmuxd[60]: _heartbeat_failed heartbeat detected detach for device 0x74-192.168.1.3:0!
    6/13/13 9:39:21.481 PM mdworker[2074]: Unable to talk to lsboxd
    6/13/13 9:39:21.601 PM sandboxd[2075]: ([2074]) mdworker(2074) deny mach-lookup com.apple.ls.boxd

  • Serious Issues with Regions

    JDeb 11.1.1.3, Windows 7 x64
    I am finding serious issues in regions.
    I have a series of page fragments defined in a ADF task flow.
    When I change data in them the Commit does not reflect the change unless I go to another page and return (unacceptable for the client).
    When I programatically add records to a table, they are not shown - the table does not refresh - even with an execute button (which should re-execute the query and redisplay the table), unless I leave the jspx that contains the region (unacceptable).
    I have tried to requery, get the datacontol view object and requery it - I believe the data is updated - the table just will not show the data (not refreshing).
    on pages with forms - when I create a new record (CreateInsert) and add data - the save button never activates until you move to another page and back again.
    It looks like there are overall issues with the refresh functions in the region.
    maybe I am missing some "magic", but this should be simple - straight forward - using partialTriggers - as it is in any other jspx.
    Are these issues bugs or are there special considerations in regions for this.

    Read carefully the article "17.5. Refreshing an ADF Region" in the "Fusion Developer's Guide for Oracle ADF".
    It is not enough to set the partialTrigger attribute of the <af:region> tag in order to refresh the task flow. In order to refresh the task flow you should use the attributes "Refresh" and/or "RefreshCondition" of the taskflow binding in the corresponding PageDef.
    For example, if your taskflow has parameters and you want the taskflow to be refreshed if some of the parameters has been changed, then you should set <tt>Refresh="ifNeeded"</tt>.
    If your taskflow does not have any parameters then you can set <tt>Refresh="default" RefreshCondition="#{<some_EL_boolean_expression>}"</tt>. In this case the taskflow will be refreshed depending on the value of the specified boolean expression. For example, you can base the boolean expression on a managed bean property that is set by you to true whenever you want the taskflow to be refreshed.

  • Serious issues with ios8

    Serious issues with iPad 2 since updating to ios8. Have to keep restarting the iPad as it is the only way to connect to wifi again, battery drains quickly. Nothing works properly, things keep freezing etc. is there anyway to go back to ios7?

    Try some basic troubleshooting:
    (A) Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    (B) Try reset all settings
    Settings>General>Reset>Reset All Settings
    (C) Setup as new (data will be lost)
    Settings>General>Reset>Erase all content and settings

  • Non-English characters not displaying correctly - Serious Issue

    My corporate email is on a Lotus Domino server with Lotus Traveler installed.
    I have set my PlayBook (with OS 2) up to syncronize with the corporate email trough Active Sync (see http://alturl.com/qh3nn), which works perfectly.
    I have however noticed that in some emails special non-english characters are displayed correctly but in some emails special non-english characters are displayed as a black diamond with a question mark inside.
    This is of course a serious issue as most non English speaking countries use some special characters.
    When trying to understand this problem how can I analyse the emails and see what character set is being used?
    And of course better; has someone solved this?

    I am having the same problem. Is there any update available?

  • I am having some serious issues with firefox, i can't print anything because it is stuck on fax and I can't use any of the drop down menus on any site

    I am having some serious issues with firefox to the point of choosing another search engine. I can't print anything because it is stuck on fax and won't let me change it to my printer when i do try to select my printer it jumps right back to fax. The drop down menus do not work on any of the sites I go to. For example when purchasing clothes and you have to choose a size from a drop down menu I can't do it when I click on the drop down menu it doesn't work at all. I don't have a virus I ran my virus protector and no viruses are present. I don't have any suspicious issues going on with my computer so there has to be something in Firefox that is causing my issues. I tried internet explorer and I don't have any issues there. I hope you can help me because I love Firefox and would really like to continue to use it.

    Lots of issues there, main one getting fcpx going again, try deleting the preferences using the utility deveoped by these guys.
    http://www.digitalrebellion.com
    Try deleting your render files and re-rendering the project.
    Start with these and let us know how you go.
    Tony

  • Issue with Multivalue report parameters optional functionality

    I am using SSRS 2012 reporting services to develop my SSRS report. I came across that I cannot have multi-value parameters as optional. In a report I have 5 parameters and 3 parameters (Invoice Type, Markupcode, Accountnum has multivalue selection so user
    can select mutltiple accountnum or codes to get data). There is no option you can choose Allow null value. I went through various forums but unable to get worked. So I created this question. I am not doing any complex functionality, its very common functionality.
    In the past I have used various reporting tools and never came across this issue. so please help here. I appreciate all your kind help. thanks.
    Regards
    Nitin

    Hi Nitin,
    As per my understanding, it seems that you want to build a multi-value parameter including the NULL value. By default, when we configure the parameter with the two options: Allow null value and Allow multiple values, we will receive an error message. To
    work around this issue, we can use the ISNULL function to change null values to blank values (''). For more details, please refer to the following steps:
    1. Modify the dataset used to retrieve data for the tablix like below:
    SELECT id, invoiceType, markupCode, AccountNum FROM table WHERE ISNULL(invoiceType, '') IN (@InvoiceType)
    2. Modify the dataset used to retrieve values for @InvoiceType like below:
    SELECT DISTINCT ISNULL(invoiceType, '') AS invoice, ISNULL(invoiceType, 'NULL') AS InvoiceDescription FROM table
    3. Modify parameter @InvoiceType, check Allow blank values ('') and Allow multiple values check boxes. Change the available values: Value field: @Invoice, Label field: InvoiceDescription.
    The following screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • What program to use to repair a hard disk with "serious" issues?

    Norton Disk Doctor that came preloaded on my G3 iBook found some "serious issues" that must be repaired with Disk Doctor on CD-ROM. When I go to Symentec website to order Disk Utility Software on CD-ROM, I find only such utility software avilable for PC.
    Apple Disk Utility also found that this hard disc needs to be repaired, but the Repair button is not active, even when I restart the computer with OS X CD-ROM.
    Any suggestions, please?
    iBook G3   Mac OS X (10.1.x)  

    Hi, and welcome to Apple Discussions.
    Try starting up in Single-User Mode and running fsck. (File system check.)
    At the command-line prompt, type /sbin/fsck -fy
    Press Return. fsck will go through five "phases" and then return information about your disk's use and fragmentation. Once it finishes, it'll display this message if no issue is found:
    ** The volume (nameofvolume) appears to be OK
    If fsck found issues and has altered, repaired, or fixed anything, it will display this message:
    *** FILE SYSTEM WAS MODIFIED ***
    Important: If this message appears, repeat the fsck command you typed in step 2 until fsck tells you that your volume appears to be OK (first-pass repairs may uncover additional issues, so this is a normal thing to do).
    When fsck reports that your volume is OK, type reboot at the prompt and then press Return.
    Your computer should start up normally and allow you to log in.
    This allows you to repair the drive without the CD or third-party software. If after multiple tries with fsck, errors remain, post back and we will explore other possible solutions.
    (Note: Information in this post is from Apple Knowledge Base article #106214.)

  • Using User Defined Global Functions

    Hi,
    I am implementing Error Handling in a package. The logic goes like this:
    If the call to the first interface fails, KO will call the error proc using which error message is extracted, written to a file and an email notification is sent.
    The code given below is written in the procedure.
    OdiOutFile -FILE=E:\OraHome_2\oracledi\demo\Assignmnt\ErrorLog.log
    ErrMesg:'<%=odiRef.getPrevStepLog("MESSAGE")%>'
    Now i need to implement this using a global function which can be used across interfaces to implement error handling.
    i want to club the code used above with sending an email notification.
    Can anyone pls guide me if i my approach is correct and how this approach can be implemented using Global Function?
    Thanks.
    Edited by: RitikaS on Dec 18, 2009 2:19 AM

    Hi Ritika,
    Can i suggest a method?
    Build a package, define your interface flow, from the KO (failure) of every interface call OdiSendMail.
    In the OdiSendMail define all the parameters like Mail Server,From, To, Subject and in the message body paste the below code,
    Previous step <%=odiRef.getPrevStepLog("STEP_NAME")%> with session number <%=odiRef.getPrevStepLog("SESS_NO")%> failed with the error message
    *<%=odiRef.getPrevStepLog("MESSAGE")%> .*
    Please look into the operator for more details.
    So what ODI will do is, it will send a notification to the recipient with the error message ,interface name and session number.
    Sample :
    Previous step INT_LOAD_AGE with session number 1822124 failed with the error message
    17002 : null : java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:361)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:595)
         at com.sunopsis.sql.SnpsConnection.u(SnpsConnection.java)
         at com.sunopsis.sql.SnpsConnection.c(SnpsConnection.java)
         at com.sunopsis.sql.i.run(i.java)
    Please look into the operator for more details.
    Makes sense?
    http://img259.imageshack.us/img259/1704/screenshot003.jpg
    P.S: Please do close your threads accordingly assigning points (Helpful/Correct) to make experts to help you eagerly.
    Thanks,
    Guru

Maybe you are looking for

  • Error in pl/sql  block with parameters

    Hi, I have the following code which works in normal cursor forloops, Can some one please check how to achive the same functionality using bulk insert.( i want to use parameterised cursor) step 1 ---working declare CURSOR DEPT_inst is select d.deptno

  • Save as EPS without Artboard - Extendscript on CS4

    Hi, I have a Javascript (Extendscript actually) to resave hundreds of single-artboard EPS files with specific settings using EPSSaveOptions. E.g., I set the Preview to be BWTiff. It works fine except that I can't find a way to save the artwork only w

  • Migration objects from 3.5 to 7.0

    Hello experts, if in an upgrade scenario I decide to mantain in 3.5 version some objects (infosources, update rules, etc.), when I decide to migrate them to BI 7.0 version, and I do it in development environment, there is the possibility to transport

  • How to make rollovers?

    Hello everyone. I'd like some help creating rollovers out of a picture in iweb and how can I change the color of the hyperlinks and get rid of the underline in the word, when you mouse over a word. I know they are actually two questions, thank you fo

  • ZHT16DBT - UNICODE convertion in JAVA

    Please help me how to make string convertion between different code. I have a database in ZHT16DBT code. How to convert the ZHT16DBT code to UNICODE in Java when doing any query statement from that database. the following is the code i tried, but not