'what kind of error 'plzzz help

hi all
plz check the following code and error which it is givn 2 me. how shld i rectify it? not able to get what kind of error it is.
*& Report  ZNBS_FI_FS10N
REPORT  ZPRAC_FI_VENDORSTATEMENT.
Report Title          : Display Line item balances for VENDORs with opening balances
Functional Consultant : Mr ShreeHari
ABAPER                : Sanjay K, NBS
TYPE-POOLS slis.
DATA   :   fcat               TYPE slis_t_fieldcat_alv WITH HEADER LINE,
           ls_event               TYPE slis_alv_event,
           repid                  LIKE sy-repid.
DATA   :   b_layout               TYPE slis_layout_alv.
DATA   :   gt_events              TYPE slis_t_event WITH HEADER LINE.
DATA   :   lt_list_commentary     TYPE slis_t_listheader,
           l_logo                 TYPE w3_qvalue.
TABLES : BSAK, ska1, bsis, bkpf, thead, t003, t003t, LFA1, skat.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
SELECT-OPTIONS pbukrs FOR bsis-bukrs default '1000'.
SELECT-OPTIONS pLIFNR FOR LFA1-LIFNR  default '410028'.
SELECT-OPTIONS pbudat FOR bsis-budat OBLIGATORY default '20060401' to '20061219'.
SELECTION-SCREEN END OF BLOCK b1.
DATA : BEGIN OF itab OCCURS 0,
       belnr LIKE bsis-belnr,
       bukrs LIKE bsis-bukrs,
       gjahr LIKE bsis-gjahr,
       blart LIKE bkpf-blart,
       bldat LIKE bkpf-bldat,
       budat LIKE bkpf-budat,
       LIFNR LIKE LFA1-LIFNR,
       dmbtr LIKE BSAK-dmbtr,
       wrbtr LIKE BSAK-wrbtr,
       shkzg LIKE BSAK-shkzg,
       ltext LIKE t003t-ltext,
       END OF itab.
DATA TEXT(60). " LIKE t003t-ltext.
DATA jtab LIKE itab OCCURS 0 WITH HEADER LINE.
DATA : BEGIN OF final OCCURS 0,
        belnr LIKE bsis-belnr,
       bukrs LIKE bsis-bukrs,
       gjahr LIKE bsis-gjahr,
       blart LIKE bkpf-blart,
       bldat LIKE bkpf-bldat,
       budat LIKE bkpf-budat,
       LIFNR LIKE LFA1-LIFNR,
       debit LIKE BSAK-dmbtr,
       credit LIKE BSAK-wrbtr,
       shkzg LIKE BSAK-shkzg,
       balance LIKE BSAK-dmbtr,
       ltext LIKE t003t-ltext,
       END OF final.
  DATA : BEGIN OF output OCCURS 0,
         belnr LIKE bsis-belnr,
         bukrs LIKE bsis-bukrs,
         gjahr LIKE bsis-gjahr,
         blart LIKE bkpf-blart,
         bldat LIKE bkpf-bldat,
         budat LIKE bkpf-budat,
         LIFNR LIKE LFA1-LIFNR,
         ddebit LIKE BSAK-dmbtr,
         ccredit LIKE BSAK-wrbtr,
         shkzg LIKE BSAK-shkzg,
         balance LIKE BSAK-dmbtr,
         ltext LIKE t003t-ltext,
         hkont LIKE bsis-hkont,
         bschl LIKE bsis-bschl,
         TXT50 LIKE SKAT-TXT50,
         END OF output.
********FOR OPENING BALANCE.
DATA : BEGIN OF open OCCURS 0,
       wrbtr LIKE BSAK-wrbtr,
       dmbtr LIKE BSAK-dmbtr,
       bukrs LIKE BSAK-bukrs,
       shkzg LIKE BSAK-shkzg,
       END OF open.
DATA clear LIKE open OCCURS 0 WITH HEADER LINE.
DATA: BEGIN OF bal OCCURS 0,
      dbal LIKE bsis-wrbtr,
      cbal LIKE bsis-dmbtr,
      shkzg LIKE bsis-shkzg,
      END OF bal.
DATA date TYPE sy-datum.
MOVE pbudat-low TO date.
date = date - 1.
DATA: BEGIN OF balance OCCURS 0,
      debit LIKE bsis-wrbtr,
      credit LIKE bsis-dmbtr,
      total LIKE bsis-dmbtr,
      END OF balance.
DATA : BEGIN OF line OCCURS 0,
       belnr LIKE bsis-belnr,
       dmbtr LIKE bsis-dmbtr,
       wrbtr LIKE bsis-wrbtr,
       hkont LIKE bsis-hkont,
       gjahr LIKE bsis-gjahr,
       bukrs LIKE bsis-bukrs,
       shkzg LIKE bsis-shkzg,
       budat LIKE bsis-budat,
       blart LIKE bsis-blart,
       bschl LIKE bsis-bschl,
       TXT50 like skat-txt50,
       END OF line.
TOP-OF-PAGE.
  PERFORM top_of_page.
START-OF-SELECTION.
*perform integrate.
  PERFORM fetch.
  PERFORM build_catalog.
  PERFORM layout.
END-OF-SELECTION.
  PERFORM display .
*&      Form  Fetch
      text
-->  p1        text
<--  p2        text
FORM fetch .
  SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF open WHERE bukrs IN pbukrs AND budat LE date  AND LIFNR IN pLIFNR.
    COLLECT open.
  ENDSELECT.
  SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF clear WHERE bukrs IN pbukrs AND budat LE date AND LIFNR IN pLIFNR.
    COLLECT clear.
  ENDSELECT.
  LOOP AT open.
    MOVE : open-dmbtr TO bal-dbal,
           open-wrbtr TO bal-cbal,
           open-shkzg TO bal-shkzg.
    IF open-shkzg = 'H'.
      open-dmbtr = open-dmbtr * -1.
      open-wrbtr = open-wrbtr * -1.
    ENDIF.
    COLLECT bal.
  ENDLOOP.
  LOOP AT clear.
    MOVE : clear-dmbtr TO bal-dbal,
           clear-wrbtr TO bal-cbal,
           clear-shkzg TO bal-shkzg.
    IF clear-shkzg = 'H'.
      clear-dmbtr = clear-dmbtr * -1.
      clear-wrbtr = clear-wrbtr * -1.
    ENDIF.
    COLLECT bal.
  ENDLOOP.
  CLEAR bal.
  LOOP AT bal.
    IF bal-shkzg = 'H'.
      MOVE  : bal-dbal TO balance-debit.
      CLEAR bal-dbal.
    ELSE.
      MOVE        bal-cbal TO balance-credit.
      CLEAR bal-cbal.
    ENDIF.
    COLLECT balance.
    CLEAR balance.
  ENDLOOP.
********FOR LINE ITEMS
  SELECT * FROM bkpf INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat .
    SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN
    pbukrs  AND belnr = itab-belnr AND gjahr = itab-gjahr.
      IF itab-shkzg = 'H'.
        itab-dmbtr = itab-dmbtr * -1.
        itab-wrbtr = itab-wrbtr * -1.
      ENDIF.
      SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
        APPEND itab.
      ENDSELECT.
    ENDSELECT.
  ENDSELECT.
  SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat AND LIFNR IN pLIFNR.
    IF itab-shkzg = 'H'.
      itab-dmbtr = itab-dmbtr * -1.
      itab-wrbtr = itab-wrbtr * -1.
    ENDIF.
    SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
      APPEND itab.
    ENDSELECT.
  ENDSELECT.
  DELETE itab WHERE LIFNR NOT IN pLIFNR.
<b>Error: <%_L002> IS NOT AN INTRNAL TABLE-THE OCCURS SPECIFICATION IS MISSING)</b></b>
error at delete statement.
its urgent.
thanks all in advance.
appropriate reward will b given.

hi gaurav,
u created internal table itab with out header line and u r trying to delete it from internal body itself which isn't possible.
so do like this,
create workarea [wa_itab] of same structure of itab [internal table] and give delete statement as
delete wa_itab from itab where condition.
if helpful reward some points.
with regards,
suresh babu aluri.

Similar Messages

  • What kinds of error iCloud symbol with ! inside?

    added song purcahsed outside of iTunes to library. iCloud symbol shows cloud with ! inside. what kind of errors produce this symbol? how to correct?

    See http://support.apple.com/kb/ts4124.

  • The video chat wont work, it keeps showing some kind of error. Help.

    When I want to video chat with my cousin, who lives in Tulsa Oklahoma, and I live in Houston, Texas. She has tIGER, I have leapord. We tried video chatting about 3 weeks ago, and it worked. But now it shows errors, please help, thanks.

    As this thread has been marked as Solved I would start a New Thread.
    7:42 PM Tuesday; January 8, 2008

  • What kind of error message is that? PLEASE HELP!

    I've tried to download adobe reader 8.1.2 on windows vista.
    Everytime I'll get this message even if I lower the level of security
    \mf\AcroExch.RMFFile/shellnew
    then the download fails.
    Please somebody help me.
    I can't read any document at all!!!
    Thanks
    Sylvie

    Is the message
    Registry entries for file extension '.rmf\AcroExch.RMFFile\ShellNew'
    will remain in the Registry table because no ProgId, CLSID, or shell
    verb was associated with it
    Or something else, and are there others?
    Aandi Inston

  • What kind of error it could be?

    init:
    deps-jar:
    Compiling 1 source file to C:\Documents and Settings\2z7\StrokeFill\build\classes
    C:\Documents and Settings\2z7\StrokeFill\src\ParseFile.java:82: incompatible types
    found   : int[]
    required: int
                       return  xy;
    1 error
    BUILD FAILED (total time: 0 seconds)
    import java.io.*;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.ListIterator;
    import java.util.regex.*;
    import java.util.StringTokenizer;
    public class ParseFile
        private String Filename="newt3.newtmal.ps";
        private int x1, y1, x2, y2; // to plot lines from (x1,y1) to (x2,y2)
        private int xy[]= new int[205];
         public  int setxy()
              // parse a file to read line by line;           
                    File file = new File(Filename);
                           try
                                   BufferedReader br = new
                                            BufferedReader(new FileReader(Filename));
                                    String line;
                                    String s1 = "0.5 setlinewidth 0.0 setgray";
                                    String s2 = "stroke clear";
                                    String s3 = "closepath fill";
                                    String[] parts;
                                     while ((line = br.readLine()) != null )
                                        if (line.equals(s1))
                                                List<Integer> xList = new ArrayList<Integer>();
                                                List<Integer> yList = new ArrayList<Integer>();
                                                while ((line = br.readLine()) != null && !line.equals(s2))
                                                   parts = line.split(" ");
                                                    xList.add(Integer.parseInt(parts[0]));
                                                    yList.add(Integer.parseInt(parts[1]));
                                                Integer[] x = xList.toArray(new Integer[xList.size()]);
                                                Integer[] y = yList.toArray(new Integer[yList.size()]);
                                                // Plotting here using x and y arrays
                                                int m = x.length;
                                                for (int i = 0; i<m-1;i++)
                                                   xy[i]   = x.intValue();
    xy[i+m] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    // return xy;
    else if (line.split(" ").length == 8)
    List<Integer> xList = new ArrayList<Integer>();
    List<Integer> yList = new ArrayList<Integer>();
    while ((line = br.readLine()) != null && !line.equals(s2))
    parts = line.split(" ");
    xList.add(Integer.parseInt(parts[0]));
    yList.add(Integer.parseInt(parts[1]));
    Integer[] x = xList.toArray(new Integer[xList.size()]);
    Integer[] y = yList.toArray(new Integer[yList.size()]);
    // Plotting here using x and y arrays
    int m = x.length;
    xy[0] = Integer.parseInt(parts[5]);
    xy[m+1] = Integer.parseInt(parts[6]);
    for (int i = 0; i<m-1;i++)
    xy[i+1] = x[i].intValue();
    xy[i+m+1] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    catch (Exception exception) {
    exception.printStackTrace();
    return xy;

    of course it's wrong, how correct?Please just answer my question!!!
    Again: do you know the difference between an array of int's and a single int?
    And I know you copied the compiler error on the forum, but did you read it? If so, what did you not understand about it?

  • "Avoid reassigning parameters such as 'myString'" What kind of error is it?

    This is the method where the compiler gives me an error that I'm not able to understand...
         private String removeQuotes(String myString) {
              myString.trim();
              if (myString.startsWith("\"")) {
                   myString = myString.substring(1);
              if (myString.endsWith("\"")) {
                   myString = myString.substring(0, myString.length() - 1);
              return myString;
         }What's the problem? o_O
    Message was edited by:
    Lukyan

    Are you sure? I try to put the whole class (it's not huge):
    public class SearchResultFactory {
         private String[] header;
         private String          stringToParse;
         private Iterator     it;
         private IIssueRepositoryLocation location;
         public SearchResultFactory(Bugzilla220RepositorySession session) {
            super();
            location = session.getLocation();
         public void parse(InputStream stream, ISearchResultCollector sc) throws IOException {
              CSVParser parser = new CSVParser();
              BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
              int i = 0;
              int rowLength = 0;
              // read first row (column description) and check length
              stringToParse = reader.readLine();
              if (stringToParse != null) {
                   it = parser.parse(stringToParse);
                   while (it.hasNext()) {
                        it.next();
                        rowLength++;
                   header = new String[rowLength];
                   it = parser.parse(stringToParse);
                   while (it.hasNext()) {
                        header[i] = removeQuotes((String) it.next());
                        i++;
                   String[] row;
                   stringToParse = reader.readLine();
                   while (stringToParse != null) {
                        it = parser.parse(stringToParse);
                        row = new String[rowLength];
                        i = 0;
                        while (it.hasNext()) {
                             row[i] = removeQuotes((String) it.next());
                             i++;
                        reportRow(sc, row);
                        stringToParse = reader.readLine();
         private void reportRow(ISearchResultCollector sc, String[] row) {
              BasicBugReport bug = new BasicBugReport();          
              bug.setId(Integer.parseInt(row[0]));
              bug.setRepositoryLocation(location);
              for (int i = 1; i < row.length; i++) {
                   IIssueAttributeDescriptor descr = BugzillaAttributes.getAttributeDescriptor(header);
                   if (descr != null && descr.getValueType() == TextAttribute.class) {
                        TextAttribute ta = new TextAttribute(row[i]);
                        bug.setAttribute(descr, ta);
                   if (descr != null && descr.getValueType() == UserAttribute.class) {
                        UserAttribute ua = new UserAttribute(new User(row[i], row[i]));
                        bug.setAttribute(descr, ua);
    if (descr == null) {
    IIssueFolder folder = getFolder(header[i], row[i]);
    if (folder != null) {
    bug.addParentIssueFolder(folder);
    bug.setState(ISyncState.PARTLY_SYNCHRONIZED);
              sc.reportResult(bug);
    private IIssueFolder getFolder(String ident, String name) {
    if (ident.equals("component")) {
    return new Component(name);
    if (ident.equals("product")) {
    return new Product(name);
    if (ident.equals("version")) {
    return new Version(name);
    if (ident.equals("target_milestone")) {
    return new TargetMilestone(name);
    return null;
         private String removeQuotes(String myString) {
              myString.trim();
              if (myString.startsWith("\"")) {
                   myString = myString.substring(1);
              if (myString.endsWith("\"")) {
                   myString = myString.substring(0, myString.length() - 1);
              return myString;
    However the compiler gives me the error on the method "removeQuotes"... so?

  • TS3694 What kind of error is (-1)?

    I recently found my old iPod Touch and I've been trying to update it to version 4.2 and an "unknown error" keeps occuring (-1).
    Does anyone have any information on how or what to do to fix this error. I've already updated my Mac and iTunes and the same error
    continues to occur.

    Error (-1)
    Try on another computer
    Also see:
    iOS: If you can't back up or restore from a backup in iTunes
    Then see:
    -1 error
    -1 error too
    If still problem  that means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • What kind of error?

    I have this error!
    org.apache.catalina.core.StandardWrapperValve invoke
    GRAVE: Servlet.service() for servlet jsp threw exception
    java.lang.NullPointerException
    at org.apache.jsp.reset_jsp._jspService(reset_jsp.java:62)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    This error appear when from page1.jsp I call window.open('reset.jsp?count=<%=count%>','rst');
    reset.jsp is a simple page that capture count and update it.
    Can someone help me please?

    this is reset.jsp
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Reset</title>
    </head>
    <body>
    <h1>JSP Page</h1>
    <%
    String counter=request.getParameter("count");
    System.out.println(counter);
    int count = Integer.getInteger(counter).intValue();
    count=count-1;
    %>
    <script> window.close();</script>
    </body>
    </html>
    that's all! I don't see any problem!
    I'm sure that count is not null, because I have seen this in request object.
    ( I'm programming using netBeans so i can see the request object )

  • HT201210 I downloaded the latest update but when it came to backing up my IPAD, I received an error message saying it could not back up my IPAD because an error occurred.  It does not say what type of error. Help!

    When I was updating my IPAD, I downloaded the latest Itunes version and then updated my IPAD.  When it came to backing up my IPAD, I received an error saying it could not be backed up because an error had occurred.  It told me to disconnect and try again.  I did this three times and it still will not work.  What else can I do?

    You may need to put the iPad in recovery mode to restore it.
    http://support.apple.com/kb/HT1808

  • DBW0: terminating instance due to error 472 : what kind of error is ???

    Wed Apr 20 10:30:34 2005
    Errors in file c:\ora92\admin\it00\udump\it00_ora_3032.trc:
    ORA-12571: TNS: errore dello scrittore del pacchetto
    Wed Apr 20 14:21:28 2005
    found dead shared server 'S000', pid = (10, 1)
    Wed Apr 20 23:19:47 2005
    found dead shared server 'S000', pid = (10, 2)
    Thu Apr 21 06:58:46 2005
    Thread 1 advanced to log sequence 122
    Current log# 1 seq# 122 mem# 0: C:\ORA92\ORADATA\IT00\REDO01.LOG
    Fri Apr 22 00:30:48 2005
    DBW0: terminating instance due to error 472
    Instance terminated by DBW0, pid = 2108

    instance terminate due to
    Wed Apr 20 14:21:28 2005
    found dead shared server 'S000', pid = (10, 1)
    Wed Apr 20 23:19:47 2005
    found dead shared server 'S000', pid = (10, 2)
    there is BUG
    if u r using shared server on window environment.
    i think this is fixed on patch 3.(9.2.0.4)
    check u r version
    select * from v$version;
    for more information
    metalink.oracle.com
    Thanks and Regards
    Kuljeet pal singh

  • An error occurs during the installation of itunes. It does not say what kind of error.

    It says "The installation encountered errors before itunes could be configured. Errors occured during installation. Your system has not been modified." ??????

    Hi
    You can download it from the other computer,and transfer it throw the flash storage device to this computer and install this package ,you can try it

  • What kind of error is this

    C:\source>java Average1
    Assertion failed: offset < fFileSize, file ..\..\..\..\src\share\native\sun\awt\
    font\fontmanager\fontobjects\fontObject.cpp, line 240
    abnormal program termination
    the above source code can be compiled
    but when i run java it occurs above error
    ive tried to install back my java jdk 1.3 on windows 2000 but it still has the same result
    its weird that at my friends computer it can run well
    my email [email protected]

    import javax.swing.JOptionPane;
    public class Average1 {
    public static void main( String args[] )
    int total, // sum of grades
    gradeCounter, // number of grades entered
    gradeValue, // grade value
    average; // average of all grades
    String grade; // grade typed by user
    // Initialization Phase
    total = 0; // clear total
    gradeCounter = 1; // prepare to loop
    // Processing Phase
    while ( gradeCounter <= 10 ) {  // loop 10 times
    // prompt for input and read grade from user
    grade = JOptionPane.showInputDialog(
    "Enter integer grade: " );
    // convert grade from a String to an integer
    gradeValue = Integer.parseInt( grade );
    // add gradeValue to total
    total = total + gradeValue;
    // add 1 to gradeCounter
    gradeCounter = gradeCounter + 1;
    // Termination Phase
    average = total / 10; // perform integer division
    // display average of exam grades
    JOptionPane.showMessageDialog(
    null, "Class average is " + average, "Class Average",
    JOptionPane.INFORMATION_MESSAGE );
    System.exit( 0 ); // terminate the program

  • On what kind of errors we decide to perform tracing on particular servers or application?

    Hi,
    sapian,
         I want some list of errors or warnings which can be faced while executing the reports.
    Depending on the type of error on which server or application we need to perform tracing.Can you give me some list of error can be traced with respect to the servers or applications in CMC.
    Thanks in advance,
    Regards,
    Kishor

    Hi Kishor,
    To know on which server you need to enable tracing on , you will need to know the process flows of task in BI
    For example , if we get an error while scheduling a report  , we know that while scheduling only respective job servers are used to schedule reports , so we enable trace on report specifc job server.
    Regards,
    RVS

  • What kind of error is this? Can't find answer

    I loaded up an H.264 file into FCP X. I did my edits and everything looks fine on my primary storyline, no issues with playback at all. Video played back with my edits. My edits are basic edits (cutting of clips). And I have background rendering set to on
    I go to share, export to compressor 4. In side of compressor I click on preview and I get this. Nothing is showing up in the preview.
    I found this strange but I went and did the encode anyway thinking maybe it just couldn't show me a preview. The video output was the same as the preview.
    I don't know what I am doing wrong as everything looks correct in FCP X. Not sure why Compressor 4 can't see the video

    export to compressor 4
    You mean Send to Compressor?
    Try trashing your project render files and don't re-render.
    Is playback set to proxy or original/optimized?

  • General question: what kind of error is this

    This has happened to me a couple times now. I'm in Apple Motion, working on projects that aren't too intensive, when everything but the mouse freezes. I can still move it around but I can't click on anything or change applications (not even with the keyboard). I hesitate to call this a "crash" since the app doesn't quit and the computer doesn't completely lock up. Would you call this a freeze, kernel panic, what?
    This may be related to using a Matrox MXO device with my video card, as it was turned on in both cases. Trying to work with their tech support to figure out if this is the culprit...

    Oh yes, the Console log. I know it well.
    Here's what I found in system.log at the time of the freeze:
    ATIRadeon::waitfor_rbspace: Overflowed block waiting for FIFO space. Have 2, need 5. RBBM_STATUS 0xb803c100
    ** ASIC Hang Log Start **
    (followed by lots of kernel messages)
    So yeah, definitely a graphics card issue, although maybe not the Matrox? Hard to say.
    I've had this setup (ATI Radeon x1900, Dual Apple 23" monitors, Matrox MXO) for a couple months now and it was running great under Tiger 10.4.11. It wasn't until I installed Leopard that this started happening. FWIW, I didn't upgrade, I installed it on a brand new drive that's in drive slot #4, ran all the system and Quicktime updates afterwards. Everything seems to run OK except for this occasional glitch. I ran First Aid and Repaired permission afterwards but I do regular maintenance anyway so I don't think that's going to fix anything.

Maybe you are looking for