Invalid BitmapData Error #2015

I'm getting an Invalid BitmapData Error #2015 at
flash.display::BitmapData$iinit() that points to the line
of code below where a BitmapData object is created.
I am using this function to create only a few hundred
Item objects, each of which is only 166 px by 96 px in
size so I don't believe that the problem has to do with
running out of memory. I also used system.totalMemory
to trace memory consumption but it showed that only
a few tens of megabytes were used when the error occurred.
I have tried setting the BitmapData and Bitmap
objects to null because that was a solution I found on another
site. That didn't work. I tried dispose(). The error
occurs intermittently, sometimes after running my app a few
times and sometimes when I first load it. I am not
refreshing my browser over and over in order to run the app.
I cannot figure out the exact sequence of events that
leads to this error. In earlier versions of my app, I was able to
successfully use the exact same function (minus
the lines where the BitmapData and Bitmap objects are set to
null). I am not an expert at Actionscript, so perhaps
I'm doing something wrong. Please help me out. Thanks.
          public function cloneItem(item:Item):Item {
               var itemClone:Item = new Item(item.ID, item.name, item.bpCost, item.bcCost, item.quantity);
               var tempBitmap:Bitmap;
               var tempBitmapData:BitmapData;
               var tempSprite:Sprite;
               if (item.card != null) {
                    itemClone.card = new mcCard();
                    itemClone.card.txbCardName.text = item.card.txbCardName.text;
                    itemClone.card.setCost(item.card.cost);
                    itemClone.card.txbSet.text = item.card.txbSet.text;
                    itemClone.card.txbRarity.text = item.card.txbRarity.text;
                    itemClone.card.txbLevel.text = item.card.txbLevel.text;
                    itemClone.card.txbType.text = item.card.txbType.text;
                    if (itemClone.card.txbType.text.indexOf('Unit') == -1 && itemClone.card.txbType.text.indexOf('Hero') == -1 && itemClone.card.txbType.text.indexOf('Leader') == -1) {
                         itemClone.card.hideUnitAttributes();
                    } else {
                         itemClone.card.txbAttack.text = item.card.txbAttack.text;
                         itemClone.card.txbHP.text = item.card.txbHP.text;
                         if (itemClone.card.txbType.text.indexOf('Leader') == -1) {
                              itemClone.card.lblMP.visible = false;
                              itemClone.card.txbMP.visible = false;
                         } else {
                              itemClone.card.lblAttack.visible = false;
                              itemClone.card.txbAttack.visible = false;
                              itemClone.card.mcSword.visible = false;
                              itemClone.card.lblHP.x = itemClone.card.lblAttack.x;
                              itemClone.card.txbHP.x = itemClone.card.txbAttack.x;
                              itemClone.card.mcHeart.x = 0;
                              itemClone.card.txbMP.text = item.card.txbMP.text;
                    itemClone.card.txbRules.text = item.card.txbRules.text;
                    tempBitmapData = new BitmapData(166, 96);
                    tempBitmapData.draw(item.card.mcImage);
                    tempBitmap = new Bitmap(tempBitmapData);
                    //tempBitmap.cacheAsBitmap = false;
                    //tempBitmap.smoothing = true;
                    tempSprite = new Sprite();
                    tempSprite.addChild(tempBitmap);
                    itemClone.card.mcImage.addChild(tempSprite);
                    //tempBitmapData.dispose();
                    tempBitmapData = null;
                    tempBitmap = null;
                    itemClone.card.buttonMode = true;
                    itemClone.card.mouseChildren = false;
                    itemClone.card.tabEnabled = false;
               return itemClone;

More shots in the dark...
Check the following:
1) The height and width may be invalid.  Change it to:
new BitmapData (item.card.mcImage.width, item.card.mcImage.height);
2) If that doesn't work, try it with just a single pixel
new BitmapData(1,1);
3) Check to see if the movieClip has been resized or transformed.
4) Make sure the MovieClip is at 0,0 registration
5) Try setting the alpha value to false and see if it captures a black rectangle
new BitmapData(166,96,false);
If it doesn't throw an error, and returns a black rectangle, it means there were no pixels for it to capture.
6) Substitute the item.card.mcImage with a different MovieClip.
7) And lastly, try to comment out code that comes before to see if it's something else that's causing the error.  Sometimes the error is being thrown for entirely different reasons than it says, but AS gets confused.

Similar Messages

  • Why do I keep getting tihs message ArgumentError: Error #2015: Invalid BitmapData.

    ArgumentError: Error #2015: Invalid BitmapData.
    at flash.display::BitmapData/ctor()
    at flash.display::BitmapData()
    at com.king.flash.spaceland.texture::TextureManager/clearDynamicAtlasResource()
    at com.king.flash.spaceland.texture::TextureManager/clearDynamicAtlas()
    at com.king.flash.spaceland.texture::TextureManager/createDynamicAtlas()
    at com.king.ragnarok.spaceland.atlas::DynamicAtlasFactory/createDynamicAtlas()
    at com.king.stritz.juego::ProfilePictureLoader/load()
    at com.king.stritz.juego::ProfilePictureLoader/loadProfilePictureWithSocialUser()
    at com.king.stritz.juego::ProfilePictureLoader/loadProfilePicture()
    at com.king.stritz.view.spaceland.diorama::DioramaPortraitsView/setUpCurrentUser()
    at com.king.stritz.presenter.diorama::DioramaPortraitsPresenter/show()
    at com.king.stritz.presenter.diorama::DioramaPresenterImpl/show()
    at com.king.stritz.state.main::DioramaMainState/onEnterState()
    at com.king.stritz.state::TransitionAction/onTransition()
    at se.fearless.fettle.impl::Transition/onTransition()
    at se.fearless.fettle.impl::TransitionModelImpl/forceSetState()
    at se.fearless.fettle.impl::TransitionModelImpl/fireInternal()
    at se.fearless.fettle.impl::TransitionModelImpl/fireEvent()
    at se.fearless.fettle.impl::StateMachineImpl/fireEvent()
    at com.king.stritz.state::StateChanger/requestStateChange()
    at com.king.stritz.state.main::PerformanceCheckState/changeState()
    at com.king.stritz.state.main::PerformanceCheckState/onEnterState()
    at com.king.stritz.state::TransitionAction/onTransition()
    at se.fearless.fettle.impl::Transition/onTransition()
    at se.fearless.fettle.impl::TransitionModelImpl/forceSetState()
    at se.fearless.fettle.impl::TransitionModelImpl/fireInternal()
    at se.fearless.fettle.impl::TransitionModelImpl/fireEvent()
    at se.fearless.fettle.impl::StateMachineImpl/fireEvent()
    at com.king.stritz.state::StateChanger/requestStateChange()
    at Function/PreloadingState.as$0:anonymous()
    at Function/Assets.as$1:anonymous()
    at com.king.ragnarok.spaceland.assets.zip::ZipAssetLoader/callback()
    at Function/ZipAssetLoader.as$0:anonymous()
    at Function/ImageDecoder.as$0:anonymous()
    at Function/onComplete()

    Hi Chris
    Thanks for getting back to me. I need to be sure the Flash Player I will be installing is for windows 8.1. Can you help me with that please.
    Thank you so much. Luetta
           From: chris.campbell <[email protected]>
    To: Luetta Marshall <[email protected]>
    Sent: Friday, May 1, 2015 3:43 PM
    Subject:  why do I keep getting tihs message ArgumentError: Error #2015: Invalid BitmapData.
    why do I keep getting tihs message ArgumentError: Error #2015: Invalid BitmapData.
    created by chris.campbell in Using Flash Player - View the full discussionHi Luetta,I think the confusion here is that you are seeing a message that was meant for Flash Player developers, and Namisha assumed you were debugging your own flash code. If you are simply trying to use Flash Player, we'll need to uninstall the debug version of Flash and install the regular version instead.  Assuming you are on Windows, here are the steps required: 1.  Uninstall Flash Player by downloading and running this program:  http://download.macromedia.com/get/flashplayer/current/support/uninstall_flash_player.exe 2. Once uninstalled, open your web browser and navigate to: https://get.adobe.com/flashplayer 3. Walk through the steps on that web page to get the right version of Flash Player installed  Once you have the normal version of Flash installed, you will no longer see these error messages. If you continue to have problems, please email me at [email protected] and we can do a quick desktop sharing session so I can help you out. Thanks,Chris If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7503430#7503430 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7503430#7503430 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following" 
    Start a new discussion in Using Flash Player by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • "Invalid Binary" error on app. Apple's reason is "Missing 64-bit support" due to changes from Feb 1st 2015

    Hello
    Can anyone help me with an "Invalid Binary" error on my app.
    Apple's response is:
    Dear developer,
    We have discovered one or more issues with your recent submission for "DPS Notes". To process your submission, the following issues must be corrected:
    Missing 64-bit support - Beginning on February 1, 2015 new iOS apps submitted to the App Store must include 64-bit support and be built with the iOS 8 SDK. Beginning June 1, 2015 app updates will also need to follow the same requirements. To enable 64-bit in your project, we recommend using the default Xcode build setting of “Standard architectures” to build a single binary with both 32-bit and 64-bit code.
    Once these issues have been corrected, use Xcode or Application Loader to upload a new binary to iTunes Connect. Choose the new binary on the app’s Details page in My Apps on iTunes Connect, and click Submit for Review.
    Regards,
    The App Store team
    Can someone from the Adobe DPS team let me know how I can recreate the .ipa file so that it will meet Apple's requirements.
    They seem to have moved the goalposts since I created the original .ipa file in December. I thought I'd submitted it, just went back through iTunes Connect to check info as I hadn't heard anything from them, then hit this brick wall. Any help offered would be much appreciated.
    Thanks
    Rebecca

    Hi
    I've Updated App Builder, gone back to the DPS App Builder portal, regenerated new zip and ipa files and downloaded them.
    I clicked the Application Loader 3.0 link, downloaded the latest Appication Version, clicked on the "Deliver your App" button, and submitted the newly built App that was built using 32.4.2 version. (All the app icons were listed as "stored on server" so I presume they are all ok). The .zip file appeared to 'deliver' to Apple successfully. I've tried to resubmit it but get ta "Redundant Binary Upload. There already exists a binary upload with build version..." error message, so presume the orginal binary upload was successful. I have no idea how I can get this app from the "prepare for submission", to "in review". The last time I thought I'd submitted this app I got as far as the "waiting for review" status, and no further.
    At the moment I don't have a"+" button in the Build section - as mentioned on page 66 of Adobe's Step_by_step_guide_to_dps_se.pdf.
    So I can't add the new .zip file to the iTunes Connect > My Apps portal in the Build section of the Versions tab.
    I have put a support email into Apple, but don't expect a reply any day soon.
    The problem with starting all the way back through the App wizard is that I really want to use all the same App Name, Bundle ID, and details etc.
    Do you mean, going back to the Folio Producer Panel, and building a whole new App?
    This process certainly isn't for the faint-hearted!
    HELP!

  • BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data

    When upload to the server the following error occurs: BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data or Muse freezes.

    Hello,
    On the weekend, I tried to upload my website again. I got an interesting error message.
    Error: Error #1000: The system is out of memory.
                at flash.data::SQLStatement/internalExecute()
                at flash.data::SQLStatement/execute()
                at Function/http://adobe.com/AS3/2006/builtin::apply()
                at com.adobe.muse.framework.database::RecordManager$/retryOnSQL3119Errors()
                at com.adobe.muse.framework.database::RecordManager$/getRecordFromTable()
                at com.adobe.muse.framework.database::RecordManager/getRecord()
                at com.adobe.muse.framework.objectModel::DataBase/getDBRecord()
                at com.adobe.muse.framework.objectModel::DataBase/instantiate()
                at com.adobe.muse.framework.objectModel::PersistContext/instantiate()
                at com.adobe.muse.framework.objectModel::PersistList/getItemAt()
                at mx.collections::ListCollectionView/getItemAt()
                at mx.collections::ListCollectionView/http://www.adobe.com/2006/actionscript/flash/proxy::nextValue()
                at com.adobe.muse.site.links::BaseLink/getProxy()
                at com.adobe.muse.site.links::BaseLink/hasLinkProxy()
                at com.adobe.muse.site.links::BaseLink/isMediaLink()
                at com.adobe.muse.site.links::BaseLink/needMoreImageData()
                at com.adobe.muse.site.links::LinkUtils$/getUnexpectedLinkStatuses()
                at com.adobe.muse.importExport::ExportUtil$/preflightLinksInActiveDoc()
                at com.adobe.muse.importExport.html.ui::MuseExportMenuRegion/onChildItemClick()
                at com.adobe.muse.framework.menus::MuseMenuRegionBase/onChildItemClickEvent()
                at flash.events::EventDispatcher/dispatchEventFunction()
                at flash.events::EventDispatcher/dispatchEvent()
                at com.adobe.muse.framework.menus::MuseMenuItemBase/onClick()
                at flash.events::EventDispatcher/dispatchEventFunction()
                at flash.events::EventDispatcher/dispatchEvent()
                at com.adobe.muse.framework.menus::MuseMenuManager/onMenuItemSelect()
                at flash.events::EventDispatcher/dispatchEventFunction()
                at flash.events::EventDispatcher/dispatchEvent()
                at com.adobe.pash.air::AIRMenuManager/onClickMenuItem()
    There is also the latest MuseLog.txt.
    Von: Zak Williamson (Adobe) [email protected]
    Gesendet: Freitag, 21. Juni 2013 19:58
    An: Mondputzer
    Betreff: BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data
    Re: BD/ctor-ArgumentError: Error #2015:Invalid Bitmap Data
    created by  <http://forums.adobe.com/people/ZakWilliamson%28Adobe%29> Zak Williamson (Adobe) in Help with using Adobe Muse CC -  <http://forums.adobe.com/message/5436292#5436292> View the full discussion

  • Invalid BitmapData

    hello there. I am trying to use the reflect class from "http://pixelfumes.blogspot.com/2007/03/reflection-class-v3-with-source.html" but I keep getting this error:
    ArgumentError: Error #2015: Invalid BitmapData.
         at flash.display::BitmapData()
         at Reflect()
         at Site_fla::GalleryPage_29/loadThumbs()
         at Site_fla::GalleryPage_29/sortXML()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at flash.net::URLLoader/onComplete()
    here's how I'm using it:
    function loadThumbs():void
         for (var i:uint = 0; i < myImages.length(); i++)
              thumbLoader = new Loader();
              thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
              thumbLoader.load(new URLRequest(myImages[i].thumb));
              thumbLoader.x = (thumbSize + padding) *i;
              mcThumb = new MovieClip();
              mcThumb.addChild(thumbLoader);
              thumbContainer.addChild(mcThumb);
              var reflection:Reflect = new Reflect({mc:mcThumb, alpha:50, ratio:170, distance:0, updateTime:0, reflectionDropoff:1});
              TweenLite.from(mcThumb, .7, {alpha: 0, ease: Cubic.easeIn})
         thumbContainer.addEventListener(Event.ENTER_FRAME, movingCode);
    btw, first I used assigned thumbContainer as the mc argument (outside the loadThumbs() function) and it worked but not exactly what I wanted... because I thought it is supposed to update when the movieclip is animated but it actually didn't... when I use a scroller, only the thumbs that are first loaded to the stage get the reflection... Any suggestions?

    use: 
    var numberLoaded:uint=0;
    var thumbArray:Array;
    function loadThumbs():void
    thumbArray = new Array();
         for (var i:uint = 0; i < myImages.length(); i++)
              thumbLoader = new Loader();
              thumbLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
              thumbLoader.load(new URLRequest(myImages[i].thumb));
              thumbLoader.x = (thumbSize + padding) *i;
              mcThumb = new MovieClip();
              mcThumb.addChild(thumbLoader);
              thumbContainer.addChild(mcThumb);
              // the line below won't do anything useful.  just assign mcThumb's alpha to be zero.
              //TweenLite.from(mcThumb, .7, {alpha: 0, ease: Cubic.easeInOut})
        thumbArray.push(mcThumb);
         thumbContainer.addEventListener(Event.ENTER_FRAME, movingCode);
         thumbContainer.addEventListener(MouseEvent.CLICK, loadMainImage);
    function thumbLoaded(e:Event):void
         thumbLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, thumbLoaded);
       numberLoaded++;
    if(numberLoaded==myImages.length()){
    // now loop through thumbArray adding your reflections:
    for(var i:uint=0;i<thumbArray.length;i++){
    // call the reflection class passing thumbArray[i]

  • Errors 2015 and1125 continue to keep me from updating my website. 2015 error happens

    Errors 2015 and1125 continue to keep me from updating my website. 2015 error happens and update can be resummed but error 1125 can not be resummed and thus website can not be updated. This has been a continuing problem for me for months now. I am willing to upload my site to an Adobe expert to look at.

    Thank you for sending your file.
    The most likely cause I see for the invalid bitmap errors is an idiosyncracy/bug related to the background image fill on your master page in combination with the stroke, the fact one corner of your master page is rounded, the fill image file format is .gif, and perhaps other factors.
    Given your specific design, I believe you can go to your master page and delete the Page Fill image and set the Fill Color to None without changing the appearance of your site (since the Browser Fill will show through the page). Click on the trash can icon in the Fill panel to delete the fill image and then set the Color to None.
    So, why was this page fill so problematic?
    During preview/export/upload/publish Muse goes to great lengths to produce output that provides a high level of fidelity across all popular browsers on desktops and devices. In this case the problem browsers are IE7 and IE8. IE prior to IE9 doesn't not support rounded corners via CSS, so Muse has to achieve rounded corners by other means. Cutting to the punchline, in this particular case the net result was separate PNG images resampled large enough for each of the individual pages of your site. That alone is bad, but then consider that some of your pages are fairly tall and that means the export process was creating some very large PNG flies.
    With the release of Muse 8 we'll be dropping compatibilty with IE7. IE7 has very very low and declining marketshare and the cost of attempting to account for all the special cases associated with IE7 when developing new features or enhancing exisitng ones is simply too high.
    For IE8 compatibility we'll explore a better approach to the specific case you encountered. Perhaps on IE8 we'll opt to simply not have the corner appear as rounded.
    Very sorry for the inconvenience caused by the 2015 errors. After making this change to your file, if you continue to encounter them, please let us know. Thanks.

  • Youtube Facebook Google etc, Invalid URL error

    For many years now I've been putting up with a CONSTANT lingering problem with my Mac OS. These (on a very regular basis) irritating, "Invalid URL" errors.
    The picture that you see below is an example of my problem.  This example of a Youtube video giving me an error is from a recent article on www.macrumors.com.
    Where the youtube video is supposed to be is just an Error.  And as I scrolled down the page, all of the subsequent youtube videos had this same error.
    So I went to youtube.  After typing in the web address, I get the same error except that it fills the entire screen.
    After about 20 minutes (of constant screen refreshes and data dumps within safari) the youtube videos finally loaded as if nothing was wrong (as you can see in the second photo).
    Sometimes this problems lasts for 10 seconds.  But normally it can take between 10 minutes to an hour to begin working again.
    The other two websites that give me this same trouble is Google.com and Facebook.com.  But Facebook being the most notorious.  Not just because my actual facebook page won't load, but because of all of the news sites that load facebook garbage and coding searching for facebook.  When the facebook ip address cannot be resolved, these annoying error pop-ups begin bombarding my screen.  One minute facebook will work, and I'm reading down the newfeed, then all of the sudden nothing new will load.  When I try to refresh the page, I get an error stating that it cannot load the page.  Then I just have to wait.
    As you can see from the picture below, Sometimes facebook just gives me an error that states, "Safari cannot open the page Facebook.com because Safari cannot establish a secure connection to the facebook server."
    This happens EVERY single day.  It's really just a crap-shoot whether or not I will be able to get onto Facebook.
    Youtube is a little less often (usually happening about 3 or 4 times per week).
    Google got so bad that I finally had to change my search provider to Bing, because Google almost never worked.
    Has anyone else experienced these problems on their MAC?
    I ask because I have 3 MAC computers.  2 Laptops and a MacPro tower. 
    And EVERY single one has this same problem.
    This wasn't such a big deal; ie something I learned to live with... Up until I bought my wife (and Windows Vista convert) her new Macbook Air.  And within an hour of booting that thing up for the first time, her Facebook errored out.  And has done it pretty consistantly every day, at least twice, since then.
    If anyone else has this problem, how did you fix it????????

    Here are the results:
    I hope someone can make heads or tails out of this.
    And please keep in mind that in the past I have completely wiped and reinstalled after reformatting and within an hour or 2 I get the same errors on the these websites.
    Start time: 23:05:23 06/15/14
    Model Identifier: MacBookPro5,5
    System Version: OS X 10.9.3 (13D65)
    Kernel Version: Darwin 13.2.0
    Boot Mode: Normal
    Time since boot: 49 minutes
    FileVault: FileVault master keychain appears to be installed
    Diagnostic reports
       2014-05-19 UserEventAgent crash
       2014-05-23 qmasterqd crash
       2014-05-26 qmasterqd crash
       2014-06-02 DivX Player crash
       2014-06-02 PluginProcess crash
       2014-06-02 com.apple.WebKit.WebContent crash
       2014-06-02 com.apple.WebKit.WebContent crash
       2014-06-02 com.apple.WebKit.WebContent crash
    Log
       Jun 13 01:43:18 AFP_VFS afpfs_dead:  called on vfsid 4
       Jun 13 01:43:18 ASP_TCP CancelPendingReqsWithID : Adding the invalid vfsid 4 and counter is 0 to the list
       Jun 13 01:43:18 ASP_TCP CancelOneRequest: cancelling slot 15 error 89 reqID 2801 flags 0x29 afpCmd 0x45 so 0xffffff801586fca0
       Jun 13 01:43:18 ASP_TCP CancelOneRequest: cancelling slot 16 error 89 reqID 2802 flags 0x29 afpCmd 0x22 so 0xffffff801586fca0
       Jun 13 01:43:18 ASP_TCP CancelOneRequest: cancelling slot 17 error 89 reqID 2803 flags 0x29 afpCmd 0x22 so 0xffffff801586fca0
       Jun 13 01:43:18 ASP_TCP CancelOneRequest: cancelling slot 18 error 89 reqID 2804 flags 0x29 afpCmd 0x22 so 0xffffff801586fca0
       Jun 13 22:40:53 AFP_VFS afpfs_DoReconnect:  Max reconnect time: 30 secs, Connect timeout: 15 secs for /Volumes/Storagedisk_6_1TB
       Jun 13 22:41:28 AFP_VFS afpfs_dead:  called on vfsid 3
       Jun 13 22:41:28 ASP_TCP CancelPendingReqsWithID : Adding the invalid vfsid 3 and counter is 0 to the list
       Jun 13 22:41:28 ASP_TCP CancelOneRequest: cancelling slot 20 error 89 reqID 10889 flags 0x29 afpCmd 0x22 so 0xffffff802230a058
       Jun 13 22:41:28 ASP_TCP CancelOneRequest: cancelling slot 21 error 89 reqID 10890 flags 0x29 afpCmd 0x22 so 0xffffff802230a058
       Jun 13 23:26:04 process Preview[95635] caught causing excessive wakeups. Observed wakeups rate (per sec): 744; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45020
       Jun 14 00:16:15 process Preview[2207] caught causing excessive wakeups. Observed wakeups rate (per sec): 2593; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45020
       Jun 14 00:17:23 process Preview[2339] caught causing excessive wakeups. Observed wakeups rate (per sec): 1991; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45210
       Jun 14 02:45:19 process QuickLookUIHelpe[4321] caught causing excessive wakeups. Observed wakeups rate (per sec): 189; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45586
       Jun 15 00:44:53 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
       Jun 15 00:46:08 jnl: disk3s1: replay_journal: from: 283136 to: 1024512 (joffset 0x7a000)
       Jun 15 00:46:12 jnl: disk3s1: journal replay done.
       Jun 15 01:37:24 jnl: disk3s1: do_jnl_io: strategy err 0x6
       Jun 15 01:37:24 jnl: disk3s1: write_journal_header: error writing the journal header!
       Jun 15 01:37:24 jnl: disk3s1: close: journal 0xffffff8013ac5c20, is invalid.  aborting outstanding transactions
       Jun 15 01:37:26 jnl: disk3s1: replay_journal: from: 367616 to: 1361408 (joffset 0x3f000)
       Jun 15 01:37:27 jnl: disk3s1: journal replay done.
       Jun 15 10:33:57 process qmastercc[163] caught causing excessive wakeups. Observed wakeups rate (per sec): 1016; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 59722
       Jun 15 22:20:37 process smcFanControl[246] caught causing excessive wakeups. Observed wakeups rate (per sec): 324; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 46105
    kexts
       com.squirrels.airparrot.framebuffer (3)
    Daemons
       org.macosforge.xquartz.privileged_startx
       com.oracle.java.Helper-Tool
       com.microsoft.office.licensing.helper
       com.google.keystone.daemon
       com.adobe.fpsaud
    Agents
       org.macosforge.xquartz.startx
       com.oracle.java.Java-Updater
       com.hp.help.tocgenerator
       com.google.keystone.system.agent
       com.divx.update.agent
       com.divx.dms.agent
       org.w0lf.cDock
       com.adobe.ARM.UUID
    launchd
       /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
                 (com.apple.AirPortBaseStationAgent)
       /Library/LaunchAgents/com.divx.dms.agent.plist
                 (com.divx.dms.agent)
       /Library/LaunchAgents/com.divx.update.agent.plist
                 (com.divx.update.agent)
       /Library/LaunchAgents/com.google.keystone.agent.plist
                 (com.google.keystone.system.agent)
       /Library/LaunchAgents/com.hp.help.tocgenerator.plist
                 (com.hp.help.tocgenerator)
       /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
                 (com.oracle.java.Java-Updater)
       /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
                 (org.macosforge.xquartz.startx)
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
                 (com.adobe.fpsaud)
       /Library/LaunchDaemons/com.apple.aelwriter.plist
                 (com.apple.aelwriter)
       /Library/LaunchDaemons/com.google.keystone.daemon.plist
                 (com.google.keystone.daemon)
       /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
                 (com.microsoft.office.licensing.helper)
       /Library/LaunchDaemons/com.oracle.java.Helper-Tool.plist
                 (com.oracle.java.Helper-Tool)
       /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist
                 (org.macosforge.xquartz.privileged_startx)
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
                 (com.adobe.ARM.UUID)
       Library/LaunchAgents/com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID. plist
                 (com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID)
       Library/LaunchAgents/org.w0lf.cDock.plist
                 (org.w0lf.cDock)
    Bundles
       /System/Library/Extensions/APExtFramebuffer.kext
                 (com.squirrels.airparrot.framebuffer)
       /System/Library/Extensions/hpPlugInInit.kext
                 (com.hp.scanner.PlugInInit)
       /System/Library/Extensions/hpPlugInInit.kext/Contents/Resources
                 (com.hp.scanner.PlugInInit)
       /System/Library/Extensions/ssuddrv.kext
                 (com.devguru.driver.SamsungComposite)
       /Library/Audio/Plug-Ins/Components/Ambience.component
                 (com.smartelectronix.magnus.Ambience)
       /Library/Audio/Plug-Ins/Components/ARIA Player AU.component
                 (N/A)
       /Library/Audio/Plug-Ins/Components/SmartMusicSoftSynth.component
                 (com.makemusic.audiounit.smartmusicsoftsynth)
       /Library/Audio/Plug-Ins/VST/ARIA Player VST Multi.vst
                 (N/A)
       /Library/Audio/Plug-Ins/VST/ARIA Player VST.vst
                 (N/A)
       /Library/Internet Plug-Ins/DivX Web Player.plugin
                 (com.divx.DivXWebPlayer)
       /Library/Internet Plug-Ins/Flash Player.plugin
                 (N/A)
       /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
                 (com.google.googletalkbrowserplugin)
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
                 (com.oracle.java.JavaAppletPlugin)
       /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
                 (com.google.o1dbrowserplugin)
       /Library/Internet Plug-Ins/OVSHelper.plugin
                 (com.divx.OVSHelper)
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
                 (com.microsoft.sharepoint.browserplugin)
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
                 (com.microsoft.sharepoint.webkitplugin)
       /Library/Internet Plug-Ins/Silverlight.plugin
                 (com.microsoft.SilverlightPlugin)
       /Library/Internet Plug-Ins/SurveillanceClient.plugin
                 (com.boxdeng.xvmsplugin)
       /Library/PreferencePanes/Flash Player.prefPane
                 (com.adobe.flashplayerpreferences)
       /Library/PreferencePanes/HP Scanjet.prefPane
                 (com.hp.scanjet.prefs)
       /Library/PreferencePanes/JavaControlPanel.prefPane
                 (com.oracle.java.JavaControlPanel)
       /Library/QuickTime/CanonMJPEGAVI.component
                 (jp.co.canon.MJPEGAVIExporter)
       /Library/QuickTime/CanonMJPEGAVIDec.component
                 (jp.co.canon.CanonMJPEGAVIDec)
       /Library/QuickTime/CanonText.component
                 (jp.co.canon.Text)
       /Library/Spotlight/Finale.mdimporter
                 (com.makemusic.MDImporter.Finale)
       Library/Address Book Plug-Ins/SkypeABDialer.bundle
                 (com.skype.skypeabdialer)
       Library/Address Book Plug-Ins/SkypeABSMS.bundle
                 (com.skype.skypeabsms)
       Library/Caches/com.apple.Safari/Extensions/AdBlock.safariextension
                 (com.betafish.adblockforsafari)
       Library/Caches/com.apple.Safari/Extensions/ExifExt.safariextension
                 (de.phriedrich.exifext)
       Library/Caches/com.apple.Safari/Extensions/My eBay Manager-2.safariextension
                 (com.ebay.safari.myebaymanager)
       Library/Caches/com.apple.Safari/Extensions/Social Fixer.safariextension
                 (com.socialfixer)
       Library/Caches/com.apple.Safari/Extensions/Turn Off the Lights.safariextension
                 (com.stefanvd.turnoffthelights)
       Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
                 (com.Google.GoogleEarthPlugin.plugin)
       Library/Internet Plug-Ins/WebEx64.plugin
                 (com.cisco_webex.plugin.gpc64)
       Library/ScriptingAdditions/EasySIMBL.osax
                 (com.github.norio-nomura.EasySIMBL.osax)
    dylibs
       /usr/lib/libdvdcss.2.dylib
    Contents of /etc/ssh_config
        Host *
          SendEnv LANG LC_*
       Host *
           XAuthLocation /opt/X11/bin/xauth
    Font issues: 41
    Listeners
       launchd: afpovertcp
       launchd: microsoft-ds
       launchd: ssh
       kdc: kerberos
       nfsd: 1023
       rpc.statd: exp1
       rpc.lockd: 1017
       rpcbind: sunrpc
       rpc.rquot: garcon
    Wi-Fi
       link auth: wpa-psk
    User login items
       iTunesHelper.app
       smcFanControl
       Auto Mute.app
       SurplusMeterAgent.app
       RightZoom.app
       SpeechSynthesisServer.app
    Hidden apps
       .magicJack/Softphone/magicJack.app
       .magicJack/Softphone/splash.app
    Restricted files: 2584
    Safari extensions
       ExifExt
       Turn Off the Lights
       My eBay Manager
       AdBlock
       Social Fixer
    Elapsed time (s): 387

  • Case When Statement and ORA:01722 Invalid number error

    Hi folks, I have posted this under another heading as well under E-business suite so apologies if some you have already seen it but I would really appreciate some help on this one. Any suggestions are most welcome.
    We are trying to put together a calculation that returns the number of days absent an individual has had in a given time period. We need to cater for those absences that started before the period and are closed during it, absence that start during the period and end after it, and those that open and close within it.
    The period is always a rolling 6 months from sysdate.
    This is the calc we have come up with so far which works for some people but we get the invalid number error if the absence includes a half day - so 0.5, 1.5,etc.
    This is probably over complicated but we are not techie at all so are learning as we go!
    We are using the HRMS - Administration - Oracle Human Resources (Core) business area in 10G and the Absence Attendance and Person folders.
    SUM(TO_NUMBER(NVL(( CASE WHEN Absence Attendance.Actual Start Date < TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') THEN ( CASE WHEN Absence Attendance."Actual End Date" > SYSDATE THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) END ) END ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( Absence Attendance.Duration Days ) END ) END ) END ) END ) END ),( DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") )),'999999990D00'))

    Hi,
    It could be that this is because you are using SYSDATE which contains the time as a fraction rather than TRUNC(SYSDATE) which just contains the current time. It could be that your working_dates_between raises this error.
    However, your formula is far more complicated than it needs to be.
    Firstly, you want to look at the date window ADD_MONTHS(TRUNC(SYSDATE), -6) to TRUNC(SYSDATE). Then you want to look at the portion of the absence that falls in the date window. This is GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6)) to LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE)). You may need to add 1 to the absence end date because this is the last day of their absence rather than the date they return. It depends how you calculate the days between the start and end
    date of the absence. You can create calculations for the start and end date of the absences within the 6 months time window. Create calculation AbsenceStart as
    GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6))
    and AbsenceEnd as
    LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE))
    Then you need to only pick up absence that a part of the absence in your 6 month date window. You can use a condition in the workbook or a condition in a case statement to do this. You then need to calculate the difference between these dates and SUM all the values.
    SUM(CASE WHEN AbsenceEnd >= AbsenceStart THEN WORKING_DAYS_BETWEEN(AbsenceStart, AbsenceEnd) END)
    That's it. Not so complicated after all.
    Rod West

  • Case When Statement and ORA:1722 Invalid number error

    Sorry I posted this in the wrong forum - I have the answer now
    Cheers
    HELP!!!
    We are trying to put together a calculation that returns the number of days absent an individual has had in a given time period. We need to cater for those absences that started before the period and are closed during it, absence that start during the period and end after it, and those that open and close within it.
    The period is always a rolling 6 months from sysdate.
    This is the calc we have come up with so far which works for some people but we get the invalid number error if the absence includes a half day - so 0.5, 1.5,etc.
    This is probably over complicated but we are not Techie at all so are learning as we go! We are using the HRMS - Administration - Oracle Human Resources (Core) business area in 10G and the Absence Attendance and Person folders.
    SUM(TO_NUMBER(NVL(( CASE WHEN Absence Attendance.Actual Start Date < TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') THEN ( CASE WHEN Absence Attendance."Actual End Date" > SYSDATE THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) END ) END ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( Absence Attendance.Duration Days ) END ) END ) END ) END ) END ),( DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") )),'999999990D00'))
    Edited by: CPearce on Sep 25, 2008 8:03 AM

    Hi,
    It could be that this is because you are using SYSDATE which contains the time as a fraction rather than TRUNC(SYSDATE) which just contains the current time. It could be that your working_dates_between raises this error.
    However, your formula is far more complicated than it needs to be.
    Firstly, you want to look at the date window ADD_MONTHS(TRUNC(SYSDATE), -6) to TRUNC(SYSDATE). Then you want to look at the portion of the absence that falls in the date window. This is GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6)) to LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE)). You may need to add 1 to the absence end date because this is the last day of their absence rather than the date they return. It depends how you calculate the days between the start and end
    date of the absence. You can create calculations for the start and end date of the absences within the 6 months time window. Create calculation AbsenceStart as
    GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6))
    and AbsenceEnd as
    LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE))
    Then you need to only pick up absence that a part of the absence in your 6 month date window. You can use a condition in the workbook or a condition in a case statement to do this. You then need to calculate the difference between these dates and SUM all the values.
    SUM(CASE WHEN AbsenceEnd >= AbsenceStart THEN WORKING_DAYS_BETWEEN(AbsenceStart, AbsenceEnd) END)
    That's it. Not so complicated after all.
    Rod West

  • "Invalid Cursor" Error in Form

    Hi,
    I wrote a procedure that take a REF CURSOR as an IN OUT argument. This procedure does an "OPEN cursor FOR qry" with a dynamic query:
    OPEN l_cursor FOR
           'SELECT A '||
             'FROM B '||
            'WHERE C = :l_var'
         USING myVar;After calling the procedure, I do a LOOP with FETCH.
    It works well when I use it in SQL*Plus with DBMS_OUTPUT but it returns a "ORA-01001 invalid cursor" error in Forms.
    Any help is welcome!
    Regards,
    Olivier.

    I found a solution on Metalink:
    Note:170881.1
    Note: 1007395.6
    Olivier.

  • XML Publisher Report ends with Warning -- Invalid Character Error in XML

    Hi,
    I have migrated the standard report 'Invoice Print Selected Invoices' from Reports 6i to XML Publisher. It has to print a Euro(€) in the report. It does not even generate the XML File fully. It gives the below error in the XML File. When i remove the special character, it works fine.
    Please let me know the settings to ensure that XML file also accepts the special characters. How do i get the Euro symbol printed in XML File with out giving Invalid Character Error?
    ===========================================================The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again
    later.
    An invalid character was found in text content. Error processing resource 'http://dfw1svdevapp03.ora.rackspace.com:8040/OA_...
    <C_INV_CURRENCY_SYMBOL>
    N class="m">>
    <LINE_UOM />
    <LINE_UNIT_SELLING_PRICE />
    ===========================================================
    The XML File even does not show which character set it uses. The output file starts with:
    ===========================================================
    <?xml version="1.0" ?>
    - <!-- Generated by Oracle Reports version 6.0.8.25.0
    -->
    ===========================================================

    Hi Tim,
    Thanks for your adhoc response.
    I have gone thru the Document 222663.1 and it says that the Developer 6.0.8.23 is required to handle this problem. We are using almost the updated Developer version i.e., Developer 6.0.8.25. So, this should be handled automatically, but it still errors out. Please suggest.
    Thanks,
    Kesava

  • HT5113 "Invalid code error" and "can't connect to the iTunes Store." Any suggestions?

    I keep getting an "invalid code error" when trying to preview a course with the enroll code. When I click on the link to the course, I get an error that says "can't connect to the iTunes Store." Any suggestions?
    I tried previewing a test course I made about a year ago. I was able to request access to the course, went into Course Manager and approved it, but hours later it still says awaiting approval on my iPad.
    Any ideas as to what could be going on, aside from a cruel April Fool's joke?
    Thanks.
    David

    How about trying to sign out of your account on the iPad, restart the iPad, sign back into the account and then try again?
    Settings>Store>Apple ID - tap on your ID and sign out - restart - go back - sign in.
    Other than going through the support article - if you haven't already done so - the only other thing I can think of is to reset/reboot the iPad. That can clear the memory and it does help solve a lot of "hinky" issues.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Item Validation on a Form - Receives ORA-0094: Invalid Idenitier error

    I'm fairly new to APEX and having an issue with an Item Validation on a Form receiving the ORA-0094: <Column Name>: Invalid Identifier error. I have looked at postings in this form on this error and tried many of the suggestions. I still can not get it to work. My lack of experience with APEX is not helping either.
    I'm using APEX release 2.2 with IE6.
    I'm trying to create a new Invoice in the Invoice table (CTS_INVOICE). The RFA Number for this invoice must be an active RFA record in the RFA table (CTS_RFA). Before I add the check for the RFA active status, I wanted to get the code that checks for the existence of the RFA record working first.
    After filling in the fields on the forms, click the Create button, and receives an error page with the following error ORA-0094: "RFA_NUMBER": Invalid Identifier.
    I have checked to make sure the table name, column name, and item name were correct with spelling and capitalization.
    Used the Wizard to setup the Item Validation.
    Type: EXISTS
    Validation Expression 1: Select 1 from CTS_RFA where RFA_Number = :P25_RFA_NUMBER
    Error message: Enter an active RFA number.
    location: Inline with Field and in Notification
    Associated Item: P25_RFA_NUMBER
    Any help would be greatly appreciated.
    Thanks,
    Vivian

    Vivian - Might the column have been created as a quoted identifier with mixed upper/lower case characters?
    Run this in SQL*Plus:
    select count(rfa_number) from cts_rfa;
    If that works without error then this is not the problem.
    Scott

  • Recieving ORA-01722 invalid number error while creating a materialized view

    Hi,
    I am receiving a ORA-01722 invalid number error while creating a materialized view. when run the select statement of the view i don't get any error, but when i use the same select statement to create a materialized view i receive this error. Could any please help in resolving this error. Here is the code i am using to create a materialized view.
    CREATE MATERIALIZED VIEW MV_EBS_CH_CLOSED
    REFRESH FORCE ON DEMAND
    AS
    SELECT DISTINCT kr.request_id, org.org_unit_name,
    ebs_ch_ticket_type (kr.request_id) ticket_type,
    DECODE
    (kr.status_code,
    'CLOSED_SUCCESS', kr.last_update_date,
    'IN_PROGRESS', (SELECT MAX (start_time)
    FROM ebs_ch_datastore ecd1
    WHERE kr.request_id = ecd1.request_id
    AND workflow_step_name =
    'Final BA Review and Deployment Exit Criteria')
    ) closed_date,
    substr(krhd.visible_parameter12,1,10) siebel_start_date,
    kr.creation_date itg_start_date
    FROM kcrt_requests kr,
    kcrt_request_types krt,
    kcrt_req_header_details krhd, kcrt_request_details krd1,
    (SELECT koum.user_id user_id,
    DECODE (koup.org_unit_name,
    'IT Implementations', 'CHS - Service Management BA',
    koup.org_unit_name
    ) org_unit_name
    FROM krsc_org_unit_members koum, krsc_org_units koup
    WHERE 1 = 1
    AND 'Y' = koup.enabled_flag
    AND koum.org_unit_id = koup.org_unit_id
    AND EXISTS (
    SELECT 'X'
    FROM krsc_org_units kouc
    WHERE koup.org_unit_id = kouc.org_unit_id
    START WITH kouc.parent_org_unit_id =
    ANY (SELECT org_unit_id
    FROM krsc_org_units krsc_org_units1
    WHERE 'Clearinghouse' =
    org_unit_name)
    CONNECT BY kouc.parent_org_unit_id =
    PRIOR kouc.org_unit_id)
    UNION
    SELECT kou.manager_id user_id,
    DECODE
    (kou.org_unit_name,
    'IT Implementations', 'CHS - Service Management BA',
    kou.org_unit_name
    ) org_unit_name
    FROM krsc_org_units kou
    WHERE 'Y' = kou.enabled_flag
    START WITH kou.parent_org_unit_id =
    (SELECT org_unit_id
    FROM krsc_org_units krsc_org_units2
    WHERE 'Clearinghouse' = org_unit_name)
    CONNECT BY kou.parent_org_unit_id = PRIOR kou.org_unit_id) org
    WHERE krt.request_type_id = kr.request_type_id
    AND krt.request_type_name IN ('Bug Fix', 'IT Enhancement')
    and kr.REQUEST_ID = krd1.request_id
    and krd1.batch_number = 1
    AND kr.request_id = krhd.request_id
    AND org.user_id in (krd1.parameter4, krd1.parameter5, krd1.parameter7)
    AND ( 'CLOSED_SUCCESS' = kr.status_code
    OR 'IN_PROGRESS' = kr.status_code
    AND kr.request_id IN (
    SELECT request_id
    FROM (SELECT DISTINCT request_id,
    MAX
    (start_time)
    closed_date
    FROM ebs_ch_datastore
    WHERE 'Final BA Review and Deployment Exit Criteria' =
    workflow_step_name
    GROUP BY request_id))
    Thanks,
    Shaik Mohiuddin

    This error occurs when you try to create a materialized view , but if you run the sql the results are perfectly fine. Well it happend to me also and to fix this I made sure all the coulmns have the same data type which are used in joins or in where clause.
    use
    where
    to_number(col1)=to_number(col2) and to_number(col3)=to_number(col4)
    hope this helps..

  • Getting Invalid URL error while creating the app even though it's returning valid content from browser.

    Hi ,
      i am trying add RSS section with URL http://api.foxnews.com/proxy/content/v2?sort=date desc&omitHeader=true&api_key=cc23011f-3ace-40a4-bb63-bfa654af5bc8&format=full-content-rss.xml&rows=20&q=content_type:article AND image_url:*
    AND section_path:fnc/entertainment , and it's giving invalid URL error. like @ Invalid Url, use http or https://[domain]. Please help what's going wrong with this URL content. 

    I've recently deployed an application in Websphere and HTTPServer and have Oracle on the DB back-end. Tim, apparently your login problem happens inside the Websphere. You will have a better chance to ask this question in IBM's forums.

Maybe you are looking for

  • Non PO documents parked in FV60 cannot be posted through FBV0.

    Hi, I am trying to post  a document parked through FV60 in FBV0 Tcode, but the system says that the document is already posted in that compnay code even though it is in parked condition.. I tried posting some other parked documents but the system is

  • About Container-managed Transactions and Bean-managed Transactions

    as the document of weblogic7.0 describe the differents of Container-managed           Transactions and Bean-managed Transactions,and in the document,It tell us           details of using Bean-managed Transactions,such as \:           import javax.nam

  • OrderBooking Tutorial:DB Adapter Error

    I am getting the following error when using the DB Adapter (Chapter 10) in the Order Booking Tutorial. I don't know how to troubleshoot and correct this error. It appears as though I am passing a null value to a primary index (in this case I think it

  • Webcam in skype

    Hi everyone, by boss wants me to skype with video. I have an integrated webcam which works with usual software like cheese and so on. I can't get it to work with skype (webcam's led briefly light up - nothing more). I tried $ LD_PRELOAD=/opt/lib32/us

  • How to uninstall ? Remote Desktop Licensing (RDS CALs)

    Hi, Support we need to help about how to uninstall Remote Desktop Licensing (RDS CALs) without re-install OS we using windows server 2012 R2, we tried to removed role of Remote Desktop services and re-installed role again but the old RDS licensing st