Why is OK disabled in the debugger's Modify Value dialog?

Hi,
For some reason OK disabled in the debugger's Modify Value dialog. Nothing that I have seen so far explains why this would happen. The variable stores an oracle.jbo.domain.Date, and the ADF source library was imported into the project.
Ideas?
James

Hi Timo,
You mentioned "tore" twice in your post, but I do know what that is. So, are you saying that if int or String was the type it would behave differently?
James

Similar Messages

  • Oracle AS 10.1.3.3 - why is XML disabled in the Oracle built PHP version?

    I have just upgraded Oracle AS version 10.1.3.0.0 to 10.1.3.3. This includes an upgrade of PHP from 4.3.3 to 5.1.2.
    Looking at the phpinfo() output I notice that pretty much all XML functionality is disabled:-
    disable-libxml' 'disable-dom' '--disable-simplexml' '--disable-xml' '--disable-xmlreader' '--disable-xmlwriter'
    Why is this the case?
    I also notice that Pear is disabled. Very very disappointing.

    I noticed this a week or so ago. Perhaps you should post it again on the Oracle AS forum, they probably know more about their product?

  • JDev 9.0.3.3 - float/double in the debugger

    Hello!
    I use JDeveloper ver. 9.0.3.3 and during last debug session I noticed one strange behaviour in the JDev debugger.
    There is a variable of type float with value of 10964.17. I see the value when I do System.out.println() of the variable. But the debugger show me value of 10964.2 !!!
    It seems like the debugger rounds the value. Also, I noticed the same behaviour with doubles too.
    What you think about it?
    I'll try to prepare a short test for the issue - when I'll have time for it.

    No need to prepare the test. I can reproduce it easily from your description.
    It only happens when debugging with OJVM. I've entered bug #3455484.
    Sorry for the bug.
    Thanks for the report.
    -Liz Looney

  • On my MacBook Pro with Retina Display, Why does the "USB Devices Disabled Unplug the device using too much power to re-enable USB devices" keep coming up after I unplugged the usb device?

    On my MacBook Pro with Retina Display 15", that I purchased a few weeks ago, started coming up with the following message on my desktop:
    "USB Devices Disabled Unplug the device using too much power to re-enable USB devices".
    I unplugged the device and the message still keeps coming up.
    This is what I have done so far to troubleshoot:
    I shut down the laptop. When booting up I pressed the command+option+p+r at the same time. It comes up with a menu to reinstall OSX, Get help online, Run Disk Utility, etc. I choose the disk utility and repair the disk and then restarted.
    The message keeps popping up and I can't seem to get rid of it. Why does the message keep popping up even though I don't have any devices hooked up to the laptop at all? Any help to reenable my usb ports and get rid of the messaage would be helpful.

    I talked to Apple Support and we at least stopped the bleeding, a little bit. These are the troubleshooting steps I did before I contacted Apple Support:
    1. Reinstalled OSX
    2. Restore the last known good Time Machine Backup.
    This did not fix my issue, so I called Apple Support and they told me this:
    1. Turn Power off.
    2. Wait 15 seconds.
    3. Plug in Magsafe adapter.
    4. Wait 15 seconds.
    5. Hold down the Shift+Option+Power Button for 20-30 seconds.
    6. Turn Power back on.
    Ok, this stopped the bleeding a little, but as soon as I plugged in a Apple USB Superdrive
    and a Apple Mini Displayport to VGA Adapter. This "USB Devices Disabled" pop-up pops up like every 30 minutes now. At least, it is not constantly popping up after I close it, so I guess it will do for the temporary. Going to contact Apple support, later, though to see what else can be done.

  • Can anyone decipher the debugger report on why 14.0.0.1 won't run in Facebook on IE9 under Windows Vista?

    I have Windows Vista and have been using Facebook on it for several years with no problem.  Recently, it will not run videos.  I have installed FlashPlayer 14.0.0.1 and it tests out fine.  Videos run fine directly from youtube.  All I get is a black screen for the identical video in facebook.
    I installed the debugger program and it gives the following report on errors every time facebook comes across a video.
    An Action Script Error has occurred
    Error: Error #2134: Cannot create SharedObject.
    at flash.net::SharedObject$/getLocal()
    at silvercity.player::AbstractPlayer()
    at silvercity.player::ProgressivePlayer()
    at silvercity::VideoPlayerApp/setupNewPlayer()
    at silvercity::VideoPlayerApp/setup()
    at facebook.display::FBAppLite/onAddedToStage()
    I have installed, uninstalled,and reinstalled adobe flash player several times to no avail.
    I have turned off ActiveX filtering.
    I have disabled accelerators
    I have checked to make sure it is listed in Manage Add Ons and is Enabled.
    Sure could use some help.
    Thanks.

    I don't know from where you get 14.0.0.1; the current version is 14.0.0.176 (IE) and 14.0.0.179 (other browsers).
    Usually the debugger helps Flash developers to debug their content, but in your case it gives us a clue: http://helpx.adobe.com/flash-player/kb/error-2134-cannot-create-sharedobject.html
    Regarding the black screen, there is a possibility that your graphics driver is outdated; see https://forums.adobe.com/thread/945765

  • Why doesn't the debugger follow dynamic memory allocations well?

    Here's an example of a code block that doesn't seem to work right with the CVI compiler/debugger, but works fine with other C compilers/debuggers
    struct arg_int* arg_intn(const char* shortopts,
    const char* longopts,
    const char *datatype,
    int mincount,
    int maxcount,
    const char *glossary)
    size_t nbytes;
    struct arg_int *result;
    /* foolproof things by ensuring maxcount is not less than mincount */
    maxcount = (maxcount<mincount) ? mincount : maxcount;
    nbytes = sizeof(struct arg_int) /* storage for struct arg_int */
    + maxcount * sizeof(int); /* storage for ival[maxcount] array */
    result = (struct arg_int*)malloc(nbytes);
    if (result)
    /* init the arg_hdr struct */
    result->hdr.flag = ARG_HASVALUE;
    result->hdr.shortopts = shortopts;
    result->hdr.longopts = longopts;
    result->hdr.datatype = datatype ? datatype : "<int>";
    result->hdr.glossary = glossary;
    result->hdr.mincount = mincount;
    result->hdr.maxcount = maxcount;
    result->hdr.parent = result;
    result->hdr.resetfn = (arg_resetfn*)resetfn;
    result->hdr.scanfn = (arg_scanfn*)scanfn;
    result->hdr.checkfn = (arg_checkfn*)checkfn;
    result->hdr.errorfn = (arg_errorfn*)errorfn;
    /* store the ival[maxcount] array immediately after the arg_int struct */
    result->ival = (int*)(result+1);
    result->count = 0;
    /*printf("arg_intn() returns %p\n",result);*/
    return result;
    When I try to dereference this structure's 'ival[0]' the debugger constantly complains of a fatal runtime error and declares it out of the array bounds.
    This is from the argtable2 open source library available at http://argtable.sourceforge.net/ if you want to try and reproduce it.  I'm using CVI 2010 SP1.

    Unfortunately, you have run into one of the inherent limitations of CVI's run-time checking. Even though it is perfectly legal in C and somewhat common practice, our run-time checking doesn't like it when you conceptually split up a block of memory and treat it as two or more separate blocks. 
    While I cannot fix the problem in our run-time checking without breaking other use cases, I can explain what's causing the error and how you can work around it.
    When you malloc memory, we assume that the memory block is going to hold one or more instances of the type to which you're casting the memory block. In this case, CVI is treating the new memory block as an array of arg_info structures. But your new memory block is not big enough to hold more than one instance of struct arg_info, so we implicitly truncate the memory block to sizeof(struct arg_info). Because of the implicit truncation, s->values is now pointing past the end of the memory block and any access will result in an error.
    #include <ansi_c.h>
    struct arg_int {
    char some_large_block[64];
    int count;
    int *values;
    int main (int argc, char *argv[])
    int i, n = 4;
    struct arg_int *s = malloc(sizeof *s + n * sizeof *s->values);
    s->count = n;
    s->values = (int *)(s+1);
    for (i = 0; i < n; ++i)
    s->values[i] = i;
    return 0;
    You can avoid the implicit truncation in the original code by assigning to a (void*) first. This retains the original block size by keeping the actual type of the data in the memory block in limbo. Subsequent casts do not truncate the block. We truncate only when the cast occurs implicitly as part of a malloc. s->values points to the remainder of the block and you can access it freely, but you do not get any run-time checking on it.
    #include <ansi_c.h>
    struct arg_int {
    char some_large_block[64];
    int count;
    int *values;
    int main (int argc, char *argv[])
    int i, n = 4;
    struct arg_int *s;
    void *memory = malloc(sizeof *s + n * sizeof *s->values);
    s = memory;
    s->count = n;
    s->values = (int *)(s+1);
    for (i = 0; i < n; ++i)
    s->values[i] = i;
    return 0;
    If you want full run-time checking on s->values, you have to allocate the two components separately.
    #include <ansi_c.h>
    struct arg_int {
    char some_large_block[64];
    int count;
    int *values;
    int main (int argc, char *argv[])
    int i, n = 4;
    struct arg_int *s = malloc(sizeof *s);
    s->count = n;
    s->values = malloc(n * sizeof *s->values);
    for (i = 0; i < n; ++i)
    s->values[i] = i;
    return 0;
    Another option is to use an incomplete array. An incomplete array is an array of unspecified or zero size at the end of a structure definition. CVI is implicitly growing the array to fill up the rest of the allocated memory block. You do not get run-time checking for the array.
    #include <ansi_c.h>
    struct arg_int {
    char some_large_block[64];
    int count;
    int values[0];
    int main (int argc, char *argv[])
    int i, n = 4;
    struct arg_int *s = malloc(sizeof *s + n * sizeof *s->values);
    s->count = n;
    for (i = 0; i < n; ++i)
    s->values[i] = i;
    return 0;
    You can also disable run-time checking for your memory block by going through a series of casts: http://zone.ni.com/reference/en-XX/help/370051K-01/cvi/disablinguserprotectionforindividualpointer/
    Best regards.

  • Why is the save disk disabled on the toolbar of Adobe Reader X?

    Why is the save disk disabled on the toolbar of Adobe Reader X?
    I cannot use the shortcut CTRL+S either. I have to click File, Save As, PDF...too long and drawn out. Why is the quick save disabled?

    How do I make it not disabled?
    Change something in the PDF after opening it.

  • HT1975 Why can't I turn off location services?  Restrictions are disabled.  The on off slidebar is grayed out.  I'm concerned my phone is being tracked.

    Why can't I turn off location services?  Restrictions are disabled.  The on off slidebar is grayed out.  I'm concerned my phone is being tracked.

    While I know there are phones that can do this, they really are not powered "off" - they are more in a hybernation state.  However, the iPhone has never worked that way.  Off on an iPhone means truly powered off - nothing is still running so there is no minimal function left ticking away to wake up the phone and sound the alarm.

  • Why I cannot disable the security passcode on my iphone the option is not available?

    why I cannot disable the security passcode on my iphone the option is not available?

    I have the same issue.  I don't have, or have never had any Exchange account on the ipad.  A simple yahoo email accout is the only one on it.   I have turned off all restrictions, and restarted several times.  Have yet to reset or restore, would just like to get rid of the passcode, but I can't......Thanks for any advice.

  • Can I use the Debugger to debug why a line in UPDATE RULE gives no values?

    Hi,
    in a simple Update Rule, I had the routine below:
    RESULT = SOURCE_FIELDS-QTY.
    "( The goal was to calculate the field MyCclQTY in the cube; Routine was between ODS and Cube ):
    The cube output gave a BLANK while QTY has 300; although I expected to see 300 for MyCclQTY:
    e.g. of Cube Output:
    QTY---MyCclQTY
    300------BLANK
    In the attempt to see what is going on, I used the Debugger for the first time.
    In the update routine for MyCclQTY, I added the line break-point as follows as a booklet I am reviewing, directs:
    Break-Point.
    RESULT = SOURCE_FIELDS-QTY.
    Now when I switched to the debugging mode, I run Single Step.
    I was not too sure what to do here other than, continuously clicking on Single Step.
    When it got to the line:
       == >    catch cx_sy_move_cast_error.
    A message appeared at the bottom of the screen
    u201CException from the class CX_SY_MOVE_CAST_ERROR was caught u201C appeared at bottom of screen.
    1. Any hints on this message?
    2. On the screen in the booklet that I am review, there was a split screen with the one on the right side showing values but I could not get that on my screen. Any hints on that?
    Thanks.

    Hi........
    You can try to catch this exception :
    Dynamic Proxies in ABAP Part 2: RTTI Retrieval
    Regards,
    Debjani..........

  • Why can't I see the Display List in the Debugger?

    As bad as the Flash debugger was, at least you could see movie clips being nested as you dynamically added/deleted them from the screen.
    When I import swfs/swcs into Flash Builder, I can't "see" them added as properties in the debugger - that is, I can see the movieclips I imported, but not any clips nested inside them.
    Also, it would be IMMENSELY helpful if there was a way to actually see the DisplayList in the debugger - perhaps I am missing something?

    1. (should be labeled as such). These are members that are inherited from the class ancestry.
    2. Local variables in the current scope
    3. Private member variables
    4. Public member variables
    The shapes are only reused twice (the color imparts the meaning).
    diamonds used for inherited and protected ... no relation
    circles used for public and local ... no relation
    Also, you shouldn't see parentheses in the name column. Where do you see them?
    Jason San Jose
    Quality Engineer, Flash Builder

  • As I downloaded new software upgrade in my iPod nano 7 th gen and also new iTunes upgrade then all data on my iPod got erased and now when I am trying to sync it again then sync button is disabled on the windows screen . Kindly help

    As I downloaded new software upgrade in my iPod nano 7 th gen and also new iTunes upgrade then all data on my iPod got erased and now when I am trying to sync it again then sync button is disabled on the windows screen . Kindly help

    From the OP: "My old computer got a virus and when that happened all my music was lost. "
    They don't have the music on their computer so they cannot transfer the iTunes folder, from the computer to their iPod and then to the new computer. And if they try to enable disk use on the iPod it will erase all the music that is on it. The method you cited is moving the files in a data format using the iPod as a flash drive. It doesn't work if they are in music format. That is why I suggested Yamipod.

  • Exporting to Facebook - why can't I use the old plug-in?

    It's nice that iPhoto '09 tried to help us with the Facebook exporter built-in. But why couldn't they make it useful? Why can't I tag people before I upload them? Why can't I upload photos to an existing album? I wouldn't mind so much, but they seemed to have disabled the existing (working) plug-in that was available. So now I have to export the pictures to my desktop and upload them through Facebook. Hmm...doesn't seem too user-friendly.

    Exporting to Facebook - why can't I use the old plug-in?
    Have you considered asking the author of the plug-in?
    It's nice that iPhoto '09 tried to help us with the Facebook exporter built-in. But why couldn't they make it useful?
    Millions upon millions of people do find it very useful
    Why can't I tag people before I upload them?
    You can - have you watched the iPhoto tutorials?
    Why can't I upload photos to an existing album?
    You can IF the album was created by iPhoto
    Do you have an iPhoto question that one of the iPhoto users who volunteer here might be able to help with?
    LN

  • Why can't I edit the Word doc I converted from a PDF?

    Why can't I edit the Word doc I converted from a PDF?
    Help! That is why I bought this software!

    Hi linda007,
    If you can't edit the file once it's converted to Word, it could be that the PDF was created from a scanned page, and then image text wasn't converted to searchable text. ExportPDF should perform Optical Character Recognition by default, but it can be disabled in Reader. Do you know whether OCR was disabled when you converted the page? If it wasn't, make sure that the correct language was selected for OCR. This option appears at the bottom of the ExportPDF panel in Reader, and in the Document Language (for Text Recognition) pop-up menu that appears after you select your file to convert in the ExportPDF online service.
    If everything seems to have been set correctly, and you still can edit the text, please try triple-clicking to select the text in Word. Did that do the trick?
    Best,
    Sara

  • If Firefox 20 is in Private Browsing mode then a possible persona is disabled and the default theme is used - oh god, no - what can I do to keep both?

    Cor-el answered on the 4.4.13: " If Firefox 20 is in Private Browsing mode then a possible persona is disabled and the default theme is used. So you will have to make a choice."
    Can I go back to an older version of FF? I really do not want to choose. Will that problem be fixed in FF 21? I really love Firefox, it has always been my favorite browser - but giving up the Personas will be hard and I don't understand why I have to...
    How do I reinstall an older version of FF? Is there another solution?

    Remember to use the per window Private Browsing when you are doing banking or other confidential / financial work.
    One option is now
    * '''Firefox Button -> New Private Browsing Window'''
    * (Linux / xp File -> New Private Browsing Window)
    * see [[Private Browsing - Browse the web without saving information about the sites you visit]]
    You may even benefit from saving your History.It improves the functionality of the location bar / ''awesome-bar ''
    *[[Awesome Bar - Find your bookmarks, history and tabs when you type in the address bar]]

Maybe you are looking for

  • How to restore after clean install(manually)?

    Hi everyone, I had done a clean install from 10.8.5 to 10.9.3, but I do't want using migration assistant to help restore, I just want to restore some data and my account & ID I had typed in the setup screen by myself HERE IS WHAT I WANT TO RESTORE: G

  • Removing nokia mail for exchange

    I installed mail for exchange on my 5530 and removed shortly after because there is no way to sign off or turn wifi off. Even though I removed Mail for exchange I still see it as an option when I try to send a photo from gallery. Any ideas how to get

  • Flexible payment term

    Hi everybody I would like to ask if it's possible to create new payment term totally flexible: the customer wants to have different amount  (not linked to percentages) to fix the payment both with vendors and customers. And this changes every time a

  • Report not hitting pre seed cahe created using iBot by Admin

    Hi, We created an iBot to pre seed the cache using Administrator and it is creating the cache but when normal user run this particular report for the 1st time it's not hitting the cache(created using iBot). all the subsequest users request hitting th

  • RFQ Reminders (MAHN)

    SAP ECC 6.0 I am attempting to set up urging reminders for vendor RFQ's. I have it to the point where I have updated the Purchasing Value Key, with 1, 2, and 3 days.  My RFQ (ME41) inherits these values from the Purch Info Record. I can get the 1st r