Randome error

I have a gallery with a button inside a movie clip on my stage. When the button i puched it should navigate to another keyframe with the label "frontpage" back on the main timeline.
When I test the movie, the first time i puch the buttom it leads me back to "frontpage" but when I try a 2nd time it jumps back to "frontpage" but comes with this error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at delaneytrager2_fla::gallerytotal_16/clickHandler_back()[delaneytrager2_fla.gallerytotal_1 6::frame1:239]
The AS for the button is as follows:
stage.addEventListener(MouseEvent.CLICK, clickHandler_back);
function clickHandler_back(event:MouseEvent):void{
    if (event.target.name!=null){
        switch(event.target.name) {
            case "back_btn":
            MovieClip(root).gotoAndStop("frontpage2");
            break;
            default:
            trace("defaultbehavior");
Not really sure what to do about this error message..?

this is all the code from frame 1 i imagine it frame 1 inside the movie clip where my gallery is - since it's the only place there is 239 lines.
The button is basicly the back_btn from the post about "gallery name confussion" you just helped me out with. So it's how i can get out of my gallery movieclip and back on the mainstage to a specific frame.
This is all the code on frame1
var galWid:uint=879.95;
var galHei:uint=350;
var galX:Number=200;
var galY:Number=300;
var scale:Number=1.7;
var speed:Number=0.5;
var scrollX:uint=20;
var alignLeft:Boolean=false;
// Disse bliver kun brugt hvis alignLeft er 'true'
// Dete skal angives i ønskede koordinater.
var offsetX:Number = 40;
var offsetY:Number = 160;
import com.greensock.TweenLite;
import com.greensock.OverwriteManager;
import com.greensock.plugins.*;
TweenPlugin.activate([TransformAroundCenterPlugin,AutoAlphaPlugin]);
var loader:URLLoader = new URLLoader();
var images:XML;
var imageArray:Array = new Array();
var imgNum:uint=0;
var imgLen:uint;
var imgX:uint=0;
var curImg:uint;
var exposed:Boolean=false;
OverwriteManager.init(2);
back_btn.x=600
back_btn.y=300
prevBtn.visible=false;
nextBtn.visible=false;
nextBtn.addEventListener(MouseEvent.CLICK, nextImg);
prevBtn.addEventListener(MouseEvent.CLICK, prevImg);
gallery.addEventListener(MouseEvent.MOUSE_MOVE,scrollImage);
gallery.addEventListener(MouseEvent.MOUSE_OUT, offImage);
loader.addEventListener(Event.COMPLETE, setup);
loader.load(new URLRequest("xml/rabitsketch.xml"));
function setup(e:Event):void {
    images=new XML(e.target.data);
    imgLen=images.image.length();
    galMask.width=galWid;
    galMask.height=stage.stageHeight;
    galMask.x=galX;
    galMask.y=stage.stageHeight*0.5;
    gallery.x=galX;
    gallery.y=galY;
    addImage();
function addImage():void {
    var img:imgCon = new imgCon();
    imageArray.push(img);
    img.con.source=images.image[imgNum].src;
    img.con.addEventListener(Event.COMPLETE,comImage);
    img.addEventListener(MouseEvent.CLICK,expImage);
    img.addEventListener(MouseEvent.MOUSE_OVER, onImage);
    function comImage(e:Event):void {
        TweenLite.from(img,0.5,{alpha:0});
        img.con.height=galHei;
        e.target.content.smoothing=true;
        img.con.width=(img.width/img.height)*img.con.height;
        img.x=imgX;
        img.num=imgNum;
        img.des1=images.image[imgNum].des1;
        img.des2=images.image[imgNum].des2;
        imgX+=img.con.width;
        gallery.addChild(img);
        imgNum++;
        if (imgNum<imgLen) {
            addImage();
function scrollImage(Event):void {
    if (gallery.width>galWid) {
        var procent:Number = ((mouseX-galX)/galWid);
        if (procent<0.1) {
            procent=0;
        if (procent>0.9) {
            procent=1;
        TweenLite.to(gallery, scrollX, {x:galX-(gallery.width-galWid)*procent, y:galY});
        TweenLite.to(gallery, scrollX, {x:galX-(gallery.width-galWid)*procent, y:galY});
    } else {
        TweenLite.to(gallery,speed,{y:galY, x:galX});
function onImage(e:MouseEvent):void {
    desTxtSmall.htmlText=e.currentTarget.des1;
function offImage(e:MouseEvent):void{
    desTxtSmall.htmlText='';
function expImage(e:MouseEvent):void {
    curImg=e.currentTarget.num;
    gallery.setChildIndex(imageArray[curImg], gallery.numChildren - 1);
    imageArray[curImg];
    if (! exposed) {
        for (var i=0; i<gallery.numChildren; i++) {
            TweenLite.to(gallery.getChildAt(i),speed,{autoAlpha:0});
        exposed=true;
        toggleBtns();
        gallery.removeEventListener(MouseEvent.MOUSE_MOVE, scrollImage);
        e.currentTarget.removeEventListener(MouseEvent.MOUSE_OUT, hideDes);
        e.currentTarget.removeEventListener(MouseEvent.MOUSE_OVER, showDes);
        e.currentTarget.removeEventListener(MouseEvent.CLICK, expImage);
        e.currentTarget.addEventListener(MouseEvent.CLICK, minImage);
        desTxt.visible=true;
        desTxtSmall.visible=false;
        desTxt.htmlText=e.currentTarget.des2;
        if (alignLeft) {
            TweenLite.to(galMask,0.5,{x:offsetX,width:stage.stageWidth});
            TweenLite.to(gallery, speed,{x:-e.currentTarget.x+offsetX+((e.currentTarget.width*scale-e.currentTarget.width)* 0.5)});
            TweenLite.to(e.currentTarget,speed,{autoAlpha:1, transformAroundCenter:{scaleX:scale, scaleY:scale}, y:-galY+offsetY});
        } else {
            TweenLite.to(galMask,0.5,{x:galX+galWid*0.5-(e.currentTarget.width*0.5*scale),width:stage .stageWidth});
            TweenLite.to(gallery, speed,{x:-e.currentTarget.x-e.currentTarget.width*0.5+(galWid*0.5)+galX});
            TweenLite.to(e.currentTarget,speed,{autoAlpha:1, transformAroundCenter:{scaleX:scale, scaleY:scale}});
function minImage(e:Event):void {
    exposed=false;
    back_btn.x=600
    back_btn.y=300
    prevBtn.visible=false;
    nextBtn.visible=false;
    TweenLite.to(galMask,0.5,{x:galX, width:galWid});
    for (var i=0; i<gallery.numChildren; i++) {
        TweenLite.to(gallery.getChildAt(i),speed,{autoAlpha:1});
    e.currentTarget.removeEventListener(MouseEvent.CLICK, minImage);
    e.currentTarget.addEventListener(MouseEvent.CLICK, expImage);
    gallery.addEventListener(MouseEvent.MOUSE_MOVE, scrollImage);
    desTxt.visible=false;
    desTxtSmall.visible=true;
    //TweenLite.to(desTxt,speed,{x:txtMinX, y:txtMinY});
    TweenLite.to(e.currentTarget,speed,{transformAroundCenter:{scaleX:1, scaleY:1},y:0});
    TweenLite.to(gallery,speed,{y:galY});
    //TweenLite.to(galMas,speed,{height:galHei*scale, width:galWid, y:galY, x:galX});
    scrollImage(null);
function showDes(e:Event):void {
    if (! exposed) {
        desTxt.visible=true;
        desTxt.htmlText=e.target.des1;
function hideDes(e:Event):void {
    if (! exposed) {
        desTxt.visible=false;
function nextImg(Event) {
    if (curImg<imgLen-1) {
        imageArray[curImg].addEventListener(MouseEvent.CLICK, expImage);
        imageArray[curImg].removeEventListener(MouseEvent.CLICK, minImage);
        TweenLite.to(imageArray[curImg],0.5,{transformAroundCenter:{scaleX:1, scaleY:1},autoAlpha:0, y:0});
        var nextImg=imageArray[++curImg];
        gallery.setChildIndex(nextImg, gallery.numChildren - 1);
        nextImg.removeEventListener(MouseEvent.CLICK, expImage);
        nextImg.addEventListener(MouseEvent.CLICK, minImage);
        desTxt.htmlText=nextImg.des2;
        if (alignLeft) {
            TweenLite.to(gallery, speed,{x:-nextImg.x+offsetX+((nextImg.width*scale-nextImg.width)*0.5)});
            TweenLite.to(nextImg,speed,{autoAlpha:1, transformAroundCenter:{scaleX:scale, scaleY:scale}, y:-galY+offsetY});
        } else {
            TweenLite.to(gallery, speed,{x:-nextImg.x-nextImg.width*0.5+(galWid*0.5)+galX});
            TweenLite.to(nextImg,speed,{autoAlpha:1, transformAroundCenter:{scaleX:scale, scaleY:scale}});
        toggleBtns();
function prevImg(Event) {
    if (curImg>0) {
        imageArray[curImg].addEventListener(MouseEvent.CLICK, expImage);
        imageArray[curImg].removeEventListener(MouseEvent.CLICK, minImage);
        TweenLite.to(imageArray[curImg],0.5,{transformAroundCenter:{scaleX:1, scaleY:1},autoAlpha:0,y:0});
        var prevImg=imageArray[--curImg];
        gallery.setChildIndex(prevImg, gallery.numChildren - 1);
        prevImg.removeEventListener(MouseEvent.CLICK, expImage);
        prevImg.addEventListener(MouseEvent.CLICK, minImage);
        desTxt.htmlText=prevImg.des2;
        if (alignLeft) {
            TweenLite.to(gallery, speed,{x:-prevImg.x+offsetX+((prevImg.width*scale-prevImg.width)*0.5)});
            TweenLite.to(prevImg,speed,{autoAlpha:1, transformAroundCenter:{scaleX:scale, scaleY:scale}, y:-galY+offsetY});
        } else {
            TweenLite.to(gallery, speed,{x:-prevImg.x-prevImg.width*0.5+(galWid*0.5)+galX});
            TweenLite.to(prevImg,speed,{autoAlpha:1, transformAroundCenter:{scaleX:scale, scaleY:scale}});
        toggleBtns();
function toggleBtns():void {
    if (curImg>0) {
        prevBtn.visible=true;
    } else {
        prevBtn.visible=false;
    if (curImg<imgLen-1) {
        nextBtn.visible=true;
    } else {
        nextBtn.visible=false;
    back_btn.x=250
    back_btn.y=225
stage.addEventListener(MouseEvent.CLICK, clickHandler_back);
function clickHandler_back(event:MouseEvent):void{
    if (event.target!=null){
        switch(event.target.name) {
            case "back_btn":
            MovieClip(root).gotoAndStop("frontpage2");
            break;
            default:
            trace("defaultbehavior");
stop();

Similar Messages

  • IPHONE 5: can't receive calls & random error messages, such as "could not activate cellular data network" and "no connection - network unavailable, please connect to wifi or cellular network."  This occurs even when signal strength or wifi is operational.

    IPHONE 5:  can't receive calls and random error messages, such as "could not activate cellular data network" and "no connection - network unavailable, please connect to wifi or cellular network."  This occurs even when signal strength or wifi is operational, and it does not matter whether wifi is on or off.  ATT went through the standard protocol - resetting network, resetting sim card, etc.  No changes.  Other phones working fine in same region with same carrier.  Apple's solution is to restore software, but haven't gone there yet.  Anyone successfully addressed this/these issues?   

    I should point out that it worked when the iPhone was set back to factory settings, but when restored with the backup, data/internet no longer works again, and I get the "Could not activate cellular data network" error message yet again.

  • C++ application with pro*c generating random errors

    Hi there,
    As described, I have a C++ application with a pro*c module to access the DB. The problem is that it produces random errors.
    Randomly, it fails executing a query, but other times it fails in other modules, or just opening a cursor. I list you two examples of queries that fail:
    ================================================================
    CHECK_CONNECTED
    EXEC SQL BEGIN DECLARE SECTION;
    long Id_db;
    long startValidityMicroseconds_db;
    long stopValidityMicroseconds_db;
    VARCHAR name_db [LEN_NAME + 1];
    VARCHAR creationDate_db [LEN_DATE + 1];
    VARCHAR startValidityDate_db [LEN_DATE + 7 + 1];
    VARCHAR stopValidityDate_db [LEN_DATE + 7 + 1];
    short name_db_ind;
    EXEC SQL END DECLARE SECTION;
    // Set the key
    Id_db = Id
    EXEC SQL SELECT NAME,
                             TO_CHAR(CREATION_DATE, :DATE_FORMAT),
                             TO_CHAR(START_VALIDITY_DATE, :DATE_FORMAT),
                             TO_CHAR(STOP_VALIDITY_DATE, :DATE_FORMAT),
                             NVL (START_VALIDITY_MICROSECONDS ,0),
                             NVL (STOP_VALIDITY_MICROSECONDS ,0),
    INTO :name_db :name_db_ind,
         :creationDate_db,
         :startValidityDate_db,
         :stopValidityDate_db,
         :startValidityMicroseconds_db,
         :stopValidityMicroseconds_db,
    FROM ROP_TB
    WHERE ID = :Id_db;
    ================================================================
    ================================================================
    CHECK_CONNECTED
    EXEC SQL BEGIN DECLARE SECTION;
         long objectId_db;
         VARCHAR objectName_db [LEN_OBJECT_NAME + 1];
    EXEC SQL END DECLARE SECTION;
    strncpy ((char *) objectName_db.arr, object_db.c_str (), LEN_OBJECT_NAME);
    objectName_db.len = object_db.length ();
    EXEC SQL DECLARE CU_OBJECT_TB CURSOR FOR
    SELECT OBJECT_ID INTO :objectId_db
    FROM OBJECT_TB
    WHERE OBJECT_NAME = :objectName_db;
    EXEC SQL OPEN CU_OBJECT_TB;
    ================================================================
    It keeps failing randomly and I don't know really know what my eyes are missing. Sometimes I get a "simple" seg fault because a query returned invalid values and my application crashes, other times I get oracle errors.
    I really hope someone could help me here :)
    Kind regards!

    Well, random because it is not always the same nor the error code.
    - Sometimes I get segmentation fault on "sqlcxt";
    - "ORA-01024: invalid datatype in OCI call" on queries that usually work
    - "ORA-03114: not connected to ORACLE" on queries that usually work
    I have run valgrind and the only "place" where there could be an issue is reported to be caused by oracle libs:
    ==27055== 8,214 bytes in 1 blocks are possibly lost in loss record 193 of 206
    ==27055== at 0x40046FF: calloc (vg_replace_malloc.c:279)
    ==27055== by 0x43E2975: nsbal (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x42F04E6: nsiorini (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x4300FD2: nsopenalloc_nsntx (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x42FFD73: nsopenmplx (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x42F91FD: nsopen (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x42BDAFE: nscall1 (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x42BB0D7: nscall (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x435F653: niotns (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x43F9E40: nigcall (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x436AD4B: osncon (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)
    ==27055== by 0x41EAA31: kpuadef (in /home/oracle/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1)

  • Random error IN RFC sender channel

    Hi all,
             Please note that in two different scenarios Same busness system is used but different Sender RFC channels and different Functional modules. In spite of this a random error is occuring. At times scenario works fine and some times it gives error.
    "Wrong Sender Agreement:The Sender agreement doe
    ot have channel Func_sender_cc"
    No error report in SXMP_MONI.
    Any clue please.
    Regards
    venkat

    Hi,
    Now it is clear very much there is no need of registaring programID specifically any where. Any programID first mentioned in Comunication channel and actived and then defined rfc destination using SM59 with same programID gives successfull test result.
    Also for different RFC senders Different ProgramID shall be used to avoid the type errors faced by me.
    Hope this helps all
    cheers
    Venkat

  • List View webpart from subsite to Top site shows random error "List Does not exist"

    Hi All,
    We have a list in subsite and we are creating a view for that list which we are showing in one of the top site home page. We have taken care of changing the web and list guid of list view webpart when we added on top site. Its working fine but some time
    shows error "list does not exist" but when we refresh the error goes. Is it known issue or if there is any workaround for this? because we cannot go live with this random error.
    Rohit Pasrija

    try these links:
    http://mroffice365.com/2012/01/sharepoint-display-a-list-or-library-from-subsite-to-the-top-level-site/
    http://sharepoint.stackexchange.com/questions/37140/display-list-or-library-on-another-site-as-webpart

  • Oracle client 9.2.0.7 ora-01403 random error

    I updated my Oracle Client to 9.2.0.7 version and since this time I have a random error.
    It seems that the transaction abort some time, because I have ORA-01403 when I create the insert and just after the select into clause has the error.
    I don't want to trap error for security.
    Is anybody has the same type of error and how to resolve it?
    Thanks

    "No No No pl/sql codes are changed in the Db and No line of code are changed in .Net application"
    But all of the errors you have listed so far are data errors. Has any data changed in the last 3 years?
    ORA-02291 means that you are trying to insert a record into a child table that has no corresponding record in the parent table.
    SQL> CREATE TABLE t (id NUMBER NOT NULL PRIMARY KEY,
      2                  descr VARCHAR2(10));
    Table created.
    SQL> CREATE TABLE t1 (id NUMBER NOT NULL REFERENCES t(id),
      2                   other_desc VARCHAR2(10));
    Table created.
    SQL> INSERT INTO t1 VALUES (1, 'One');
    INSERT INTO t1 VALUES (1, 'One')
    ERROR at line 1:
    ORA-02291: integrity constraint (OPS$ORACLE.SYS_C0099966) violated - parent key not foundNo triggers, not even an Oracle client since I am logged into the database server.
    One more time, your random errors have nothing to do with the client version, and everything to do with the data in your database (or the lack of it for the 1403), or the data you are trying to put in (for the 2291).
    John

  • Random errors on Flash Builder 4.5.1 mobile project: FXG elements

    I'm kind of frustrated because Flash Builder is starting to report random errors on some mxml components that include FXGs. It's reporting the following errors:
    1. 'MyFXG' declaration must be contained within the <Declarations> tag, since it is not assignable to the default
    property's element type 'mx.core.IVisualElement'.
    2. In initializer for 'mxmlContent', type es.domain.application.skin.assets.fxg.MyFXG is not assignable to target Array
    element type mx.core.IVisualElement.
    Code example:
    <s:Group height="100%"
                 left="10" right="10" top="40" bottom="10">
            <fxg:MyFXG width="100%" height="{content.height+20}"/>
    </s:Group>
    The curious thing (and frustrated one): these fxgs are included on others components and are working fine. There's no problem with the FXG themselves. If I comment all lines where I get an error, my project starts to compile fine (remember that I got included those very same fxgs in other components in the same project).
    Even more curious: if I uncomment those lines my project continues to compile fine! But If I make a clean, It starts to complain again on the very same lines and fxgs.
    It is driving me crazy!
    Anyone could give me a clue? Has anybody experienced something like this?
    Thanks in advance.

    Well, finally I've managed to solve the issue:
    I've deleted one of the mxml components that contained false fxg errors.
    I've created another mxml component with a different name.
    I've copied&pasted the content of the first mxml into the new one.
    et voila, everything has started to compile again, even if I clean the project.
    Really weird and strange issue :S

  • RANDOM ERROR on BAPI_QUOTATION_CREATEFROMDATA2 and BAPI_SALESORDER_CREATEFR

    Dear Forum,
    We are having random errors working with those Bapis.
    We need to reasign materials from one salesorder / quotation to another and those bapis seemed to work fine, but latelly (specially after a hard testing) random errors may occur, having the following Return Code on the RETURN TABLE:
    V1 392: "Material &1 does not exist in storage location &2 &3". and consecuentelly, error V4 248.
    The problem is that I check table MCHB for material &1 on storage location &2 and param &3 and I can DO find it! and the second time I run the Bapi it successfully creates the document!
    Do you any of you have a clue of what is going on and how can i solve this problem? A coworker of mines told me that maybe is a buffer issue but I couldn't find anything on internet about cleaning the buffers.
    Thank you and
    regards,
    Juan Pablo

    Hi Ansberry Kevin,
    Pass QUOTATION_PARTNERS-ITM_NUMBER = '0000000'.
    And pass customers like this.
    QUOTATION_PARTNERS-PARTN_NUMB = '1000000'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
       EXPORTING
         INPUT         = QUOTATION_PARTNERS-PARTN_NUMB
      IMPORTING
        OUTPUT        = QUOTATION_PARTNERS-PARTN_NUMB

  • WTC random error (there's any pathc for WTC)

    Hi everyone!
    I'm having this error randomly, any BEA developers of this product knows how to
    solve this, There will be any patch for WTC sometime?
    TPESYSTEM(12):0:0:TPED_MINVAL(0):QMNONE(0):0:ERROR: getConnection can only run
    on a node where WTC has been configured
    at weblogic.wtc.gwt.TuxedoConnectionFactory.getTuxedoConnection(TuxedoConnectionFactory.java:26)
    at weblogic.wtc.tbridge.tBexec.jmsQ2tuxQ(tBexec.java:674)
    at weblogic.wtc.tbridge.tBexec.run(tBexec.java:198)
    <Nov 7, 2001 11:59:42 AM CST> <Debug> <WTC> <]tBexec<run/t#1: exited.>
    <Nov 7, 2001 11:59:42 AM CST> <Debug> <WTC> <]/tBexec/10/>
    <Nov 7, 2001 11:59:42 AM CST> <Info> <WebLogicServer> <weblogic.wtc.gwt.WTCStartup
    reports: WTC started...>

    Thanks Bob.
    Best Regards.
    Bob Finan <[email protected]> wrote:
    Mauricio,
    This looks like a tBridge random error that occured in the 1.0 version
    of WTC
    with WLS 6.0(WTC as a separate .jar file). A fix was made for this and
    was
    available when WTC was released with WLS 6.1(WTC fully integrated into
    the weblogic.jar). The current release available is WLS 6.1 SP01.
    Bob Finan
    Mauricio Del Moral wrote:
    TPESYSTEM(12):0:0:TPED_MINVAL(0):QMNONE(0):0:ERROR: getConnection canonly run
    on a node where WTC has been configured

  • Random Error 'No Error'

    Hi
    We are Developing with VS2008 (Visual Basic) and are using the Crystal Reports 2008 SP 1 runtime.
    Our Report Display Code works fine, most of the time, but somtimes we get random errors (System.Runtime.InteropServices.COMException (0x80000000):  Kein Fehler (No Error).)
    These OMExceptions ocure in different places, sometimes wenn we call 'CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk' or 'CrystalDecisions.CrystalReports.Engine.ReportDocument.Export'
    these are rater easy to fix/hack, since we only need to catch then, and retry in order to successfully execute the command.
    But there are other places this error occures witch we cann't catch, like when the user clicks on the Button for NextPage or Find.
    Here an Stacktrace of this kind of error:
    Exception: 'System.Runtime.InteropServices.COMException (0x80000000):  Kein Fehler.
         bei CrystalDecisions.Windows.Forms.MainReportDocument.FindGroupFromEngine(FindGroupContext context)
         bei CrystalDecisions.Windows.Forms.ReportDocumentBase.FindGroup(TotallerNodeID nodeID)
    Stack:
         bei System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
         bei System.Environment.get_StackTrace()
         bei ITS.Reports.frmShowReport.crv12_Error(Object source, ExceptionEventArgs e)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.FireHandleExceptionEvent(Object eventSource, ExceptionEventArgs ev)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e, Boolean suppressMessage)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e)
    Maybe anyone knows how to fix this, or how an workaround ?

    More Stacktraces:
    Exception: 'System.Runtime.InteropServices.COMException (0x80000000):  Kein Fehler.
         bei CrystalDecisions.Windows.Forms.ReportDocumentBase.GetPage(Int32 pageN)
         bei CrystalDecisions.Windows.Forms.DocumentControl.ShowNthPage(Int32 PageNumber)
         bei CrystalDecisions.Windows.Forms.DocumentControl.ShowNextPage()
         bei CrystalDecisions.Windows.Forms.PageView.ShowNextPage()
    Stack:
        bei System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
         bei System.Environment.get_StackTrace()
         bei ITS.Reports.frmShowReport.crv12_Error(Object source, ExceptionEventArgs e)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.FireHandleExceptionEvent(Object eventSource, ExceptionEventArgs ev)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e, Boolean suppressMessage)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e)
         bei CrystalDecisions.Windows.Forms.PageView.ShowNextPage()
         bei CrystalDecisions.Windows.Forms.PageView.nextPageButton_Clicked(Object sender, EventArgs e)
         bei System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)
         bei System.Windows.Forms.ToolStripButton.OnClick(EventArgs e)
         bei System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e)
         bei System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e)
         bei System.Windows.Forms.ToolStripItem.FireEventInteractive(EventArgs e, ToolStripItemEventType met)
         bei System.Windows.Forms.ToolStripItem.FireEvent(EventArgs e, ToolStripItemEventType met)
         bei System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea)
         bei System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
         bei System.Windows.Forms.Control.WndProc(Message& m)
         bei System.Windows.Forms.ScrollableControl.WndProc(Message& m)
         bei System.Windows.Forms.ToolStrip.WndProc(Message& m)
    Exception: 'System.Runtime.InteropServices.COMException (0x80000000):  Kein Fehler.
         bei CrystalDecisions.Windows.Forms.MainReportDocument.GetLastPageNumberFromEngine(ReportPageRequestContext context)
         bei CrystalDecisions.Windows.Forms.ReportDocumentBase.GetLastPageNumber()
    Stack:
         bei System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
         bei System.Environment.get_StackTrace()
         bei ITS.Reports.frmShowReport.crv12_Error(Object source, ExceptionEventArgs e)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.FireHandleExceptionEvent(Object eventSource, ExceptionEventArgs ev)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e, Boolean suppressMessage)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e)
         bei CrystalDecisions.Windows.Forms.ReportDocumentBase.GetLastPageNumber()
         bei CrystalDecisions.Windows.Forms.ReportDocumentBase.GetLastPage()
         bei CrystalDecisions.Windows.Forms.DocumentControl.GetLastPageNumber()
         bei CrystalDecisions.Windows.Forms.PageView.GetLastPageNumber()
         bei ITS.Reports.itsCrystalReportViewer.GetLastPageNumber()
         bei ITS.Reports.itsCrystalReportViewer.PrintReport()
         bei ITS.Reports.itsCrystalReportViewer.PrintButton_Clicked(Object sender, EventArgs e)
         bei System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)
         bei System.Windows.Forms.ToolStripButton.OnClick(EventArgs e)
    Exception: 'System.Runtime.InteropServices.COMException (0x80000000):  Kein Fehler.
         bei CrystalDecisions.Windows.Forms.MainReportDocument.FindGroupFromEngine(FindGroupContext context)
         bei CrystalDecisions.Windows.Forms.ReportDocumentBase.FindGroup(TotallerNodeID nodeID)
    Stack:
         bei System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
         bei System.Environment.get_StackTrace()
         bei ITS.Reports.frmShowReport.crv12_Error(Object source, ExceptionEventArgs e)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.FireHandleExceptionEvent(Object eventSource, ExceptionEventArgs ev)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e, Boolean suppressMessage)
         bei CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e)
         bei CrystalDecisions.Windows.Forms.ReportDocumentBase.FindGroup(TotallerNodeID nodeID)
         bei CrystalDecisions.Windows.Forms.DocumentControl.FindGroupInReport(TotallerNodeID nodeID)
         bei CrystalDecisions.Windows.Forms.PageView.Navigate(TotallerNodeID nodeID)
         bei CrystalDecisions.Windows.Forms.PageView.OnGroupTreeNode_Clicked(Object sender, GroupTreeEvent e)
         bei CrystalDecisions.Windows.Forms.ReportGroupTree.FiredGroupTreeNodeClicked(TotallerTreeNode node)
         bei CrystalDecisions.Windows.Forms.ReportGroupTree.handleMouseDown(Object sender, MouseEventArgs e)
         bei System.Windows.Forms.Control.OnMouseDown(MouseEventArgs e)
         bei CrystalDecisions.Windows.Forms.TotallerTreeView.OnMouseDown(MouseEventArgs e)
         bei System.Windows.Forms.TreeView.WmMouseDown(Message& m, MouseButtons button, Int32 clicks)
         bei System.Windows.Forms.TreeView.WndProc(Message& m)
         bei System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
    I will post more of them, once they ocure ...
    Edited by: Alexander Wurzinger on Dec 5, 2008 12:16 PM

  • Random error notification that goes on then disappears in a millisecond

    Just a random error that goes on every time i go on my computer and goes of in a millisecond.

    Does the error have any wording?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

  • ODS activation process random error in process chain

    Dear All,
    In my process chains, the process of ODS activation is sometimes in error. It is a random error, it is not always the same ODS and process chain.
    The message error is DBIF_RSQL_SQL_ERROR.
    I noticed that, on right-clic -> Change variant to the process of ODS activation, I have the following message:
    "Not all infoobjects can be read".
    For information, in the processes of activation of the ODS, the unique parameter is the name of the ODS to be activated.
    Thank you very much for your help,
    Arnaud

    Hi......
    Check SAP Note : 631668......
    According to this note :
    Symptom
    This note applies only to BW systems under ORACLE.
    Loading data into InfoCubes terminates with an error: ORA 60, "deadlock detected". The monitor log displays the entry "CALLER 70 missing" and the request is flagged as red.
    Other terms
    Caller 70, DEADLOCK, ora0060, bitmap, indexes, DBIF_RSQL_SQL_ERROR
    CX_SY_OPEN_SQL_DB
    Reason and Prerequisites
    In SAP BW, there are two fact tables for including transaction data for Basis InfoCubes: The F and the E fact table.
    Unlike the E fact table, the F fact table contains the information about the request from where the transaction data originates.
    Therefore, transaction data is always written to the F fact table and the package dimension contains the request to which the loaded data belongs.
    Using 'Request compression', the system reads the data of a request from the F fact table and writes it to the E fact table without request ID and compresses.
    For good reporting performance, you must keep only the data of a few requests in the F fact table since the F fact table is partitioned according to the key of the package dimension and the data of all requests is always read. Therefore, you should compress the request if you are sure that the loaded data is correct and that you no longer have to delete the request.
    When you install BW on an ORACLE database, BITMAP indexes are created on the fact tables to improve the reporting performance of the system.
    These have a negative effect on the performance when loading data and the deadlock mentioned above (ORA 60) may occur as a result. The DEADLOCKs occur during parallel insert operations because ORACLE does not support a blocking concept for BITMAP indexes at data record level.
    Solution
    Before loading movement data, delete secondary indexes from the F fact table and create them again after the loading process. If the F fact table is small, no performance problems occur.
    Alternatively, you can also load requests serially into InfoCubes by first loading the data only into the Persistent Staging Area (PSA) and then serially into the InfoCube. If you use the data transfer process (DTP) for loading in BW 7.0, this option is no longer available.
    NOTE
               This avoids the deadlock problem. However, you should note that after some loading processes, it is necessary to reorganize the BITMAP indexes because they degenerate very heavily and, therefore, the read and writing performance deteriorates dramatically.
    Hope this helps you.....
    Thanks==Points as per SDN.........
    Regards,
    Debjani..........
    Edited by: Debjani  Mukherjee on Sep 29, 2008 3:14 PM

  • Random error in forms -

    i get a random error when i run a form.
    the form is based of a table with 5 columns.
    one column is BLOB and others are VARCHAR2.
    i get the following random error when i run the form -
    Path ID cannot be found (WWC-50001)
    any ideas on how to get rid of it ?
    thanx a bunch.
    null

    dmitry,
    following is the HTML source for the page when the error occurs. in this case i'm trying to update the record.
    < !-- DoEvent: Handler=BPSIDEV.COMPETITOR_LITERATURE.WWV_GENSYS_2 Block=DEFAULT Obj=UPDATE_TOP Inst=1 Type=ON_CLICK -->
    <HTML>
    <HEAD>
    <TITLE>Enter Competitor Literature</TITLE>
    </HEAD>
    <BODY bgcolor="#ffffff" text="#444444" link="#444455" vlink="#554455" alink="#666644">
    <TABLE width="100%" border=0 cellpadding=0 cellspacing=0 bgcolor="#3366cc">
    <TR>
    <TD width="1%" align=left valign=top>
    <IMG src="/images/cit01_tl.gif" border=0>
    </TD>
    <TD width="10%" align=left> </TD>
    <TD align=left>
    <FONT face="arial,helvetica" size=6 color="#ffffff">
    Enter Competitor Literature</FONT>
    </TD>
    <TD align=right><NOBR>
    <IMG src="/images/homew.gif" border=0 alt="Home" hspace=8>
    <IMG src="/images/helpw.gif" border=0 alt="Help" hspace=8>
    </nobr>
    </TD>
    <TD width="1%" align=right valign=top>
    <IMG src="/images/cit01_tr.gif" border=0></TD>
    </tr>
    </TABLE>
    <TABLE width="95%" HEIGHT="75%" border=0 cellpadding=0 cellspacing=0>
    <TR>
    <TD align=left valign=top>
    <BLOCKQUOTE>
    <CENTER>
    <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="60%" ALIGN="CENTER">
    <TR>
    <TD VALIGN="TOP"><FONT COLOR="#FF0000" FACE="arial,helvetica" SIZE="-1">Error:</FONT></TD>
    <TD ALIGN="LEFT" VALIGN="TOP"><FONT COLOR="#000000" FACE="arial,helvetica" SIZE="-1">Path ID does not exist.<NOBR> (WWC-50001)</NOBR>
    < !-- wwpth_secure.can_perform_action --></FONT></TD>
    </TR>
    </TABLE>
    </CENTER>
    < !----- show footer template = 4469211399 ----->
    </BLOCKQUOTE>
    </TD>
    </TR>
    </table>
    <TABLE width="100%" border=0 cellpadding=0 cellspacing=0 bgcolor="#3366cc">
    <TR>
    <TD bgcolor="#fffff" align=right colspan=3>
    <FONT face="arial,helvetica" size=2 color="#3366cc">
    Colorcon</FONT>
    </tr>
    <TR>
    <TD width="1%" align=left valign=bottom>
    <IMG src="/images/cit01_bl.gif" border=0></TD>
    <TD align=right>
    <FONT face="arial,helvetica" size=2 color="#ffffff"> </FONT></td>
    <TD width="1%" align=right valign=bottom>
    <IMG src="/images/cit01_br.gif" border=0></TD>
    </TR>
    </table>
    </BODY>
    </HTML>
    thanx a lot.

  • HELP! Random errors creating SAP documents via Add-On.

    Hi,
    We have a very odd situation.  Our add-on has been running for 4 years.  During this time, we've made several enhancements.  In the last couple of weeks, users are getting random errors during the code that posts SAP documents.  The error doesn't occur creating the same documents everytime but the error message is always the same.  I cannot get the add-on to crash in the development environment.  Furthermore, once a crash occurs, the users can immediately try again and the document will then be created successfully so it's baffling.  We thought we'd tracked it down to the fact that when restarting a users Windows session, we were retaining the user profile files that SAP creates to store the SQL Server settings.  We found that the problem went away once we started deleting these files upon logout, but, the problem just got less frequent, it didn't completely go away.  Here is the error information:
    Error: The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))
    Source: Interop.SAPbobsCOM
    Stack Trace:    at SAPbobsCOM.FieldClass.set_Value(Object pVal)
    I should say we've also uninstalled and reinstalled the DI API but that didn't help either.  We are running SAP 2007A SP01 P05 with users logging into Windows Server 2003 via Citrix.  Also note, this error is only occuring with documents being created through the add-on, no crashes occur creating documents direclty through SAP front end.
    Thanks very much,
    David

    Hello David.
    I have the exatly the same situation at Customer, only in 2007A version.
    The Addon has been developed for 6.5 and was running perfect in last 4 years. After upgrade,  the users got the random messages. and the user try it again can sucessfully post the documents. Only at this company.
    There is no citrix, and virtual server, onyl W2003 (32bit:) behind a firewall. (MS SQL 2005 SP2)
    In my sample, and your error message is the common: YOu got the message when you are using User Defined Field in marketing documents.
    I have found a note about change "coding" of update of User Defined Fields, it was not helped.
    Note number: 1235603
    Major change:
    +
    This issue results from using the following code:
    SAPbobsCOM.Field f = oPOrders.Lines.UserFields.Fields.Item("U_test")
    Instead of the above syntax, you should use the following:
    SAPbobsCOM.ProductionOrders_Lines f1 = oPOrders.Lines
    SAPbobsCOM.Field  f =  f1.UserFields.Fields.Item("U_test")
    Using the suggested syntax lets you perform the operation correctly. The issue does not happen with a regular connection.
    +
    In Small DB-s i was unbale to reproduce this issue, but in that specific customer (>40GB) i always trouble with this.
    My experience,
    - that i have created some custom indexes over marketing documents, and the error message was not appears in frequently.
    - changed 32 SQL Server Memory Allocation to EWA, the error message was not appears in frequently.
    I think this is an SQL server issue.
    I am intrested in the solution, SAP Support Center was unable to find any solution for this issue.
    Regards,
    János Nagy

  • Random error fills screen with colored pixels and then reboots, OSX 10.6.8 2010 iMac intel Core2Duo, help?

    Hi all,
    random error I'm guessing something to do with video drivers that replaces the screen with a bunch of colored pixels.
    I'm not sure if the computer is still responding and it's just a screen issue, but I do see a little square move when I move the mouse.
    I'm uploading a picture of the error.
    I've updated everything to the latest version of Leopard.
    2010 intel iMac
    OSX 10.6.7
    Any ideas?

    I've updated everything to the latest version of Leopard.
    2010 intel iMac
    OSX 10.6.7
    v10.6.7 is Snow Leopard not Leopard and there is a v10.6.8 update available.
    Click your Apple menu  /  Software Update
    Restart your Mac after the update is installed.
    Same problem exists then run the Using Apple Hardware Test
    Might be a bad graphics card.

  • How to fix iPhone 3G "Random Error 1645".

    I kept getting the "Unknown 1645" error. iTunes wouldn't let me update/restore my iPhone. Until I came across this, which worked and now my iPhone is fully operational again. I hope others who are experiencing this "Random Error 1645" come across this thread.
    1. Disconnect your iPhone cable but leave connected the other USB end to the computer.
    2. Turn off your iPhone holding the Sleep/Wake button. The red slider bar appears. Slide the bar and wait until the iPhone turns off. Or you could hold the Sleep/Wake and Home buttons at the same time until the iPhone turns off.
    3. While pressing and holding the Home button connect the USB cable to your iPhone. It should power on. Hold the Home button until you see the "Connect to iTunes" message. Open iTunes if necessary. You should see the "iTunes detected an iPhone in recovery mode..." alert screen.
    4. Choose "Restore".
    Thanks.

    The iPhone is not user servicable. You can go to http://www.ifixit.com and get some instruction on how to try if if you want. Given that the 3G has been discontinued for 2 1/2 years, and there isn't much market for it any more, it might be worth your while.
    There is no magic that can fix broken hardware.
    You can get it replaced by Apple for $149, but at this stage, I think a newer phone would be a better investment.

Maybe you are looking for