Countdown Timer Error Msg: "Warning: 1090: Migration issue"

Hey folks,
New to Flash here (using CS3), trying to create a countdown
timer.
Following is the error message I receive when trying to test
the
movie:
"Warning: 1090: Migration issue: The onEnterFrame is not
triggered
automatically by Flash Player at run time in ActionScript
3.0. You
must first register this handler for the event using
addEventListener
( 'enterFrame', callback_handler).
Does anyone know what this means? And please "dumb it down"
for this newbie. :)
Following is the actionscript I'm using:
this.onEnterFrame = function() {
var today:Date = new Date();
var currentYear = today.getFullYear();
var currentTime = today.getTime();
var targetDate:Date = new Date(2007,5,10);
var targetTime = targetDate.getTime();
var timeLeft = targetTime - currentTime;
var sec = Math.floor(timeLeft/1000);
var min = Math.floor(sec/60);
var hrs = Math.floor(min/60);
var days = Math.floor(hrs/24);
sec = String(sec % 60);
if (sec.length < 2) {
sec = "0" + sec;
min = String(min % 60);
if (min.length < 2) {
min = "0" + min;
hrs = String(hrs % 24);
if (hrs.length < 2) {
hrs = "0" + hrs;
days = String(days);
var counter:String = days + ":" + hrs + ":" + min + ":" +
sec;
time_txt.text = counter;
Thanks in advance!!!

It just means that you can't do things the "old" way. You
have to use the
AS3 event model, like so:
this.addEventListener("enterFrame", enterFrameHandler);
function enterFrameHandler(evt:Event) {
var today:Date = new Date();
var currentYear = today.getFullYear();
var currentTime = today.getTime();
var targetDate:Date = new Date(2007,5,10);
var targetTime = targetDate.getTime();
var timeLeft = targetTime - currentTime;
var sec = Math.floor(timeLeft/1000);
var min = Math.floor(sec/60);
var hrs = Math.floor(min/60);
var days = Math.floor(hrs/24);
sec = String(sec % 60);
if (sec.length < 2) {
sec = "0" + sec;
min = String(min % 60);
if (min.length < 2) {
min = "0" + min;
hrs = String(hrs % 24);
if (hrs.length < 2) {
hrs = "0" + hrs;
days = String(days);
var counter:String = days + ":" + hrs + ":" + min + ":" +
sec;
time_txt.text = counter;

Similar Messages

  • I have an error msg:  Warning!! iOS Crash Report

    I just got this error msg.
    Warning!!  iOS Crash Report.   Due to a third party application in your phone, iOS is crashed.  Contact Support for an Immediate Fix.
    There is a 1-800 number noted.  Is this legit or this this a virus?  We have tried shutting down the ipad and re-setting but nothing seems to work.  This error message keeps popping up.  Anyone got any ideas?

    Please tell me that it has NEVER been jailbroke.  If it has never been jailbroke, here are some standard repair procedures:
    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore (or it doesn't help), go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, read this.

  • What to do about error msg: Warning: SUID file "System/Library/Core/Services/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDA gent"has been modified and will not be repaired" on MacBook Air.

    What to do about error msg in Disk Utility on MacBook Air:
    Warning: SUID file “System/Library/Core/Services/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDA gent"has been modified and will not be repaired.”

    As long as the report ends up with 'Permissions repair complete' then, as far as permissions go, you are fine. You can ignore the various statements in the report:
    Permissions you can ignore on 10.5 onwards:
    http://support.apple.com/kb/TS1448
    Using 'should be -rw-r--r-- , they are lrw-r--r--' as an example, you will see the that the permissions are not changed, but the | indicates a different location. This is because an update to Leopard onwards changed the location of a number of system components.
    Poster rccharles has provided this description of what it all means:
    drwxrwxrwx
    d = directory
    r = read
    w = write
    x = executeable program
    drwxrwxrwx
    |  |  |
    |  |   all other users not in first two types
    |  | 
    |  group

    owner

  • "unable to sign in to apple tv at this time" error msg

    I can access Netflix, but not my purchased show on apple tv.

    Hello, Barbara. 
    Thank you for visiting Apple support Communities. 
    Here are some troubleshooting steps that I would recommend when experiencing this issue.  Start with the section labeled If you are unable to access or play content while connected to a Wi-Fi network.
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS4546
    Cheers,
    Jason H. 

  • WARNING 1090:

    I would like to create a countdown timer in Flash CS3 using
    code I found online that used Flash CS2.
    CODE:
    this.onEnterFrame = function() {
    var today:Date = new Date();
    var currentYear = today.getFullYear();
    var currentTime = today.getTime();
    var targetDate:Date = new Date(currentYear,8,18);
    var targetTime = targetDate.getTime();
    var timeLeft = targetTime - currentTime;
    var sec = Math.floor(timeLeft/1000);
    var min = Math.floor(sec/60);
    var hrs = Math.floor(min/60);
    var days = Math.floor(hrs/24);
    sec = String(sec % 60);
    if (sec.length < 2) {
    sec = "0" + sec;
    min = String(min % 60);
    if (min.length < 2) {
    min = "0" + min;
    hrs = String(hrs % 24);
    if (hrs.length < 2) {
    hrs = "0" + hrs;
    days = String(days);
    var counter:String = days + ":" + hrs + ":" + min + ":" +
    sec;
    time_txt.text = counter;
    I am receiving this error I have not been able to correct...
    ERROR
    Warning: 1090: Migration issue: The onEnterFrame is not
    triggered automatically by Flash Player at run time in ActionScript
    3.0. You must first register this handler for the event using
    addEventListener ( 'enterFrame', callback_handler).
    Can anyone supply a quick fix and/or explanation... I am
    still learning flash, have tried to research online, but am still
    ahving issues solving this problem...
    Thanks in advance...
    AJ

    Now, let's say (and pertaining to this same Counter) that I
    wanted to have this .swf to also function as a clickable link
    within the same browser window (_parent) but to a different web
    address.
    I am using the script below on a seprate layer and it is
    working perfectly with the counter info. However, I want this web
    address to open up within the same "_parent" window, opposed to
    opening up a new browser window. I have tried adjusting script
    myself, but am still learning, so your feedback is very much
    appreciated. This is what I have thus far:
    myButton.addEventListener(MouseEvent.CLICK,myButtonFunction);
    function myButtonFunction(event: MouseEvent) {
    var request = new URLRequest("
    http://www.address.com");
    navigateToURL(request);
    Just not certain how and where to apply the "_parent"
    information as it did not workfor me when I tried to adjust on my
    own.
    Thanks a bunch!

  • Warning 1090 in AS3...?

    I need help with this AS3 code...
    shinyButton.onRollOver = function() {
              this.glitter.play();
    I keep getting this error-
    Warning: 1090: Migration issue: The onRollOver event handler is not triggered automatically by Flash Player at run time in ActionScript 3.0.  You must first register this handler for the event using addEventListener ( 'mouseOver', callback_handler).
    Please help ASAP.
    Thanks.

    where is glitter in relationship to shinyButton? inside of it? or outside of it? if it is inside, change your scoping:
    shinyButton.addEventListener(MouseEvent.MOUSE_OVER,overMouse);
    function overMouse(e:MouseEvent):void{
           e.target.glitter.play();
    and then brush up on your mouse events in as3 here:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/MouseEvent .html

  • Error msg at launch says "Registry settings used by the iTunes drivers for importing and burning CDs and DVDs are missing. ... Please reinstall iTunes."

    Each time I launch iTunes (latest version) on Windows 7 (w/ latest system updates) I receive the following error msg:
    "Warning! The registry settings used by the iTunes drivers for importing and burning CDs and DVDs are missing.  This can happen as a result of installing other CD burning software.  Please reinstall iTunes."
    When I click on "OK" iTunes completes the launch process and the application functions properly.  This error msg appears without fail every time I launch the app.
    I have reinstalled iTunes four times and continue to receive this message.  iTunes is set in the system Control Panel as the default program for all functions that iTunes uses.  I never burn CDs or DVDs and have never attempted to do so on this machine.  I have had iTunes on this computer since I bought it last November and never had a problem with it until 2 months ago when this message began popping up.  I did not notice any action I took that caused this, in terms of creating conflicts.
    I hope someone can assist me in finding a way to stop this annoying error!  Thanks!
    David

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • Run-time error calling TestComple​te

    Hi,
    I have a COM interface setup between TestStand and another software (TestComplete).  The two software were working and communicating well together for few month.  But yesterday I received an "error occurred calling TestComplete Library- Testcomplete in playing state."  Please see attachment.
    I have all the test scripts running on a network drive, never had a problem before.  What could be the cause of the problem?  Any help would be greatly appreciated!
    Best Regards,
    ph2
    Attachments:
    run-time error msg.doc ‏38 KB

    Hi Ph2,
    I hope you are doing well today!  As Ray has mentioned, it does seem that this error is being caused due to the current state that your TestComplete software is in when trying to communicate with it.  I am not familiar with TestComplete myself, but the specific dialog of the error, "An error occurred calling 'RunRoutineEx' in 'ItcIntegration' of 'TestCompleteLibrary'  TestComplete is already in the playing state," sounds like it might be trying to put the TestComplete program in the play state while it is already in this state. 
    The best bet would be to touch base with Smartbear as this does not look like a TestStand specific error.  I hope this helps, Ph2.  Have a great day!
    Taylor G.
    Product Support Engineer
    National Instruments
    www.ni.com/support

  • Run time error CONVT_OVERFLOW

    dear Sir
    we have window 7 for new oc as soon runned teh program cv01n i got run time error msg  CX_SY_CONVERSION_OVERFLOW,plese guide
    Runtime Errors         CONVT_OVERFLOW                                                              
    Except.                CX_SY_CONVERSION_OVERFLOW                                                   
    Date and Time          03.05.2010 14:26:31                                                                               
    Short text                                                                               
    Overflow when converting from "-1"                                                           
    What happened?                                                                               
    Error in the ABAP Application Program                                                                               
    The current ABAP program "SAPLCV120" had to be terminated because it has                     
        come across a statement that unfortunately cannot be executed.                               
    What can you do?                                                                               
    Note down which actions and inputs caused the error.                                                                               
    To process the problem further, contact you SAP system                                       
        administrator.                                                                               
    Using Transaction ST22 for ABAP Dump Analysis, you can look                                  
        at and manage termination messages, and you can also                                         
        keep them for a long time.                                                                   
    Error analysis                                                                               
    An exception occurred that is explained in detail below.                                     
        The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not               
         caught in                                                                               
    procedure "SYS_GET_WINDOW_SYSTEM" "(FORM)", nor was it propagated by a RAISING               
         clause.                                                                               
    Since the caller of the procedure could not have anticipated that the                        
        exception would occur, the current program is terminated.                                    
        The reason for the exception is:                                                             
        When attempting to convert the value "-1", an overflow occurred.                             
    How to correct the error                                                                         
        If the error occurred in your own ABAP program or in an SAP                                  
        program you modified, try to remove the error.                                                                               
    If the error occures in a non-modified SAP program, you may be able to                       
        find an interim solution in an SAP Note.                                                     
        If you have access to SAP Notes, carry out a search with the following                       
        keywords:                                                                               
    "CONVT_OVERFLOW" "CX_SY_CONVERSION_OVERFLOW"                                                 
        "SAPLCV120" or "LCV120F28"                                                                   
        "SYS_GET_WINDOW_SYSTEM"                                                                               
    If you cannot solve the problem yourself and want to send an error                           
        notification to SAP, include the following information:                                                                               
    1. The description of the current problem (short dump)                                                                               
    To save the description, choose "System->List->Save->Local File                           
        (Unconverted)".                                                                               
    2. Corresponding system log                                                                               
    Display the system log by calling transaction SM21.                                       
           Restrict the time interval to 10 minutes before and five minutes                          
        after the short dump. Then choose "System->List->Save->Local File                            
        (Unconverted)".                                                                               
    3. If the problem occurs in a problem of your own or a modified SAP                          
        program: The source code of the program                                                      
           In the editor, choose "Utilities->More                                                    
        Utilities->Upload/Download->Download".                                                                               
    4. Details about the conditions under which the error occurred or which                      
        actions and input led to the error.                                                                               
    The exception must either be prevented, caught within proedure                               
        "SYS_GET_WINDOW_SYSTEM" "(FORM)", or its possible occurrence must be declared                
         in the                                                                               
    RAISING clause of the procedure.                                                             
        To prevent the exception, note the following:                                                
    System environment                                                                               
    SAP-Release 700                                                                               
    Application server... "APP2"                                                                 
        Network address...... "132.147.166.13"                                                       
        Operating system..... "Windows NT"                                                           
        Release.............. "5.2"                                                                  
        Hardware type........ "2x IA64 Level 3"                                                      
        Character length.... 16 Bits                                                                 
        Pointer length....... 64 Bits                                                                
        Work process number.. 0                                                                      
        Shortdump setting.... "full"                                                                               
    Database server... "DB"                                                                      
        Database type..... "MSSQL"                                                                   
        Database name..... "ELP"                                                                     
        Database user ID.. "elp"                                                                               
    Char.set.... "C"                                                                               
    SAP kernel....... 700                                                                        
        created (date)... "Aug 23 2009 22:38:30"                                                     
        create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"                             
        Database version. "SQL_Server_8.00 "                                                                               
    Patch level. 221                                                                               
    Patch text.. " "                                                                               
    Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"                             
        SAP database version. 700                                                                    
        Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows               
         NT 6.0"                                                                               
    Memory consumption                                                                               
    Roll.... 16192                                                                               
    EM...... 29328880                                                                               
    Heap.... 0                                                                               
    Page.... 655360                                                                               
    MM Used. 3095760                                                                               
    MM Free. 1091456                                                                               
    User and Transaction                                                                               
    Client.............. 900                                                                     
        User................ "CPTN_SAPC5"                                                            
        Language key........ "E"                                                                     
        Transaction......... "CV03N "                                                                
        Transactions ID..... "C29156DF1F2DF180BE040017A4AB426D"                                                                               
    Program............. "SAPLCV120"                                                             
        Screen.............. "SAPLCV110 0101"                                                        
        Screen line......... 3  
    regards
    kunal

    Hi Kunal,
    you can display both type of document 2003 and 2007 also. You need to configure these applications in define workstation application by using t-code DC30.
    then you can display these files.
    Regards,
    Ravindra

  • [b]Run time error in Invoking Servlet to J2ME tool kit[/b]

    I am tried to invoke a servlet to my J2ME tool kit.
    invoking will happen when user press command button on
    the mobile phone, but when i do this there were run
    time error called
    "Warning: To avoid potential deadlock, operations that
    may block, such asnetworking, should be performed in a
    different thread than the commandAction() handler."
    There are no compile errors and also i am using Jrun
    webserver.
    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    public class ServletInvoke extends MIDlet implements CommandListener
         String url="http://localhost:8100/servlet/HelloServlet";
         private Display dis;
         private Command cmd;
         private Form frm;
         public ServletInvoke()
              dis=Display.getDisplay(this);
         public void startApp()
              frm=new Form("My Project");
              cmd=new Command("Click",Command.SCREEN,2);
              frm.addCommand(cmd);
              frm.setCommandListener(this);
              dis.setCurrent(frm);
         public void pauseApp()
         public void destroyApp(boolean unconditional)
         void invokeServlet(String url)throws IOException
              HttpConnection c=null;
              InputStream is=null;
              StringBuffer b=new StringBuffer ();
              TextBox t=null;
              try
                   c=(HttpConnection)Connector.open(url);
                   c.setRequestMethod(HttpConnection.GET);
                   c.setRequestProperty("IF-Modified-Since","20 Jan 2001 16:19:14 GMT");
                   c.setRequestProperty("Content-Language","en-CA");
                   is=c.openDataInputStream();
                   int ch;
                   while((ch=is.read())!=-1)
                        b.append((char)ch);
                   t=new TextBox("First Servlet",b.toString(),1024,0);
              finally
                   if(is!=null)
                        is.close();
                   if(is!=null)
                        c.close();
              dis.setCurrent(t);
         public void commandAction(Command command,Displayable dis)
              if(command==cmd)
                   try
                        invokeServlet(url);
                   catch(IOException e)
                        System.out.println("IOException"+e);
                   //e.printStacktrace();
    }PLS if can give me a working sample code as a soluation to above problem.

    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    public class ServletInvoke extends MIDlet implements CommandListener
         String url="http://localhost:8100/servlet/HelloServlet";
         private Display dis;
         private Command cmd;
         private Form frm;
         public ServletInvoke()
              dis=Display.getDisplay(this);
         public void startApp()
              frm=new Form("My Project");
              cmd=new Command("Click",Command.SCREEN,2);
              frm.addCommand(cmd);
              frm.setCommandListener(this);
              dis.setCurrent(frm);
         public void pauseApp()
         public void destroyApp(boolean unconditional)
         public void commandAction(Command command,Displayable dis)
              if(command==cmd)
                   try
                   HTTPConnection conn = new HTTPConnection();
                   conn.invokeServlet(url);
                   catch(IOException e)
                        System.out.println("IOException"+e);
                   //e.printStacktrace();
    class HTTPConnection extends Thread
         String url = null;
         HTTPConnection()
         void invokeServlet(String url)
              this.url = url;
              start();     
         public void run()
              HttpConnection c=null;
              InputStream is=null;
              StringBuffer b=new StringBuffer ();
              TextBox t=null;
              try
                   c=(HttpConnection)Connector.open(url);
                   c.setRequestMethod(HttpConnection.GET);
                   c.setRequestProperty("IF-Modified-Since","20 Jan 2001 16:19:14 GMT");
                   c.setRequestProperty("Content-Language","en-CA");
                   is=c.openDataInputStream();
                   int ch;
                   while((ch=is.read())!=-1)
                        b.append((char)ch);
                   t=new TextBox("First Servlet",b.toString(),1024,0);
              finally
                   if(is!=null)
                        is.close();
                   if(is!=null)
                        c.close();
              dis.setCurrent(t);
    }

  • When I conect any ipod ,the itunes show an error msg-The syncServer found a problem and must be closed.After that another-Mobile device helper find a problem and must be closed -and this repeat more 2 times each are  related with corefoundation.dll.

    Six error msg about apple aplications that must be closed just when I connect my ipod to computers USB.SyncServer aplication and Mobile device helper is closed.The error relat.show :
    AppName: syncserver.exe     AppVer: 17.641.14.26     ModName: corefoundation.dll
    ModVer: 1.550.54.0     Offset: 00043d08
    These happens in both kind of messages that was showing three times each.After this ,Itunes can sinc music videos,photos,but I canot upgrade my ipod!
    Detail:copy photo files from ipod to computer works normal.I use panda antivirus but without it in the computer,the problem persists.Yesterday I get the last ITunes,but the problem persists.I unistall anything about apple ,install the new Itunes and the problem remains.
    And this problem occurs only after I connect ANY ipod to the computer,open Itunes for hear music,for example,still works OK.

    I have been battling against the same issue for over 2 weeks now. After tracing what was happening on the machine to find that the crashes we're happening slightly after Apple's program we're identifying the Time Zone of the computer, I had the idea of checking the date/time properties of my Windows XP machine.
    I unchecked the box to update the time from a time server (Internet time) and it's seem that this was what was causing itunes and its descendant to crash.
    Now it seems it turned back to normal operation.
    Please let me know if this fixes it for you as well.

  • Process chains time outs and hangs with no error msg - in SP13

    Hi all,
    We are having all kind of weird problems after we patched our system with SP13. Our process chain time outs and hangs, but surprisingly we never get any error msg. And scarier part is, the problem seems to be intermittent. PC runs fine on some days and hangs on some.
    Further analysis into the dump – as below
    Termination occurred in the ABAP program "SAPLRSSM" -
    in "RSSM_SLEEP_DEBUG".
    The main program was "SAPMSSY1 ".
    In the source code the termination point is in (Include) program "LRSSMU39".
    This refers to an issue that appears to have been addressed by OSS Note
    934648(meant for SP8). This notes also indicates to populate RSADMIN table to
    exclude "RSSM_SLEEP_DEBUG". Not sure if this note is valid for SP13? However we went ahead and populated the RSADMIN table.
    So now we have no clue what’s going on and where to fix the issue.
    As per SAP suggestion we applied the following notes:
    0000653996  Analyzing lock situations
    0000893563  Correction: Deadlock on completion of a remote chain
    0000994007  Corrections: Deadlock with external status query
    0001005481  Correction: Process successful, but there is no instance
    0001047174  Correction: Incorrect scope when locking in process chains
    0001051957  Correction: TIME_OUT during dialog confirmation of processes
    0001083660  Report for error stack analysis
    Nothing seems to help us. And SAP suggested a few options, which we implemented to no rescue.
    I’m sure that many of the customers have applied SP13, and want some feedback from them, if this is happening in their systems too?
    If so, how did you fix this issue?
    Or this situation is unique to us?Please note that no settings were changed as of SP13 to that of what they were in SP12(unless it is a side effect of the patch itself). Everything worked fine with SP12 and is still working on the BIP system. All the problems are in BIQ patched to SP13.
    Any pointers or insight would be appreciated. We have a customer msg open with SAP, and going back and forth, but nothing seemed to work as of today.
    Thanks,
    Voodi

    Not sure which OSS helped us get past the issue, as SAP asked us to apply a ton of notes. But along which the notes, SAP has some suggestions for us, which we think did the magic. After the implementation of the suggestin we never faced the same issue again. The suggestion by SAP:
    move the process chain callback in a batch job by executing
    program RSSM_TRACE_SWITCH and selecting the flag "verifcation
    of asynchronous processes - execute in batch".
    Lemme know if this doesnt fix the issue, I can give all the notes that SAP asked us to apply.
    Message was edited by:
            voodi

  • Performance issue: Calling a BAPI PO create in test mode to get error msgs

    Hi,
    We have an ALV report in which we display purchase orders that got created in SAP, but either got blocked due to not meeting PO Release strategy tolerances or have failed output messages. we are displaying the failed messages even.
    We are looping the internal table of eban(PR) & calling bapi po create in test mode to get failed messages.
    Now we are facing performance issue in production. What can be the alternate efficient way to get the error msgs with efficiency
    Regards,
    Ayub H.
    Moderator message: duplicate post (different ID, same company...), see below:
    Performance issue calling bapi po create in test mode to get error messages
    Edited by: Thomas Zloch on Mar 9, 2012

    Hi Suvarna,
    so you need to reduce the number of PO-simulations.
    - Likely you checked already, that all EBAN-entries should already be converted into POs. If there would be a large number of "new" EBAN-entries, they don't need to be simulated.
    - If it's a temporary problem: give aid to correct the problems (maintain prices or whatever the error-reasons are) Then the amount of not-converted purchase requisitions (PR) should drop, too
    - If it's likely, that your volume of open PR will stay high: create a Z-Table with key of EBAN and a counter, simulate (once a day) PO conversions and store the results in the Z-table. In your report you can use the results... if they are "new enough". From time to time new simulations should be done, missing master data might be available.
    Maybe users should be allowed to start this 2nd report manually (in background), too -> then they can update the messages after some data corrections themself, without waiting for the result (just check later in online report and do something different in between).
    And you might need to explain, PO simulation takes as long as PO creation... there is no easy or fast way around this.
    Best regards,
    Christian

  • Error msg: time machine couldn't complete the backup to time capsule

    I did a first time back up of my imac with time capsule; now when I try to back up a second time the error msg says can't do it.  When I try to access time capsule thru time machine; it won't let me. Any suggestions?

    Sorry this is where it all gets unimpressive.. you need to reboot the TC.. it has gone to sleep and forgotten to respond or the Mac has lost it and doesn't know where to find it.
    The bug has been our major issue in this forum since Mountain Lion arrived on the scene.
    See C12 for more details..
    http://pondini.org/TM/Troubleshooting.html
    But a simple reboot of TC, or restart of whole network, in correct order.. modem.. router/TC ... clients 2min gap is usually enough.

  • When am trying to install Windows server 2008 OS. Error msg was coming 0x80070070:"not having enough space for installation"..Even though i have 20GB space?..Pls resolve this issue earliest.

    Hi Guys
    I have an issue please help on that earliest.
    When am trying to install Windows server 2008 OS. Error msg was coming 0x80070070:"not having enough space for installation"..Even though i have 20GB space?..Pls resolve this issue immediately.
    Regards,
    Shiv

    Is this a clean install or an upgrade?  20 GB, though greater than the minimum, is pretty minimal.  How much memory do you have on the system?  2008 would try to create a page file of 1.5x physical memory, so if you are building on a large
    memory system, you could be having an issue there.
    "Pls resolve this issue immediately"
    Forums are not for support.  They are monitored by people, like yourself, who are willing to take time out of their days to provide the benefit of their past experience.  If you need support, you need to purchase a support contract from Microsoft
    or some other party.
    . : | : . : | : . tim

Maybe you are looking for

  • SocketTimeoutException when calling a web service from a WD application

    I'm trying to call a method of a web service from my WD application. The execution of the method longs more than 60 sec, so I'm always getting: Service call exception; nested exception is: java.net.SocketTimeoutException: Read timed out I've got this

  • IPhone 4s not recognized by iTunes 11 on Window 8

    Ran the repair feature on iTunes, nuthin'! Checked the cord, yep, Charge/Sync cable. Unplugged, replugged, nuthin'! Plugged into different USB port, nuthin'! Removed device from hardware devices and reloaded, nuthin'! Can still manuever into photo fo

  • Using too much memory while capturing

    I am capturing from my Panasonic deck direct to the G4 via firewire DVNTSC but after only 10 minutes or so FCP quits and it is indicated that I have used up all my 200+GB space. I think I'm doing something wrong with my settings somewhere because I s

  • Canon Legria FS19 camcorder supported in iMovie 11?

    Hi there, I would like to ask whether my Camcorder Canon Legria FS 19 will be among the supported cameras in iMovie 11. Because I was unable to find it among the supported cameras on the  site. I would like to know whether it makes sense to upgrade

  • Dump: Parameter error raised while editing Master catalog

    Hi all, I need some help. While I am trying to edit the master catalog I am getting a dump error:  Exception condition "PARAMETERS_ERROR" raised. The moment when I clicked on the edit button I am getting this dump. I could see the field "operation" i