Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

Which operating system are you using?
In photoshop elements 6, as far as i know, you can only change the Reference Point Location for transforms using the small grid in the left hand corner of the tool options bar with Transform enabled.

Similar Messages

  • Getting Errors while setting the Transformation Function

    Hello All,
    I was trying to attach a Transformation function to existing capture process.
    But I am getting ORA-30625 error while I was trying to set my transformation function to one of the
    DBA rule_names.
    Following are details:
    SQL> select rule_name from dba_rules;
    RULE_NAME
    TEMP1
    TEMP3
    TEMP5
    TEMP7
    SQL> DECLARE
    2 action_ctx SYS.RE$NV_LIST;
    3 ac_name VARCHAR2(30) := 'STREAMS$_TRANSFORM_FUNCTION';
    4 BEGIN
    5 SELECT RULE_ACTION_CONTEXT
    6 INTO action_ctx
    7 FROM DBA_RULES R
    8 WHERE RULE_OWNER='STRMADMIN' AND RULE_NAME='TEMP1';
    9 action_ctx.ADD_PAIR(ac_name,
    10 SYS.ANYDATA.CONVERTVARCHAR2('hr.transformation'));
    11 DBMS_RULE_ADM.ALTER_RULE(
    12 rule_name => 'strmadmin.temp1',
    13 action_context => action_ctx);
    14 END;
    15 /
    DECLARE
    ERROR at line 1:
    ORA-30625: method dispatch on NULL SELF argument is disallowed
    ORA-06512: at line 9
    Can any body suggest me what to do...
    Thanks in advance.
    Regards,
    Srinivas Jaltaru
    ( [email protected] )

    Hello
    I added the line you suggested, Compiling is done successfully, But Capture process
    is not invoking the Transformation function that I have assigned to it.
    Transformation function I am using is :
    create or replace function scott.transformation (in_any IN SYS.AnyData)
    RETURN SYS.AnyData
    IS
    rc NUMBER;
    BEGIN
    insert into scott.log values ('abc');
    return in_any;
    end;
    1) Any extra initialization parameters are required..?
    2) My Streams environment is having only a Capture process for capturing changes. There are no other
    components like propagation, apply.
    Appreciating your suggestions.
    Thanks in advance.
    Srinivas Jaltaru
    ( [email protected] )
    Put the following line
    action_ctx := SYS.RE$NV_LIST(SYS.RE$NV_ARRAY());
    on the line immediately preceding the call to ADD_PAIR.
    This should allow the pl/sql function to compile successfully.

  • How do I properly use the HDR function in Photoshop CS4?

    It appears that I must be doing something wrong when attempting to use the HDR capability in Photoshop CS4.  I follow the tutorials.  I go to File>Automate>Merge to HDR.  Then I select the bracketed photos to merge.  I have used RAW file combinations of "normal" with +1 and -1 exposures, and "normal" with +2 and -2 exposures.  Inevitably the result comes out looking like the most overexposed shot...or even more washed out.  Since CS4 normally works for me as intended, I feel that I must be doing something wrong with the HDR function.  Can anyone offer any helpful suggestions?  Thanks!

    Don't feel bad.  While I haven't seen just what you're describing, the Merge to HDR function seems, in my opinion, kind of a bust.  I can't say I've seen any "magic" at all in the way it combines the exposures.
    I've tried to use it several times and I just don't see results that make me feel it's worth using.  I have in every case been able to make better images out of a single well-exposed raw file than with the Merge to HDR function and several bracketed exposures (even with CS5's Merge to HDR Pro).
    If people offer suggestions here, I'll be trying them too.
    -Noel

  • How can I have keyframes on one layer proceed while using the gotoAndStop function?

    I have a Flash presentation that allows me to pair videos with the slides using a nice piece of ActionScript. The presentation advances to the slide on the next keyfram when the viweer clicks the "next button" and the video for that keyframe (on a separate layer) begins playing.
    owever, I am now trying to pair two slides with the same video without having the video restart or requiring the viewer to click the"next slide button" I was hoping I could just turn the two slides into a video clip, convert it into a symbol and insert the symbol in place of the static slide, but nothing seems to happen. I'm wondering if the "gotoAndStop" function in the ActionScript is preventing it from playing.
    Any thoughts on how I can have the presentation be controlled by the next and previous buttons most of the time, but have the exception of one slide that changes on its own? The relevant (I believe) code is below.
    Thanks!
    Julien
    // FUNCTIONS AND LOGIC
    function fl_prevSlide():void
              if(slides_mc.currentFrame > 1)
                        slides_mc.gotoAndStop(slides_mc.currentFrame-1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);
    function fl_nextSlide():void
              if(slides_mc.currentFrame < slides_mc.totalFrames)
                        slides_mc.gotoAndStop(slides_mc.currentFrame+1);
                        if(transitionOn == true)
                                  fl_doTransition();
                        if(pageNumberOn == false)
                                  slideNumber_txt.text = "";
                        } else {
                                  slideNumber_txt.text = String(slides_mc.currentFrame + "/" + slides_mc.totalFrames);

    Try this code. Replace FLVmovie with the instance name of your FLV & set the time to when the frames shoudshould advance.
    import flash.events.Event;
    this.addEventListener(Event.ENTER_FRAME, checkTime);
    function checkTime(e:Event):void {
          if (this.FLVmovie.playheadTime >= 15)  // This is the playhead time in seconds
              this.gotoAndStop("frame label or frame #");
              this.removeEventListener(Event.ENTER_FRAME, checkTime);

  • Error while using the validate function in SwitchExec

    I have created a Route in SwitchExec for connecting channels COM0 and COM1 for a particular switch in SwitchExec. I get the error: (Hex 0xBFFA0001) Instrument error detected.
    The same connection works fine when run directly through the LabWindows/CVI function panel.
    Has anyone faced a similar problem?

    This error comes from the instrument driver, not switch executive. If this is a driver you developed, I suggest debugging the driver using the simple application that does the same thing as the validation process:
    - open niSE session
    loop through all routes
    - connect route
    - disconnect route
    end loop
    loop through all route groups
    - connect route group
    - disconnect route group
    end loop
    - close niSE session
    You can write this application in CVI, and use the debug version of your driver which I presume is written in CVI. That way you can step through your driver's SetPath function (which is called from NI Switch Executive) and see why it fails with the 0xbffa0001 error.
    You can also reuse existing NI Switch Executive sample programs in C
    VI to reproduce the problem you were seeing in the validator.
    If the driver is provided by a third party, and you have the source code for it, you can try the same procedure as above, and then either fix the driver yourself or inform the original developers about the problem.
    If the driver did not come with a source code, then contact the company that provided the driver with the way to reproduce a problem.
    For future reference, when you run into a problem that looks like it is coming from the specific driver (which was the case here) it would help if you also mentioned which driver did you use.
    Srdan Zirojevic

  • Error i am getting while using the evaluate function in a reprot

    hi all,
    can't we use semicolon in Evaluate function
    Semicolon is not allowed in Evaluate Functions without proper escape i.e. \; (HY000)
    SQL Issued: {call NQSGetQueryColumnInfo('SELECT case when 1=0 then USER_INFORMATION.USERNAME else EVALUATE(''my_func(%1,%2,%3)'',''aa'',''bb'',''Hindu;All Natl and Local'') end FROM xxx_xxx_xx')}
    SQL Issued: SELECT case when 1=0 then USER_INFORMATION.USERNAME else EVALUATE('my_func(%1,%2,%3)','aa','bb','Hindu;All Natl and Local') end FROM xxx_yyy
    Thnx

    Hi,
    Try this
    EVALUATE('my_func(%1,%2,%3)','aa','bb','Hindu\;All Natl and Local')Without any proper escape character '\' obiee(EVALUATE function) will not accept ';'
    Thanks,
    Saichand.v

  • Problems using the healing brush in Photoshop Elements 7

    I follow directions and it works for areas of that size. I can't change the size of brush.   I Alt-Click on good area, but am not sure what dragging over flaw means. I try clicking on bad area to make disappear.  That was  the way my old Adobe Business Edition worked.

    Drag means: click with mouse at one end of flawed area. Keep holding the mouse button down as you move your cursor to the end of the flawed area. Release mouse button.
    You can change the size of the brush in the options bar, or by pressing ] to make it larger and [ to make it smaller.

  • Using the Organizer interface | Learn Photoshop Elements 9 | Adobe TV

    With some images imported into the Organizer, you're ready to manage, optimize, and share your images. Learn about the Organizer interface so you can find your way around easily.
    http://adobe.ly/zIsjlc

    How do I put photos on a DVD?

  • Photoshop CC: Can't use the 3d function???

    Hello,
    I need help one this. I can't use the 3d function in photoshop cc and it gives me this error:
    http://i.imgur.com/Zn7e47d.png
    And here are my performance settings:
    http://i.imgur.com/A8rCi8J.png
    And here is the vram of my gpu:
    http://i.imgur.com/sSr5Knb.png
    And here is the paste from the system info thing:
    0bin - encrypted pastebin
    Ohh and i use windows 7 ultimate
    Anyone knows a fix for this as i can't live without
    Thanks!
    Regards,

  • New feature: pressing alt while using the anchor point tool

    Hello,
    New feature doesn't work at my side ==> pressing alt while using the anchor point tool would allow to pair the handles again while dragging a handle. But if i press alt or if i do not press it, it does not change the working of my anchor point tool or handles. When i press alt i see the little sign apearing next to my cursor and that's all. Someone an idea what could be the problem?
    Thank you for your help.
    Tommy

    thank you!!!!! I clicked and dragged before..didn't understood apparently the function of the new feature for 100% ;-)

  • Reference point locater missing, x and y always zero

    Hey,
    I don't know how it happened, but it sure did and its making me crazy! My reference point locater is nonfunctioning. The x and y axis points are always zero. Knowing what happened would be fine but knowing how to fix it would be a miracle! Anybody?

    Cindy,
    One of the first things to try is to Move the folder, see instructions and explanations here: http://www.bugge.com/Family-and-friends/Illy/illy.html

  • I'm unable to change my install location for my apps.

    I'm unable to change my install location for my apps. I changed the preferences to the harddrive I want the apps to download to, but they keep trying to download to C.I don't have enough room on that drive

    Fixed. It seems like for whatever reason it took a good 10 - 15 minutes for it to recognize the changes in the preference menu

  • Final cut pro quit unexpectedly while using the CUDA plug-in?

    Hello,
       FCP 7 quits on Quicktime conversion export every single time.
         Just to give some information as to how this issue started, we recently had to send our Mac early 2009 OSX 10.8.5 to get repaired because of permissions issues with the start-up drive.  We had been running 10.8.5 and Final Cut Pro 7.0.3 for a while without any major issues.  We also have a 3rd party graphics card installed, the Sapphire HD 7950 for mac which has been running for about six months and still seems to operate correctly.  As part of the repair the Apple certified shop re-installed our OSX.
    After they re-installed our OS, I ran Final Cut Pro 7 and realized that I was unable to export using Quicktime Conversion.  Every time I try to export using Quicktime Conversion, Final Cut Pro instantly crashes saying "Final Cut Pro Quit Unexpectedly while using the CUDA plug-in".  I asked Sapphire/AMD Radeon support what the problem was and they said this is a Final cut pro problem and not related to their card.  Their response was "CUDA isn't supported by AMD hardware in MacOSX.  My best guess is that either an option was turned on in Final Cut Pro to use CUDA, or the program is doing some sort of detection (possibly on installed NVIDIA Drivers).  Without the NVIDIA hardware, the drivers would be running and hence the active but unsupported CUDA would fail." 
         Below is the log from the error that happens when I try to export using quicktime conversion.  Any help would be greatly appreciated.  Thank you.
    Process:         Final Cut Pro [17868]
    Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier:      com.apple.FinalCutPro
    Version:         7.0.3 (7.0.3)
    Build Info:      FCPApp-1008261348~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [195]
    User ID:         503
    PlugIn Path:       /Library/FrameWorks/CUDA.framework/CUDA
    PlugIn Identifier: com.nvidia.CUDA
    PlugIn Version:    5.5.47 (5.5.47)
    Date/Time:       2014-04-08 15:39:14.289 -0500
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          100749 sec
    Crashes Since Last Report:           12
    Per-App Interval Since Last Report:  104765 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      A7DB7158-63B1-6A05-6194-B48755ED702E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
        __TEXT                 0000000000001000-0000000000871000 [ 8640K] r-x/rwx SM=COW  /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Application Specific Information:
    /Library/FrameWorks/CUDA.framework/CUDA
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x90c99c12 CFStringCompare + 18
    1   com.nvidia.CUDA                         0x31d02f13 GetNVDADriverModelString + 371
    2   com.nvidia.CUDA                         0x31d067f0 cuda_driver_initializer + 112
    3   dyld                                    0x8fe9bcda ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 230
    4   dyld                                    0x8fe9bfde ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 64
    5   dyld                                    0x8fe98268 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 356
    6   dyld                                    0x8fe980ba ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 62
    7   dyld                                    0x8fe8ce0b dyld::runInitializers(ImageLoader*) + 88
    8   dyld                                    0x8fe92605 dlopen + 718
    9   libdyld.dylib                           0x91d5adbe dlopen + 68
    10  com.apple.CoreFoundation                0x90d13c42 _CFBundleDlfcnLoadFramework + 210
    11  com.apple.CoreFoundation                0x90cd9196 _CFBundleLoadExecutableAndReturnError + 822
    12  com.apple.CoreFoundation                0x90cd8de6 CFBundleGetFunctionPointerForName + 70
    13  com.apple.carbonframeworktemplate          0x6f1b7161 SMCudaInfo::SMCudaInfo() + 325
    14  com.apple.carbonframeworktemplate          0x6f13a2c1 CPluginCollection::LoadPlugins(char const*) + 35
    15  com.apple.carbonframeworktemplate          0x6f13a55b CPluginCollection::Initialize(std::string const&, char const*) + 55
    16  SMIQTExporter                           0x6eacafde CAceCompressionEngine::Initialize(char const*, char const*, char const*, char const*) + 752
    17  SMIQTExporter                           0x6e9f9597 SMUIData::Initialize(std::string) + 135
    18  SMIQTExporter                           0x6e9f8e4b MaybeInitUiData() + 123
    19  SMIQTExporter                           0x6e9f9204 GetUserOptionsHelper(std::string&, std::string&, bool) + 36
    20  SMIQTExporter                           0x6e9f93a0 GetUserOptionsFromUI + 96
    21  com.apple.sorensonmedia                 0x0e41411c GetUserOptions(std::string&, std::string&, bool) + 176
    22  com.apple.sorensonmedia                 0x0e4143c1 LoadUserOptions + 151
    23  com.apple.sorensonmedia                 0x0e41531a SMIMovieExportGetFileNameExtension + 140
    24  com.apple.CoreServices.CarbonCore          0x955b5adb callComponentStorage_44 + 25
    25  com.apple.CoreServices.CarbonCore          0x955a6abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    26  com.apple.CoreServices.CarbonCore          0x955a6aff CallComponentFunctionWithStorageProcInfo + 30
    27  com.apple.sorensonmedia                 0x0e414311 SMIMovieExportComponentDispatch + 137
    28  com.apple.CoreServices.CarbonCore          0x95520ade CallComponent + 151
    29  com.apple.CoreServices.CarbonCore          0x95520b38 CallComponentDispatch + 29
    30  com.apple.QuickTime                     0x9407f269 MovieExportGetFileNameExtension + 43
    31  com.apple.FinalCutPro.Plugins.QTM Reader          0x23df470e LongGOPChunkWriter::receiveSample(unsigned char const*, long long, unsigned long, long long, long long, SampleDescription**, unsigned long, unsigned long, long long, bool) + 12524
    32  com.apple.FinalCutPro                   0x0015e371 GetQTExportCompSubType(KGMessageableRec*, unsigned long*, unsigned long*) + 79
    33  com.apple.FinalCutPro                   0x001620a5 pKGExportQuickTimeDialog(KGDictInt*, long*, KGFileSpec*, KGMessageableRec**, void**, KGFileSpec*, long) + 543
    34  com.apple.FinalCutPro.Plugins.QTM Reader          0x23df22ae LongGOPChunkWriter::receiveSample(unsigned char const*, long long, unsigned long, long long, long long, SampleDescription**, unsigned long, unsigned long, long long, bool) + 3212
    35  com.apple.FinalCutPro                   0x0015093f HandleMenuCommand(long, unsigned char, unsigned char, unsigned char, KGErrorCode (*)(long, long, KGDictInt*, void*), void*) + 325
    36  com.apple.FinalCutPro                   0x00150b11 HandleCommand(long, unsigned char, unsigned char, unsigned char) + 263
    37  com.apple.FinalCutPro                   0x004149db CommandProcess(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 369
    38  com.apple.HIToolbox                     0x96eb99bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    39  com.apple.HIToolbox                     0x96d41394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    40  com.apple.HIToolbox                     0x96d40780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    41  com.apple.HIToolbox                     0x96d54655 SendEventToEventTarget + 88
    42  com.apple.HIToolbox                     0x96eb986a SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 498
    43  com.apple.HIToolbox                     0x96d30984 SendMenuCommandWithContextAndModifiers + 70
    44  com.apple.HIToolbox                     0x96d30931 SendMenuItemSelectedEvent + 268
    45  com.apple.HIToolbox                     0x96d307b6 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 134
    46  com.apple.HIToolbox                     0x96f05e7e MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 623
    47  com.apple.HIToolbox                     0x96f06dc6 MenuSelect + 171
    48  com.apple.HIToolbox                     0x96ebcc16 HIMenuBar::HandleMouseEvent(OpaqueEventRef*) + 102
    49  com.apple.HIToolbox                     0x96ebca65 HIMenuBar::HandleEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 165
    50  com.apple.HIToolbox                     0x96d419bf HIObject::EventHook(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 163
    51  com.apple.HIToolbox                     0x96eb99bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    52  com.apple.HIToolbox                     0x96d41394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    53  com.apple.HIToolbox                     0x96d40780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    54  com.apple.HIToolbox                     0x96d54655 SendEventToEventTarget + 88
    55  com.apple.HIToolbox                     0x96d745f6 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2188
    56  com.apple.HIToolbox                     0x96d4183f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    57  com.apple.HIToolbox                     0x96d40780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    58  com.apple.HIToolbox                     0x96d54655 SendEventToEventTarget + 88
    59  com.apple.HIToolbox                     0x96eb90b7 ToolboxEventDispatcher + 82
    60  com.apple.HIToolbox                     0x96eb8f79 RunApplicationEventLoop + 240
    61  com.apple.FinalCutPro                   0x001539d1 KGMainEvent(void*) + 51
    62  com.apple.FinalCutPro                   0x002c1278 main + 54
    63  com.apple.FinalCutPro                   0x00002d5b _start + 209
    64  com.apple.FinalCutPro                   0x00002c89 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x957fc9ae kevent + 10
    1   libdispatch.dylib                       0x97156c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x971567a9 _dispatch_mgr_thread + 53
    Thread 2:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x957fbbe6 __select + 10
    1   com.apple.CoreFoundation                0x90cf5650 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x0042911f DisplayQueue::Run() + 681
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x957fbc02 __select_nocancel + 10
    1   libsystem_kernel.dylib                  0x957fa67b select + 92
    2   com.genarts.SapphireAE.plugins          0x27685721 DFTI_SET_VALUE_SGLVAL + 33127
    3   com.genarts.SapphireAE.plugins          0x27677501 jpeg_stdio_src + 1793
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.FinalCutPro                   0x0043f42b Synchronizable::Wait() + 53
    4   com.apple.FinalCutPro                   0x004e67c3 WorkUnitPerformer::Run() + 55
    5   com.apple.FinalCutPro                   0x0046b49a Thread::RunHelper(void*) + 20
    6   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x957f98e2 mach_wait_until + 10
    1   com.apple.CoreServices.CarbonCore          0x95559592 MPDelayUntil + 29
    2   com.apple.CoreServices.CarbonCore          0x9556a8bd Delay + 90
    3   com.redgiantsoftware.trapcode.Starglow          0x2eb634e0 RGS::SerialServer::ThreadProcess() + 54
    4   com.apple.CoreServices.CarbonCore          0x95558a7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    6   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x957f97ce mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x957f8cac mach_msg + 68
    2   com.apple.CoreFoundation                0x90cabf79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x90cb195f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x90cb101a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x90cc0ab1 CFRunLoopRun + 129
    6   com.apple.DVCPROHDMuxer                 0x2ecb998f AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 317
    7   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x957f97ce mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x957f8cac mach_msg + 68
    2   com.apple.CoreFoundation                0x90cabf79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x90cb195f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x90cb101a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x90cb0e8b CFRunLoopRunInMode + 123
    6   com.apple.CoreMediaIOServicesPrivate          0x0110eb76 MIO::DAL::RunLoop::OwnThread(void*) + 146
    7   com.apple.CoreMediaIOServicesPrivate          0x0111106f CAPThread::Entry(CAPThread*) + 151
    8   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    9   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x957f97ce mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x957f8cac mach_msg + 68
    2   com.apple.CoreFoundation                0x90cabf79 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x90cb195f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x90cb101a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x90cc0ab1 CFRunLoopRun + 129
    6   com.apple.qmaster.do                    0x32cce460 swamp::CRAdReceiver2::ReceivingThread::runOnce() + 234
    7   com.apple.AECore                        0x3281a022 aecore::CThread::runThread() + 34
    8   com.apple.AECore                        0x32817fb9 threadProc(void*) + 17
    9   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x957fbbe6 __select + 10
    1   com.apple.AECore                        0x3281a067 aecore::CThread::runThread() + 103
    2   com.apple.AECore                        0x32817fb9 threadProc(void*) + 17
    3   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    4   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d09572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x955856ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x95585184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x9558540d TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x979b823c 0x973c2000 + 6251068
    7   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 18:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 19:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 20:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 21:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 22:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 23:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 24:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 25:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 26:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 27:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 28:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 29:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 30:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 31:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 32:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x97acf48e 0x973c2000 + 7394446
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 33:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 35:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 36:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 37:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 38:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 39:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 40:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94d092e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x94d96ae4 pthread_cond_wait + 48
    3   com.genarts.SapphireAE.plugins          0x275ca7ff mp_main_thread_p_internal + 1631
    4   libsystem_c.dylib                       0x94d045b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x94ceedce thread_start + 34
    Thread 41:
    0   libsystem_kernel.dylib                  0x957fb8e2 __psynch_cvwait + 10

    Thank you Michael. 
    I was exporting a QT Movie and bringing into compressor but there was a further problem of Compressor greying out the "submit" button, so that option wasn't available when I posted. 
        Your solution led me in the right direction to fix my problem.  The Digital Rebellion application is very good and when I ran the crash analyzer, it still said the CUDA plugin was the culprit.  But when I tried looking at the available plugins, it didn't show up.  I ran a search for the plugin and found that there was a folder under Library>Frameworks>CUDA.framework.  I copied that folder into a folder I made on the desktop (because I didn't want to delete something that the computer needed to run) and then deleted it from the Framework folder.  I knew that our third party graphics card we installed didn't support CUDA, so I thought I'd be okay risking this; I could also replace that folder from the desktop if something major happened.  I restarted and then tried exporting using QT Conversion.  It worked!
        Next problem then was Compressor.  I needed to find out why compressor's submit button was greyed out.  The application seemed to work fine, the version of compressor and Q master were the same, 3.5.3, but it didn't allow me to submit anything. I ran compressor repair from the Digital Rebellion application and it didn't change things.  I read up a while on why this was happening and found on a support community that had similar issues.  Many people on it said this update for Pro Applications fixed their problems:
    http://support.apple.com/kb/dl949
    So I think, now my computer is running the same way as it was before (except for Sorenson Squeeze which I need to fix).  Thanks for the help!

  • Error while defining class: com.crystaldecisions.data.xml.CRDB_XMLImpl This error indicates that the class: OCA.OCAdbdll.DbDLLOperations could not be located while defining the class: com.crystaldecisions.data.xml.CR...

    Post Author: lkamesam
    CA Forum: Integrated Solutions
    Hi,
            I am running Crystal Reports version 10 from IBM Rational 6.0.1  build 20050725_1800 XML data source. When I try to run the report under WAS 6.0.1 I get the following error:
    Does any body have any clue how to resolve my problem? Thanks
    Error 500: Error while defining class: com.crystaldecisions.data.xml.CRDB_XMLImpl This error indicates that the class: OCA.OCAdbdll.DbDLLOperations could not be located while defining the class: com.crystaldecisions.data.xml.CRDB_XMLImpl This is often caused by having the class at a higher point in the classloader hierarchy Dumping the current context classloader hierarchy: ==> indicates defining classloader *** indicates classloader where the missing class could have been found ==>&#91;0&#93; com.ibm.ws.classloader.CompoundClassLoader@163dd786 Local ClassPath: C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\classes;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\bobj_platform_jsf.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cecore.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\celib.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\ceplugins.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cereports.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\cesession.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\clientlogic.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\Concurrent.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CorbaIDL.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CRDBXMLExternal.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CRDBXMLServer.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalCharting.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalCommon.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalContentModels.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalExporters.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalExportingBase.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalFormulas.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalQueryEngine.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalReportEngine.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\CrystalReportingCommon.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\ebus405.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\icu4j.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\jrcerom.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\jsf_common.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\keycodeDecoder.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\log4j.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\MetafileRenderer.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rasapp.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rascore.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\rpoifs.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\serialization.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\URIUtil.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\webreporting-jsf.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\webreporting.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\xercesImpl.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent\WEB-INF\lib\xmlParserAPIs.jar;C:\Documents and Settings\Administrator\IBM\rationalsdp6.0\workspace\sample1\WebContent; Delegation Mode: PARENT_FIRST &#91;1&#93; com.ibm.ws.classloader.JarClassLoader@338761606 Local Classpath: Delegation mode: PARENT_FIRST &#91;2&#93; com.ibm.ws.classloader.ProtectionClassLoader@38e75786 &#91;3&#93; com.ibm.ws.bootstrap.ExtClassLoader@7e475784 &#91;4&#93; sun.misc.Launcher$AppClassLoader@7e5a5784 &#91;5&#93; sun.misc.Launcher$ExtClassLoader@7e565784 -Original exception- java.lang.NoClassDefFoundError: OCA/OCAdbdll/DbDLLOperations at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java(Compiled Code)) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java(Compiled Code)) at com.ibm.ws.classloader.CompoundClassLoader._defineClass(CompoundClassLoader.java:576) at com.ibm.ws.classloader.CompoundClassLoader.findClass(CompoundClassLoader.java(Compiled Code)) at com.ibm.ws.classloader.CompoundClassLoader.loadClass(CompoundClassLoader.java(Compiled Code)) at java.lang.ClassLoader.loadClass(ClassLoader.java(Compiled Code)) at com.crystaldecisions.reports.queryengine.driver.i.<init>(Unknown Source) at com.crystaldecisions.reports.queryengine.driver.i.case(Unknown Source) at com.crystaldecisions.reports.queryengine.av.ak(Unknown Source) at com.crystaldecisions.reports.queryengine.av.else(Unknown Source) at com.crystaldecisions.reports.queryengine.av.byte(Unknown Source) at com.crystaldecisions.reports.queryengine.av.do(Unknown Source) at com.crystaldecisions.reports.queryengine.as.new(Unknown Source) at com.crystaldecisions.reports.queryengine.at.long(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source) at com.crystaldecisions.reports.reportdefinition.cy.b(Unknown Source) at com.crystaldecisions.reports.reportdefinition.cy.long(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.a(Unknown Source) at com.crystaldecisions.reports.common.ab.a(Unknown Source) at com.crystaldecisions.reports.common.ab.if(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.if(Unknown Source) at com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.a.a(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.a(Unknown Source) at com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown Source) at com.crystaldecisions.report.web.a.a.K(Unknown Source) at com.crystaldecisions.report.web.event.aa.a(Unknown Source) at com.crystaldecisions.report.web.event.aa.a(Unknown Source) at com.crystaldecisions.report.web.event.bx.a(Unknown Source) at com.crystaldecisions.report.web.event.b1.broadcast(Unknown Source) at com.crystaldecisions.report.web.event.as.a(Unknown Source) at com.crystaldecisions.report.web.WorkflowController.if(Unknown Source) at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source) at com.crystaldecisions.report.web.ServerControl.a(Unknown Source) at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source) at com.crystaldecisions.report.web.viewer.taglib.ServerControlTag.doEndTag(Unknown Source) at com.crystaldecisions.report.web.viewer.taglib.ReportServerControlTag.doEndTag(Unknown Source) at com.ibm._jsp._sample._jspx_meth_crviewer_viewer_0(_sample.java:135) at com.ibm._jsp._sample._jspService(_sample.java:77) at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:88) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212) at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629) at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:117) at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:171) at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230) at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2837) at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220) at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204) at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681) at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367) at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:276) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:201) at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:103) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601) at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934) at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021) at

    For those who would have the same problem, here is how I could eventually fix it.
    Since the Flex Test Drive is sometimes out of sync with flash builder 4, I recreated a project using other help pages on Adobe site :
    Entry point :
    http://help.adobe.com/en_US/Flex/4.0/AccessingData/WSbde04e3d3e6474c4-668f02f4120d422cf08- 7ffd.html
    As suggested, I used the New Project wizard to create a new project, with :
    Application server type : J2EE
    Check the radio button "Use remote object access service : BlazeDS"
    Then, as indicated in following pages (section "Accessing BlazeDS")... :
    file:///C:/Mes%20documents%20C/Commun/Developpement/Documentation/HT-Tracks/AccessingData/ help.adobe.com/en_US/Flex/4.0/AccessingData/WSbde04e3d3e6474c4-668f02f4120d422cf08-7ffe.ht ml#WSbde04e3d3e6474c4-19a3f0e0122be55e1b7-8000
    ...I selected the "Data / Connect to Data/Services..." menu option, which started the Data/service connection wizard.
    There, I selected a BlazeDS (and not Web Services) service type, and everything went fine.
    Suggestion to adobe staff : maybe it would be useful to update the Flex Test Drive to reflect Flash Builder 4 ?
    Very nice product anyway, so far, congratulations...
    Rgds
    Marc.

  • Schedule lines not updating while using the BAPI_SCHEDULE_MAINTAIN

    Hi all,
    I am using BAPI_SCHEDULE_MAINTAIN to change the schedule line delivery date and schedule line quantity
    while i was changing using t-code ME38 it is changing but while using the above mentioned BAPI i am getting the below errors
    1)Instance PurchSchedagreement of object type <schedule agreement no> could not be changed
    2)Delivery date outside period covered by factory calendar H2.
    Any idea??
    Regards,
    Satishreddy.

    Issue Resolved

Maybe you are looking for

  • Asset incomplete

    Dear Experts, I have created as asset through PO and I have set goods receipt check for it. not that I want to do MIGO for that asset, I receive following error: Asset 1100 111000000000-0 is incomplete, check the asset Message no. AAPO184 Diagnosis T

  • Profit center assistance requested

    We originally set up cost center 957 pointed to profit center 956.  On May 28, we changed it to point to profit center 957.  The problem is that the original costs posted to cost center 957 are updated to profit center 956. How we can fix the history

  • If I install FF 4, are my settings, plug-ins, add-ons, passwords, - lost ?

    This seems like the obvious information to have in the introduction to any 'upgrade' document. What will I gain' seems hyped, 'what will I lose' seems ignored. I spent a year or so, gradually getting Firefox 3 amended, setup, & configured as rqd for

  • Pkrb driver: What types of things should this speed up?

    Hi: I have a Java app that loads XML data into Oracle 8i using the XSU classes. Running outside of Oracle's JVM on an NT, it loads with a certain speed. I have code in there to choose the pkrb drivers when making a connection when applicable. When I

  • Error message 'Display only possible for print documents'

    Hi All, This issue is with the transaction code ME21N. When the user clicks on PRINT PREVIEW  it gives an error of 'Display only possible for print documents'. When the user clicks the MESSAGES tab and then COMMUNICATION METHOD tab it gives an error