Please help with compiling error

Hello, I am currently taking a class in Java Programming and need help with an error. I am working on a Mortgage Calculator and when I compile the code I get this error. I have no idea how to fix this. Can anyone help? Thank you.
'{' expected public class MortgageCalculator
1 error
Tool completed with exit code 1
Here is my code
import java.io.*;//*java input output
import java.util.Date;//Date Utility
import java.util.Formatter;//format Utility
import java.text.NumberFormat;//*format numbers
//class MortgageCalculator
public class MortgageCalculator
public static void main(String[]args);{
Date currentDate=newDate();
DecimalFormat decimalPlaces=newDecimalFormat("0.00");
//declare Variables
final double principalBalance=200000;//*$200,000 Loan
final double monthlyInterest=.06;//*6% interest rate
final double Term=12*30;//*monthly interest rate
final double monthlyInterest=((principalBalance*(monthlyInterest/12))/(1-Math.pow(1+(monthlyInterest/12))-(Term)));
//Display Output
System.out.println("\t\t" + currentDate);
System.out.println("\t\tLoan Amount" + principalBalance);
System.out.println("\t\tInterest Rate" + monthlyInterest);
System.out.println("\t\tTerm of Loan" + Term);
System.out.println("\t\tThe Payment will be:" + monthlyInterest);
System.out.println(decimalPlaces.format(mothlyInterest));
}

You need to enclose your class body in { }. You're missing at least one of them

Similar Messages

  • Help with compilation error

    Hello
    I have a problem with my jsp developement. When i create a jsp (with no beans) i test it and it runs fine (not good but fine), then when I test it with multiple users at time, it generate a jsp compilation error ie. "missing term }" and I can not figure out why it is getting that error, it has been compilated before! so it should not generate a compilation error, becouse i'm not editing the jsp source. I think that every time the jsp is requested the virtual machine is re-compiling it, but is only what i thing and i don't know why... can any body help me? please.
    I apologize for my bad english
    Thank you for your time reading this.

    Sorry becouse i can't be more espesific with the error that i get, that error is complete apears in a complete randomic way, I mean taht it apears when nerver is expected or doesn't apear when is expected, only thing that i got of that error is that the compiler some time says that are mising semi-colon (;), some time says that are mising quotation marks (") or are mising }, the error is no the same allways no mater the situation, I can run the jsp in my pc but the error doesn't apear, thats very strange becouse the compilation error apear after the jsp was executed with no errors.
    this is my jsp:
    <%@ page import="java.util.Calendar,java.text.SimpleDateFormat,java.util.Date,java.util.Stack,java.util.Enumeration, java.util.Hashtable,java.sql.*, java.util.Vector" %>
    <%@ include file="../incs/dbpool_inc.jsp" %>
    <%@ include file="funciones.jsp"%><html>
    <head>
    <title>Resolver preguntas</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="../css/0001.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <% //to get user data from the session.
         String userid = session.getAttribute("idu") != null ? (String)session.getAttribute("idu") : "";
         String asign = session.getAttribute("idHomeAssignatura") != null ? (String)session.getAttribute("idHomeAssignatura"): "";
         String idcuest = session.getAttribute("idcuest") != null ? (String)session.getAttribute("idcuest") : "";
         String secuenc = session.getAttribute("secuenc") != null ? (String)session.getAttribute("secuenc") : "";     
         String secuens = request.getParameter("secuens") != null ? request.getParameter("secuens") : "0";
         //to know if it's aloww to save cahnges in the database
         boolean guardar = request.getParameter("guardar") != null ? (request.getParameter("guardar")).equals("si")? true: false :false;
         if(userid.equals("")|| asign.equals("")){//if 1          
              out.println("</head><body><font face=\"Arial\" size=\"2\" color=\"#000000\"><b>El tiempo de conexi&oacute;n ha expirado. Para ingresar de nuevo al sistema haga click aqu&iacute;.</b></font></body></html>");
         }//fin if 1
         else{//else de if 1          
              try{// try 1
                   Connection conn = dbpool.getConnection();
                   Statement stmtt = conn.createStatement();
                   Statement stmtmod = conn.createStatement();
                   Statement stmtresp = conn.createStatement();
                   ResultSet rsmodul = stmtmod.executeQuery("select id_modulo from eit_cuestxmat where id_cuestionario="+idcuest);
                   String modulo = rsmodul.next()? rsmodul.getString("id_modulo"): "";
                   rsmodul.close();
                   stmtmod.close();
                   int secuencia1 = Integer.parseInt(secuens);
                   int secuencia2 = Integer.parseInt(secuenc)+1;
                   secuenc = (secuencia1 == secuencia2)? String.valueOf((Integer.parseInt(secuenc)+1)): secuenc;
                   session.setAttribute("secuenc", secuenc);               
                   if(esAlumno(userid, stmtt, asign)){//if 2
                   if(guardar){//if 2.0
                             String idpreg1 = request.getParameter("idpregunta") != null ? request.getParameter("idpregunta") : "";
                             ResultSet rstipop = stmtt.executeQuery("select tipo from eit_pregunta where id_pregunta="+idpreg1);                         
                             String tipop1 = rstipop.next()? rstipop.getString("tipo") : "";
                             rstipop.close();
                             String respuesta = "N/A", correspondencia ="";                         
                             String restado="n";
                             String rcorrecta = "n";
                             if(tipop1.equals("selec")){
                                  correspondencia = request.getParameter("rprevia") != null? request.getParameter("rprevia") : "-1";
                                  ResultSet rscorrecta = stmtt.executeQuery("select escorrecta from eit_opciones where id_pregunta="+
                                                           idpreg1+" and id_opcion="+correspondencia+" and escorrecta like 's'");
                                  if(rscorrecta.next()){
                                       rcorrecta = "s";
                                  rscorrecta.close();
                             else{
                                  if(tipop1.equals("empar")){
                                       ResultSet rsempar = stmtt.executeQuery("select escorrecta from eit_opciones where id_pregunta="+
                                                                idpreg1+ "order by orden");
                                       int corres = 0;
                                       int correctas = 0;
                                       while(rsempar.next()){                                   
                                                 String resp = request.getParameter("selopc"+String.valueOf(corres+1)) != null? request.getParameter("selopc"+String.valueOf(corres+1)) : "";
                                                 correspondencia=correspondencia+((corres == 0)? "":",")+resp;
                                                 correctas = correctas + (resp.equals(rsempar.getString("escorrecta"))? 1 : 0);
                                                 corres++;
                                       rcorrecta = String.valueOf(correctas);
                                       rsempar.close();
                                  else{
                                       if(tipop1.equals("complet")){
                                            ResultSet rscomplet= stmtt.executeQuery("select correspondencia from eit_opciones where id_pregunta="+idpreg1);
                                            String complet = rscomplet.next()? rscomplet.getString("correspondencia"):"";
                                            rscomplet.close();
                                            String complet1 = "";
                                            int idxcar = complet.indexOf("$");
                                            respuesta = request.getParameter("comp0") != null ? request.getParameter("comp0") : "";
                                            correspondencia = request.getParameter("comp1") != null ? request.getParameter("comp1") : "";
                                            int corrc =0;
                                            if(idxcar>=0){
                                                 complet1 = complet.substring((idxcar+1),complet.length());
                                                 complet = complet.substring(0, idxcar);
                                                 corrc = (respuesta.equalsIgnoreCase(complet))? 1 : 0;
                                                 corrc = (correspondencia.equalsIgnoreCase(complet1))? (corrc+1) : corrc;
                                                 rcorrecta = (corrc==2)? "s": (corrc==1)? "m": "n";
                                            }else{
                                                 corrc=(respuesta.equalsIgnoreCase(complet))? 1 : 0;
                                                 rcorrecta = (corrc==1)? "s": "n";
                                       else{
                                            if(tipop1.equals("abierta")){
                                                 respuesta = request.getParameter("respuesta") != null? request.getParameter("respuesta") : "";
                             String guardarResp = "insert into eit_respuesta(id_pregunta, id_cuestionario, id_materia, id_modulo"+
                                                      ", respuesta, correspondencia, rcorrecta, restado, sec_pregunta, codest)"+
                                                      " values ("+idpreg1+", "+idcuest+", '"+asign+"', "+modulo+", '"+respuesta+"', '"+correspondencia+"', '"+rcorrecta+"', '"+restado+"', "+
                                                      String.valueOf((Integer.parseInt(secuenc)-1))+", "+userid+")";
                             String sqlexistencia = "select id_pregunta from eit_respuesta where codest ="+userid+" and id_cuestionario="+idcuest+" and id_materia="+
                                                           asign+" and id_modulo="+modulo+" and id_pregunta="+idpreg1;                         
                             boolean existeResp = (stmtt.executeQuery(sqlexistencia)).next();
                             String editarResp = "update eit_respuesta set respuesta='"+respuesta+"', correspondencia='"+correspondencia+"', "+
                                                      "rcorrecta='"+rcorrecta+"', restado='"+restado+
                                                      "' where codest ="+userid+" and id_cuestionario="+idcuest+" and id_materia like '"+
                                                      asign+"' and id_modulo="+modulo+" and id_pregunta="+idpreg1;
                             //if the page is editing execute string editarResp else execute string guardarResp
                             stmtt.executeUpdate(existeResp? editarResp:guardarResp);
                        String sqlbpu="select p.enunciado, p.tipo, p.titulo, p.id_pregunta from eit_pregunta p, eit_prexcuest pxc where pxc.id_cuestionario="+idcuest+" and pxc.id_pregunta = p.id_pregunta and pxc.secuenc= "+String.valueOf(secuenc);//bupu: buscar pregunta cuestionario
                        //System.out.println("resolvpreg.jsp "+sqlbpu);
                        ResultSet rsbpu = stmtt.executeQuery(sqlbpu);
                        if(rsbpu.next()){ // if 2.1
                             String enunciado = rsbpu.getString("enunciado");
                             String tipo = rsbpu.getString("tipo");
                             String titulo = rsbpu.getString("titulo");
                             String idpreg = rsbpu.getString("id_pregunta");
    %>
    <h1 align="center"><font color="#0033CC" face="Arial, Helvetica, sans-serif"><%=titulo%></font></h1><br>
    <p align="left"><font face="Arial, Helvetica, sans-serif">
    <strong>Enunciado:</strong> <%=enunciado%>. </font><br>
    <%
         String sqlrespuesta = "select respuesta, correspondencia from eit_respuesta where id_pregunta="+idpreg+
    " and id_cuestionario = "+idcuest+" and id_materia like '"+asign+"' and id_modulo="+modulo+" and codest= "+userid;     
         ResultSet rsrespuesta = stmtresp.executeQuery(sqlrespuesta);     
         String sqlopcs= "select opcion, escorrecta, correspondencia, orden from eit_opciones where id_pregunta ="+idpreg+"order by orden";
         ResultSet rsops = stmtt.executeQuery(sqlopcs);          
    %>
    <%String letras = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
         Vector opciones = new Vector();
         Object obj[] = new Object[4];
         while(rsops.next()){
              obj[0] = rsops.getString("opcion");
              obj[1] = "";
              obj[2] = rsops.getString("correspondencia");
              obj[3] = rsops.getString("orden");
              opciones.addElement(obj.clone());
         rsops.close();
    %>
    <form action="resolverpreg.jsp" method="post" name="Correspondencias">
    <%
         String respEmpar = "";
         String respuestap="";
         String respcorres[] = {"",""};
         if(rsrespuesta.next()){     
              respuestap = rsrespuesta.getString("respuesta");
              respEmpar = rsrespuesta.getString("correspondencia");
              respcorres[0]= respuestap;
              respcorres[1]= respEmpar;
         rsrespuesta.close();
         if (tipo.equals("empar")){
    %>
    <%@ include file="resolvempar.jsp"%>
    <%}//fin if tipoPreg = 'emapar'
         else{
         if(tipo.equals("selec")){
    %> <%@ include file="reslovselec.jsp"%>
         <%}//fin if tipopreg = 'select'
         else{
              if(tipo.equals("complet")){%>
              <%@include file="resolvcomplet.jsp"%>
         <%}//fin if tipopreg='complet'
         else{
              if(tipo.equals("abierta")){%>
              <%@include file="resolvabierta.html"%>
              <%}//fin if tipopreg='abierta'
              else{%>
                   <span class="titolForum">Error: no se ingres&oacute; ning&uacute;n tipo de pregunta
                   o se est� accediendo en forma err&oacute;nea a este sitio.</span>
              <%}//fin else de tipopregunta = 'abierta'%>          
         <%}//fin else tipopreg='complet'%>                    
         <%}// fin else de tipopreg = 'select'%>     
    <%}//fin else de tipoPreg = 'emapar'%>
    <br>
    <input name="idpregunta" type="hidden" value="<%=idpreg%>">
    <input name="guardar" type="hidden" value="si">
    <input name="secuens" type="hidden" value="<%=(1+(Integer.parseInt(secuenc)))%>">
    <input type="submit" name="continuar" value="Continuar">
    </form>
    <%                    rsbpu.close();
                        }//fin 2.1                    
                        else{%>
    Ha terminado de realizar la prueba<br>
    <a href="elejCuestion.jsp">Continuar</a>
    <%}
                   }// fin if 2
                   stmtt.close();
                   stmtresp.close();
                   conn.close();
              }// fin try 1
              catch(Exception expt){
                   out.println("Error: "+expt);
         }//fin eles de if 1
    %>
    </body>
    </html>

  • Please help with this error: "Your request could not be completed because of a disk error"

    So photoshop cs6 was working fine a few weeks ago. After not using it for about 2 weeks, I try opening a RAW file and I get this error every time. JPGs open and work fine. I have extensively searched on the internet for solutions and have tried everything such as: disk checking, deframgenting, playing around with photoshop preferences, deleting temp files, resetting preferences, clearing disk space. I have assigned two hard drives for photoshop, one with 16 GB free and the other with 8 GB free. I am getting very frustrated. Please help!

    mistahbo1 wrote:
    …I have assigned two hard drives for photoshop, one with 16 GB free and the other with 8 GB free. I am getting very frustrated. Please help!
    That's woefully inadequate for scratch file space.
    The rule of thumb I follow says to figure on 50 to 100 times the size of your largest file ever multiplied by the number of files you have open.  I have seen the scratch file exceed 300 GB once, an admittedly rare occurrence, but it often exceeds 200 GB when stitching large panoramas and the like.
    Additionally, if either one those two drives you mention with "16 GB free and the other with 8 GB free" happened to be your boot drive, you'd be in a heap of trouble because neither one of those drives has nearly enough space to accommodate the swap files of the OS and Photoshop's scratch.
    As an example—and stressing that I'm aware that others have even more scratch space than I do—I keep two dedicated, physically separate hard drives as my primary and secondary Photoshop scratch disks and a lot of GB free on my boot drive for the OS.  I have 16 GB of RAM installed:

  • Please help with cfscript error!

    When I run my app, I got this error:
    sdfst_catcherror is recording this error: Context validation
    error for tag cfscript.; The start tag must have a matching end
    tag. An explicit end tag can be provided by adding
    </cfscript>. If the body of the tag is empty you can use the
    shortcut <cfscript .../>.
    The CFML compiler was processing:
    a cfscript tag beginning on line 45, column 4.
    a cfscript tag beginning on line 45, column 4.
    When I checked my codes, all the
    <cfscript></cfscript> have the pairs. There are only 2
    pairs of <cfscript</cfscript> in this template.
    See my code structure below:
    <!--- the first <cfscript pair> --->
    <cfscript>
    function getTRS(var5)
    some codes here...
    return TRS;
    </cfscript>
    <cffunction name="FrmTxt" returntype="Struct">
    <cfargument name="EmpCodes" required="true"
    type="array">
    <cfargument name="EmpID" required="true"
    type="numeric">
    <cfquery name="GetEmpInfo>
    Select * from......
    </cfquery>
    <cfset varFrms = GetEmpInfo.EmpCodes>
    <cfset A_Key = 1>
    <cfset structFrmTxt = StructNew()>
    <!--- The second pair --->
    <cfscript>
    Some codes here....
    Need to output #TRS# returned by getTRS(var5) set above
    </cfscript>
    <cfreturn structFrmTxt>
    </cffunction>
    From other CF forum I learned that I can't put getTRS(var5)
    within the second <cfscript></cfscript> within
    <CFFUNCTION> pair
    it says "You can't put UDF within UDF or method within
    method". When I did originally, I got this error:
    Unable to complete CFML to Java translation, Error
    information unsupported statement: class
    coldfusion.compiler.ASTfunctionDefinition
    I'm stuck and can't find any resources to solve this problem
    anymore, please help!....

    When I checked my codes, all the
    <cfscript></cfscript> have the pairs.
    This error can often mean that you did not properly end a
    previous code
    block or line. So the closing </cfscript> is being
    considered part of
    that unclosed code. For me, it is often a missing semi-colon
    [;] on the
    last line I wrote, missing a closing curly bracket [}] could
    do it as well.
    Check your code, this is seldom more then missing a bit of
    syntax.

  • S.O.S.!!!! Please help with App Error 205

    So yesterday, I was so excited about the release of the Mac Desktop manager. I installed it on my Mac, started running the updates for my 8330 and the usb connector fell out while updating. I re-inserted it but it did not continue the update. Now, my phone wont completely reboot, it just ends on a message: App Error 205 and a reset option. I hit the option and it just cycles back around to the error message after trying to re-boot. I have tried the battery pull trick. I have seen the threads concerning the PC app loader solution but nothing for MAC users. 
    PLEASE HELP!! I am out on the road right now and my Crackberry is my lifeline to my business and personal world.  
    Thank you for any support in helping resolve this issue. 

    Hi and welcome to the forums!
    Check out the kb article:  http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB17024&slic...
    Not sure this will help if you are "on the road" and don't have pc with you.  Perhaps another user will post another alternative for you as well.
    Let us know how it goes.  Happy to have you here!
    IrwinII
    Please remember to "Accept as Solution" the post which solved your thread. If I or someone else have helped you, please tell us you "Like" what we had to say at the bottom right of the post.

  • Please help with custom error messages

    Hello,
    I am trying to display my own error messages for the <f:validate_required /> validation.
    Here is what I tried:
    -in my faces config xml file, I have:
    <message-resources>
    <message-resources-id>myResourceID</message-resources-id>
    <message>
    <message-id>javax.faces.validator.RequiredValidator.FAILED_MESSSAGE_ID</message-id>
    <summary xml:lang="en">No name was entered</summary>
    </message>
    </message-resources>
    -in the jsp page, I have:
    <h:input_text id="name" valueRef="person.name" >
    <f:validate_required />
    </h:input_text>
    (below:)
    <h:output_errors id="myResourceID" for="name"/>
    It is not displaying my custom error message ("no name was entered") but the default error messages.
    Please help!!
    Juju

    Unfortunately, the current version of the reference implementation does not pick up replacement messages from <message-resources> elements yet. This will be corrected prior to the next release.
    Once that is done, the original proposal will work if one change is made -- all of the standard validators pick up their messages from a standard message resources identifier, so you will need to change to:
    <message-resources-id>
    javax.faces.context.FACES_API_MESSAGES
    </message-resources-id>
    instead of your own message resources identifier.
    Craig

  • Help with compiling error

    Okay, so I've been making a cash register app, and the thing isn't compiling for me. I keep looking over this and I'm not sure why it isn't working, so I was hoping someone could point out what I've done wrong here.
    public class Receipt
            public static void main(String[] args) throws IOException
                    int q;
                    RetailItem retail = new RetailItem("Description", 1, 10.00, 10.00);
                    Scanner keyboard = new Scanner(System.in);
                    System.out.println("Enter quantity: ");
                    q = keyboard.nextInt();
                    CashRegister receipt = new CashRegister(retail, q);
                    FileWriter fwriter = new FileWriter("SalesReceipt");
                    PrintWriter outputFile = new PrintWriter(fwriter);
    "Receipt.java" 31L, 835C                                     1,1           Top
    import java.util.Scanner;
    import java.io.*;
    public class Receipt
            public static void main(String[] args) throws IOException
                    int q;
                    RetailItem retail = new RetailItem("Description", 1, 10.00, 10.00);
                    Scanner keyboard = new Scanner(System.in);
                    System.out.println("Enter quantity: ");
                    q = keyboard.nextInt();
                    CashRegister receipt = new CashRegister(retail, q);
                    FileWriter fwriter = new FileWriter("SalesReceipt");
                    PrintWriter outputFile = new PrintWriter(fwriter);
                    outputFile.println("\tSALES RECEIPT");
                    outputFile.println("Unit Price: $" + retail.getRetail());
                    outputFile.println("Quantity: " + q);
                    outputFile.println("Subtotal: $" + receipt.getSubtotal());
                    outputFile.println("Sales Tax: $" + receipt.getTax());
                    outputFile.println("\nTotal: $" + receipt.getTotal());
            outputFile.close();
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
    ~
                                                                                                                                                  1,1           All

    You know, the compiler errors also give you more detail than "isn't compiling for me". Do you expect people here to compile it for you to see the error you're already seeing and witholding?

  • Please help with an error "could not write value key \Software\classes\iTune.wav.....

    I have windows 7 with plenty of memory and storage capacity. When accessing iTunes I had an error message to uninstall and reinstall. I have uninstalled but when trying to reinstall I get the error message "could not write value key \software\classes\iTune.wav. Verify that you have sufficient access to that key or contact your support personnel"  I don't understand what this means, can anyone help please?

    For "Could not open key/write value" errors when reinstalling try b noir's user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\
    [LongStringOfLettersAndNumbers]" error messages when installing iTunes for Windows.
    The technique can be applied to the branch of the registry mentioned in the error message.
    If you still have issues see Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Please Help with strange error.

    I've searched extensively for an answer to this strange problem I'm having both throughout this forum and in Google and have come up dry. Any help would be HUGELY appreciated.
    I'm using Audition 3 with a Windows XP Pro SP3 comp.
    I have recorded some live music at 44.8/24 bit sample rate and used Audition to cut the individual tracks and make a few other minor editing changes. I saved the files and they play with no problem. I did this for about 10 complete live shows so this represents a lot of work and there are many files.
    Now I want to downsample the files to 44.1/16 like I have done many times before with no problems. Well, it seems that about 25% of the files I've saved, although can be played with my default player with no problems can NOT be opened using Audition. I receive an "above file name is invalid" error. I also tried to open with Audacity and get the same error message. I tried to right click on these files and choose "open with" but that option, along with copy, cut, rename, properties etc is not there. The names of these files are perfectly valid but I'm unable to rename the files. When I try to move, copy or cut the file, nothing happens.
    I've rebooted as well as defragged the drive but still no joy. I still have the original large files but it was so much work to edit these files I really don't want to do it all over again. I would like to know why it happened so it won't happen anymore.
    I think I covered everything here but if you have questions please ask. Does anyone have any ideas why this is happening and what I can do about it?
    Thank you very much,
    Seth
    UPDATE: I just found that Windows Media Player gives me the same error. I'm using XM Player as my audio player and it doesn't have any problems playing these files.

    Are these files "real" files or perhaps shortcuts to the files, and/or are these files located on a local hard drive or on a network drive (Windows Home Server...)? The "file" name may actually be a perfectly valid name, but when you are not logged in to that server, you might get that message.
    Is "above file name is invalid" the only part of the error, or is the filename (or part of it) in this error message. E.g. "04 above file name is invalid": it might indeed be possible that the spaces in the filename cause this error. But since you cannot rename them there's hardly a remedy other than to record these files again in AA whilst playing them in XM player.
    There is a utility called "unstoppable copier"; it can copy files that you normally cannot copy (http://www.roadkil.net/). Try that one so we can have a look at one of the files.

  • Please help with Tomcat error

    I am doing my first JSP page that will link up to an example application cmpRoster that comes with the J2EE tutorials. The application is deployed, and i think my JSP code is right, but I get an error like below.
    this is the first time i have heard of tomcat so i really am in the dark,
    regards,
    brian
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    No Java compiler was found to compile the generated source for the JSP.
    This can usually be solved by copying manually $JAVA_HOME/lib/tools.jar from the JDK
    to the common/lib directory of the Tomcat server, followed by a Tomcat restart.
    If using an alternate Java compiler, please check its installation and access path.
    org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:127)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:348)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:424)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:464)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:448)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:551)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:300)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:324)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:284)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:306)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:200)

    have you set up the JAVA_HOME environment variable as per tomcat install instructions?
    Set an environment variable JAVA_HOME to the pathname of the directory into which you installed the JDK release. [http://jakarta.apache.org/tomcat/tomcat-4.1-doc/RUNNING.txt]

  • Need help with compile error: externally visible definition

    I am getting the following error on compile:
    "A file found in an source-path must have an externally
    visible definition. If a definition in the file is meant to be
    externally visible, please put the definition in a package."
    Typically this would mean that an actionscript class file is
    not placed in a package, but I am getting the error for a Custom
    MXML ListItemRenderer component I created.
    Does anyone have a clue why this would be happening? It
    happened once before and mysteriously went away after I removed all
    of the code in the file, saved it, pasted it back in and saved it
    again. Unfortunately that is not working this time.
    I would really appreciate any help.
    Thanks,
    shaun

    OK here it is, first i'll give u the Card.java file, it compiles i think:
    public interface Card {
    /** The four suites. */
    public static final byte CLUB = 0, DIAMOND = 1, HEART = 2, SPADE = 2;
    /** The suite of this card. */
    public byte suite();
    * Is 's' a valid suite?
    * @param s a value to check to see if it is a valid suite.
    * @return true iff 's' is a valid suite.
    public boolean validSuite(byte s);
    /** The thirteen standard cards. */
    public static final byte ACE = -1, TWO = -2, THREE = -3, FOUR = -4,
    FIVE = -5, SOX = -6, SEVEN = -7, EIGHT = -8, NINE = -9, TEN = -10,
    JACK = -11, QUEEN = -12, KING = -13;
    /** The face-value of this card */
    public byte value();
    * Is 'v' a valid face-value?
    * @param v the value to check to see if it is a valid face-value.
    * @return true iff 'v' is a valid face-value.
    public boolean validValue(byte v);
    * @param a_card the card to compare
    * @return true iff the suite of this card is identical to the suite
    * of <code>a_card</code>
    public boolean sameSuiteAs(Card a_card);
    * @param a_card the card to compare
    * @return true iff the face value of this card is identical to the
    * face value of <code>a_card</code>
    public boolean sameFaceValueAs(Card a_card);
    * @param a_card the card to compare
    * @return true iff the face value of this card is strictly greater than
    * the face value of <code>a_card</code>
    public boolean greaterFaceValueThan(Card a_card);
    * Whether this card has a greater value than <code>a_card</code> is
    * determined by a given card game's rules.
    * @param a_card the card to compare
    * @return true iff this card has a great value than <code>a_card</code>
    public boolean greaterValueThan(Card a_card);
    * Two cards are equivalent if they are indistinguishable in a given
    * card game's rules.
    * @param a_card the card to compare
    * @return true iff this card and <code>a_card</code> are indistinguishable
    public boolean equivalentTo(Card a_card);
    }

  • Please Help with Burn Error in iDVD 4.0.1

    I'm using a G5 and running OS 10.3.9. I've burned a slideshow once with no problems using iDVD over a year ago and went to try again recently (after upgrading whenever an upgrade was available) and I'm getting the following error:
    Errors were found during the burning process
    The recording device reported the media error:
    WRITE error - RECOVERY FAILED. (0x0C, 0x08.)
    I'm using DVD-R as required, which I've also used in the past. Can anyone help me in troubleshooting this problem. I've ruined 3 disks so far trying to burn this slideshow. Any information would be helpful. Thank you!

    Thanks for your response Sue.
    I tried the Verbatim DVD-R and I'm now getting the following error:
    Errors were found during the burning process
    The recording device reported the media error:
    Power calibration area error. (0x73, 0x03.)
    Where can I choose the burn speed? You recommended 4x or slower but no burn speed option appeared when I clicked 'burn'.
    M

  • Please help with (long) error message upon launch of final cut 7

    Hello. I have just installed final cut 7 and when opening, it asks for serial number/name etc...I enter that information then it crashes giving this error message (sorry if this is so long, but wasn't sure what to put)
    Process: Final Cut Pro [215]
    Path: /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Identifier: com.apple.FinalCutPro
    Version: 7.0 (7.0)
    Build Info: FCPApp-906181654~22
    Code Type: PPC (Native)
    Parent Process: launchd [165]
    Interval Since Last Report: 1220 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 383 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2010-02-27 17:21:50.684 -0500
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: F2735926-CF71-49A6-9CAF-CBE82AF568D0
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 8
    Thread 0:
    0 libSystem.B.dylib 0x96e3df3c sem_wait + 12
    1 com.celemony.melodynebridge.au 0x107f32f4 GNAudioUnitWrapperViewEntry + 504568
    2 com.celemony.melodynebridge.au 0x107f9d9c GNAudioUnitWrapperViewEntry + 531872
    3 com.celemony.melodynebridge.au 0x10779ae0 GNAudioUnitWrapperViewEntry + 6884
    4 com.celemony.melodynebridge.au 0x10773a50 0x10772000 + 6736
    5 com.celemony.melodynebridge.au 0x1078c240 GNAudioUnitWrapperViewEntry + 82500
    6 com.celemony.melodynebridge.au 0x10774a3c GNAudioUnitWrapperEntry + 1656
    7 com.celemony.melodynebridge.au 0x10a407e4 0x10772000 + 2942948
    8 ...ple.CoreServices.CarbonCore 0x015b550c CallComponentOpen + 36
    9 ...ple.CoreServices.CarbonCore 0x015b399c OpenAComponent + 536
    10 ...ple.CoreServices.CarbonCore 0x015b376c OpenComponent + 16
    11 ...ple.CoreServices.CarbonCore 0x015b55f0 CallComponent + 188
    12 ...ple.CoreServices.CarbonCore 0x015d3534 GetComponentVersion + 32
    13 com.apple.FinalCutPro 0x0030ccd8 AddAUEffect(ComponentRecord*, ComponentDescription const&, char*, char*, KGDictInt*) + 804
    14 com.apple.FinalCutPro 0x0030e254 AudioRegisterAUEffects + 1456
    15 com.apple.FinalCutPro 0x003668e4 AudioInitialize + 148
    16 com.apple.FinalCutPro 0x0029cd08 KGSoundLibAction + 780
    17 com.apple.FinalCutPro 0x00270578 CallLibs(KGLibActionCode, unsigned char) + 320
    18 com.apple.FinalCutPro 0x00270758 KGFinishLibraries + 112
    19 com.apple.FinalCutPro 0x002708e0 KGInit() + 180
    20 com.apple.FinalCutPro 0x0044202c OpenApplication(AEDesc const*, AEDesc*, long) + 64
    21 com.apple.AE 0x926d0ce0 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 164
    22 com.apple.AE 0x926d0be8 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 40
    23 com.apple.AE 0x926d09ec aeProcessAppleEvent + 212
    24 com.apple.HIToolbox 0x92f5d40c AEProcessAppleEvent + 52
    25 com.apple.HIToolbox 0x92fbc7c8 AEProcessEvent + 148
    26 com.apple.HIToolbox 0x92fbc714 HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 224
    27 com.apple.HIToolbox 0x92fb96b4 TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 64
    28 com.apple.HIToolbox 0x92f31c48 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484
    29 com.apple.HIToolbox 0x92f30de0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464
    30 com.apple.HIToolbox 0x92f30bfc SendEventToEventTargetWithOptions + 52
    31 com.apple.HIToolbox 0x92f60b88 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 308
    32 com.apple.HIToolbox 0x92f3209c DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2592
    33 com.apple.HIToolbox 0x92f30de0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464
    34 com.apple.HIToolbox 0x92f4dd04 SendEventToEventTarget + 52
    35 com.apple.HIToolbox 0x92fbc4a8 ToolboxEventDispatcher + 84
    36 com.apple.HIToolbox 0x92fb89e4 RunApplicationEventLoop + 164
    37 com.apple.FinalCutPro 0x001709d4 KGMainEvent(void*) + 52
    38 com.apple.FinalCutPro 0x002f9180 main + 56
    39 com.apple.FinalCutPro 0x0000389c _start + 744
    40 com.apple.FinalCutPro 0x000035ac start + 44
    Thread 1:
    0 libSystem.B.dylib 0x96dac278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x96def368 pthread_condwait + 1320
    2 com.apple.Foundation 0x92c791a0 -[NSCondition waitUntilDate:] + 384
    3 com.apple.Foundation 0x92c78fcc -[NSConditionLock lockWhenCondition:beforeDate:] + 268
    4 com.apple.AppKit 0x900fb9cc -[NSUIHeartBeat _heartBeatThread:] + 664
    5 com.apple.Foundation 0x92c3bd84 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x96e0fd74 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x96afb808 __CFSocketManager + 764
    Thread 3:
    0 libSystem.B.dylib 0x96db2c0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x96def46c pthread_condwait + 1580
    2 libGLProgrammability.dylib 0x90806b68 glvmDoWork + 120
    3 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x96dac258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x96def378 pthread_condwait + 1336
    2 com.apple.FinalCutPro 0x0046eb10 Synchronizable::Wait() + 44
    3 com.apple.FinalCutPro 0x00458684 DisplayQueue::Run() + 720
    4 com.apple.FinalCutPro 0x0049a460 Thread::RunHelper(void*) + 28
    5 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x96dac258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x96def378 pthread_condwait + 1336
    2 com.apple.FinalCutPro 0x0046eb10 Synchronizable::Wait() + 44
    3 com.apple.FinalCutPro 0x00515468 WorkUnitPerformer::Run() + 68
    4 com.apple.FinalCutPro 0x0049a460 Thread::RunHelper(void*) + 28
    5 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x96dac1f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x96db311c mach_msg + 56
    2 com.apple.CoreFoundation 0x96af0394 CFRunLoopRunSpecific + 1812
    3 com.apple.audio.CoreAudio 0x91d50fa8 HALRunLoop::OwnThread(void*) + 212
    4 com.apple.audio.CoreAudio 0x91d50de4 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x96dee0c4 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x96ded904 kevent + 12
    1 com.apple.CoreFoundation 0x96ac7a48 _monitor_file_descriptor_ + 240
    Thread 8 Crashed:
    0 ??? 0000000000 0 + 0
    1 com.celemony.melodynebridge.au 0x107f9a68 GNAudioUnitWrapperViewEntry + 531052
    2 com.celemony.melodynebridge.au 0x107fe20c GNAudioUnitWrapperViewEntry + 549392
    3 libSystem.B.dylib 0x96dee0c8 pthreadstart + 320
    4 ??? 0000000000 0 + 0
    Thread 8 crashed with PPC Thread State 32:
    srr0: 0x00000000 srr1: 0x4000d030 dar: 0xf032cee4 dsisr: 0x40000000
    r0: 0x0ef84750 r1: 0xf032ce00 r2: 0x00000000 r3: 0x0ef84750
    r4: 0x00000000 r5: 0x0ef848c4 r6: 0x96ad0114 r7: 0x01002c88
    r8: 0x00000000 r9: 0x000000b0 r10: 0x00000004 r11: 0xa0addf18
    r12: 0x00000000 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0xa0b2df98 r26: 0x00024f1b r27: 0x0ef84850
    r28: 0x0ef845c0 r29: 0x10a8e120 r30: 0x0ef848c0 r31: 0x107f9a2c
    cr: 0x44000022 xer: 0x20000000 lr: 0x107f9a68 ctr: 0x00000000
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x865ffd com.apple.FinalCutPro 7.0 (7.0) <6e3b6ccfc37d1f3a6667e9691d0ea1b5> /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    0xc11000 - 0xc11fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0xc15000 - 0xc1afff +KGCore ??? (???) <cda58a9c90ccd27eb7afe15273d5f2e0> /Applications/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
    0xc21000 - 0xc22fff com.apple.iokit.dvcomponentglue 1.9.5 (1.9.5) <143d5a0b230245035fb6364b29f6b76b> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0xc26000 - 0xc36fff com.apple.AERegistration 1.2 (77) <a414e04adc8d3707b024759d8836bee1> /Applications/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0xc4a000 - 0xc52fff com.apple.AEProfiling 1.2 (22) <abe7eb329c8ac259cf01e1aae9a7389a> /Applications/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0xc5b000 - 0xe44fff com.apple.security 5.0.6 (37592) <75e10021fca58a7274de9a365010049e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0xf84000 - 0x1149ffb com.apple.prokit 5.0 (883) <eb781a0ac241037a05d240696a5b040e> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1244000 - 0x12b6fff com.apple.ProFX 1.2.3 (1.2.3) <3f561013ae61fb92b5683f27d070805b> /Library/Application Support/ProApps/SharedA/Frameworks/ProFX.framework/Versions/A/ProFX
    0x12d5000 - 0x13d7ffd com.apple.DiskImagesFramework 10.5.8 (201) <e85883f76eda4cfa37e6d3f6b53db310> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x143a000 - 0x1493ffb com.apple.proapps.MIO 1.0 (498) <d3fc34331aac931041ee6d1188690015> /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x14ce000 - 0x14d9ffb com.apple.finalcutstudio.prometadatasupport 0.6 (1.0) <848659e5de39081af860e6394174a4bd> /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0x14e2000 - 0x1517fff com.apple.FWAVCPrivate 1.46 (46) /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x152e000 - 0x154cffb com.apple.XSKey 1.0.0 (52) <eb878ce4313af544efbfb43a1724339d> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x155a000 - 0x157bff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x1583000 - 0x1885ffb com.apple.CoreServices.CarbonCore 786.11 (786.14) <4da8e0984e333f8cea32a24ba4364e8c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x1908000 - 0x199ffff com.apple.LaunchServices 292 (292) <06cb373fd960fbc2b4a0201f55c7dd6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x19ec000 - 0x1b34ff3 libicucore.A.dylib ??? (???) <bdab570d90979c4f601131d442f84720> /usr/lib/libicucore.A.dylib
    0x1b86000 - 0x1c70fff libxml2.2.dylib ??? (???) <c16d0fbbf8fd6b30695cd3c930355066> /usr/lib/libxml2.2.dylib
    0x1c9b000 - 0x1d35ff7 com.apple.ApplicationServices.ATS 3.8 (???) <61c7a66473c16fce3d1eac4d09d401d7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x1d61000 - 0x1e31fff com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x1e73000 - 0x23efff7 com.apple.CoreGraphics 1.409.5 (???) <5055e3621c3a2239851bd7e829e94ea1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x24bb000 - 0x2607fff com.apple.ImageIO.framework 2.0.7 (2.0.7) <c466caa621b9fa7431877610c21e39a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x265e000 - 0x270efff com.apple.QD 3.11.57 (???) <e74b370c6f81fc00e8936f5cf7c8ebe0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x2742000 - 0x27fcfff libcrypto.0.9.7.dylib ??? (???) <1d82e65c85d65367f3b6b06355c89c9b> /usr/lib/libcrypto.0.9.7.dylib
    0x284a000 - 0x286aff7 libJPEG.dylib ??? (???) <bcc63fc19e0a5fa3d4b411f0de1d5851> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x2871000 - 0x28b2ffb libTIFF.dylib ??? (???) <a4fac1b78bf536e570841166630ff642> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x28bc000 - 0x28c0ffe libGIF.dylib ??? (???) <cc34b3a44618a0e1ccc1c5b1cf28b5bb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x28c5000 - 0x28e1ffb libPng.dylib ??? (???) <036c49544cb7b1d09d5e0185a1e26f7d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x28e8000 - 0x28eaffd libRadiance.dylib ??? (???) <304e574d5de8d26630c4c516cc6e47fb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x28ee000 - 0x2915fff libcups.2.dylib ??? (???) <640068d6a91267e0d6e31afdac1c4a03> /usr/lib/libcups.2.dylib
    0x2920000 - 0x2a67ffb com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x2ad8000 - 0x2af3ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <408eb07010ed69f4c94353cac76c84c6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x2afe000 - 0x2b33ff3 com.apple.LDAPFramework 1.4.5 (110) <0cf1d114abaf598355afb6537b76874e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x2b3e000 - 0x2b68ff7 libssl.0.9.7.dylib ??? (???) <2aafe2efc0fb9868cb630ac50b5892b4> /usr/lib/libssl.0.9.7.dylib
    0x2b77000 - 0x2baaffb com.apple.MediaKit 9.1 (401) <1e0e8c007a642dff76454b81bb554c88> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x2bba000 - 0x2c88ff5 com.apple.DiscRecording 4.0.7 (4070.4.1) <73f6a269ffb9718fa9f165da9f2a5eb1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x2cef000 - 0x2d1cffb libcurl.4.dylib ??? (???) <bd94f6417b93e0174fa282255dd6d6d1> /usr/lib/libcurl.4.dylib
    0x2d43000 - 0x2d87fff com.apple.vmutils 4.1 (104) <ea4bd764588ed4625099564b5e253eb1> /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x80b6000 - 0x80bafff com.apple.coretech.AELicensingAquaPro 1.4 (359) <3f3691c9aa37d02c090a79d906dbf71b> /Applications/Final Cut Pro.app/Contents/Resources/AELicensingAquaPro.bundle/Contents/MacOS/AELicensing AquaPro
    0x80e1000 - 0x811efff libRIP.A.dylib ??? (???) <a710b7ef58700a54a39e7738dd804e57> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x812b000 - 0x8138fff libCSync.A.dylib ??? (???) <7ccecf2b36209e1196c42c635938519e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x8140000 - 0x8148ffb libCGATS.A.dylib ??? (???) <72ecb94f23cdc622a277671b4976a7d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0xaa6e000 - 0xaa70fff com.apple.FinalCutPro.Plugins.Text Window 7.0 (7.0) <3d6dd1bda1778170c67dc446329ef575> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0xb6ce000 - 0xb8b5ff3 com.apple.RawCamera.bundle 2.1.1 (508) <43747f42347f4d5db7a26942587b3b4d> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xbeda000 - 0xbee1fff com.apple.proapps.mrcheckpro 1.4 (359) <986b9225b761ef5aa33b349717ef474b> /Applications/Final Cut Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0xbf3f000 - 0xc0b7ffb GLEngine ??? (???) <ad5267f50a418511daf9f5f237d7f852> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xc0e9000 - 0xc3b5ff1 com.apple.ATIRadeonX1000GLDriver 1.5.48 (5.4.8) <a24b8c9e1170ef467bfed436980bdd08> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xc40b000 - 0xc427fff GLRendererFloat ??? (???) <020c309b1f0a3109fbf8f76764e9ad69> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xd54c000 - 0xd579ffb com.apple.FinalCutPro.Plugins.AfterEffects 7.0 (7.0) <5c9c9e9fb87af0483e4145a290a521e9> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffects
    0xd580000 - 0xd584ffb com.apple.FinalCutPro.Plugins.AudioGroupsExport 7.0 (7.0) <31853eb9061606dd571c25ec47cab1d7> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioGroupsExport.bundle/Contents/MacOS/AudioGro upsExport
    0xd588000 - 0xd5a1ffb com.apple.FinalCutPro.Plugins.AudioMixer 7.0 (7.0) <f4557ef8f7a5a1201a4f1193b51bfa80> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0xd5ab000 - 0xd5c7ffb com.apple.audio.midi.CoreMIDI 1.6.1 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xd5dd000 - 0xd5e3fff com.apple.FinalCutPro.Plugins.Cache Manager 7.0 (7.0) <0d2b36ac42fb603a9140708245824589> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cache Manager.bundle/Contents/MacOS/Cache Manager
    0xd5e7000 - 0xd5f2fff com.apple.FinalCutPro.Plugins.CTHelper 7.0 (7.0) <0b2a26efbb2b42aced5f7adb590cc0d9> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/CTHelper.bundle/Contents/MacOS/CTHelper
    0xd700000 - 0xd721fff libexpat.1.dylib ??? (???) <e955fbf7296287c4d40694cf7dffd64f> /usr/lib/libexpat.1.dylib
    0xd728000 - 0xd7f6ffb com.apple.FinalCutPro.Plugins.Browser 7.0 (7.0) <dc7cc0aa0df7f3317c1410b6854d301b> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0xd814000 - 0xd82cfff com.apple.FinalCutPro.CinemaTools 5.0 (5.0) <c8a38b265f2c8ea3ac9f66b454418b4a> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cinema Tools.bundle/Contents/MacOS/Cinema Tools
    0xd838000 - 0xd85fffb com.apple.FinalCutPro.Plugins.EditTape 7.0 (7.0) <41203e7bbf2f4df98ca870fbab07728f> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0xd86d000 - 0xd8ccffd com.apple.FinalCutPro.Plugins.EDL Export 7.0 (7.0) <3cadb04d199fd22d8ee35082081c10ba> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EDL Export.bundle/Contents/MacOS/EDL Export
    0xd8e1000 - 0xd8e9ffb com.apple.FinalCutPro.Plugins.Effect Builder 7.0 (7.0) <c3adf611a925c666fe3fea86c314a58a> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Effect Builder.bundle/Contents/MacOS/Effect Builder
    0xd8ed000 - 0xd8fafff com.apple.FinalCutPro.Plugins.FCPExtPluginSupport 7.0 (7.0) <1a7ff286381399c163c989f26ea52771> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCPExtPluginSupport.bundle/Contents/MacOS/FCPExt PluginSupport
    0xd901000 - 0xd933fff com.apple.FinalCutPro.Plugins.FCS Engine 7.0 (7.0) <6c6f49b70583c84ffc3f0e616d1af130> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0xd93b000 - 0xd94cffb com.apple.FinalCutPro.Plugins.FilterCustomEd 7.0 (7.0) <2c8e6c331d6b6874d05f39131fb7f831> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterCusto mEd
    0xd951000 - 0xd966ffb com.apple.FinalCutPro.Plugins.FilterViewer 7.0 (7.0) <2d5b030c83ab066fcfa3975bd7996e6d> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterViewer
    0xd96b000 - 0xd96efff com.apple.FinalCutPro.Plugins.FinalTouchExport 7.0 (7.0) <783be9d544683916a408b14c514d8fa5> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FinalTouchExport.bundle/Contents/MacOS/FinalTouc hExport
    0xd973000 - 0xd993fff com.apple.FinalCutPro.Plugins.Flash 7.0 (7.0) <8997558d06a18a4b905567c0141b6d4c> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0xd99e000 - 0xd9abffb com.apple.FinalCutPro.Plugins.GenViewer 7.0 (7.0) <fb029dbec1d875f85a4b8a3f8ef5fcf9> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0xd9b0000 - 0xd9b5ffb com.apple.FinalCutPro.Plugins.LayerFileReader 7.0 (7.0) <ca6fa98278f6ac344a95e384d37d4d85> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerFileR eader
    0xd9b9000 - 0xda05ffb com.apple.FinalCutPro.Plugins.Media Manager 7.0 (7.0) <9bd2b1ae86c3e1493ed668a74068fd12> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0xda0f000 - 0xda23ffb com.apple.FinalCutPro.Plugins.MolokiniSupport 7.0 (7.0) <50b9367c5afa61f131627b6da6ec726d> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/MolokiniSu pport
    0xda32000 - 0xda44fff com.apple.FinalCutPro.Frameworks.MolokiniTranslation 1.0 (1.0) <b97968d83cb88f81549d41039b1ca6f5> /Applications/Final Cut Pro.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/MolokiniTr anslation
    0xda51000 - 0xda84fff com.apple.FinalCutPro.Plugins.Motion Viewer 7.0 (7.0) <5105d5d05cf659b42bc2e85684624e9b> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0xda95000 - 0xdab3fff com.apple.FinalCutPro.Plugins.Movie Analyzer 7.0 (7.0) <8c70cc7d97eb7bb6f1eaf93e33d01640> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0xdac1000 - 0xdad9fff com.apple.FinalCutPro.Plugins.Movie Viewer 7.0 (7.0) <0f77952ad039492cf44736421c8c16dc> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0xdae5000 - 0xdae9fff com.apple.FinalCutPro.Plugins.NuggetExport 7.0 (7.0) <1ad9d5f008e6e80482e36451513ae370> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExport
    0xdaed000 - 0xdb94fff com.apple.FinalCutPro.Plugins.OMF Audio Export 7.0 (7.0) <38fc8086a441ce8003fb3fa9951039ed> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/OMF Audio Export.bundle/Contents/MacOS/OMF Audio Export
    0xdba6000 - 0xdbaffff com.apple.FinalCutPro.Plugins.Perf Analyzer 7.0 (7.0) <1af03373c399490d5a8c99bf699a2c9a> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0xdbb4000 - 0xdbcbffb com.apple.FinalCutPro.Plugins.ProAppsIntegration 7.0 (7.0) <3da6b50898df8a3c1c059e362d86ea75> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration
    0xdbda000 - 0xdbe8ffb com.apple.FinalCutPro.Plugins.Pulldown Support 7.0 (7.0) <fa27e19bd82463ffb8aae55a5fd4b75c> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Pulldown Support.bundle/Contents/MacOS/Pulldown Support
    0xdbef000 - 0xdc2dffb com.apple.FinalCutPro.Plugins.QTM Reader 7.0 (7.0) <8bb075f03126012bd93782f394bf0d25> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0xdc3a000 - 0xdc43ffb com.apple.FinalCutPro.Plugins.QuickView 7.0 (7.0) <aa36d5474889e87e8efc334e47a1ce49> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QuickView.bundle/Contents/MacOS/QuickView
    0xdc47000 - 0xdc58ffb com.apple.FinalCutPro.Plugins.Relink Media 7.0 (7.0) <df91097575fea9655157352af7d1339f> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0xdc5e000 - 0xdcf2fff com.apple.FinalCutPro.Plugins.Timeline Editor 7.0 (7.0) <dfa47fc36cfad46b1b246d85b02a1f82> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0xdd00000 - 0xdd12fff com.apple.FinalCutPro.Plugins.Transcoder 7.0 (7.0) <d4baee531e60f586e7ad29486e84a289> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transcoder.bundle/Contents/MacOS/Transcoder
    0xdd1b000 - 0xdd2dfff com.apple.FinalCutPro.Plugins.Transition Viewer 7.0 (7.0) <da0dfe7c925e98e052a29a1dfa12df6e> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0xdd32000 - 0xdd48ffb com.apple.FinalCutPro.Plugins.Trimming 7.0 (7.0) <b3caddaa25c688c1a5e12565f3a9a535> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0xdd4d000 - 0xdd54fff com.apple.FinalCutPro.Plugins.VDUSupport 7.0 (7.0) <9b97e3bcfd20f3c2b2d489e05ff14f13> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VDUSupport.bundle/Contents/MacOS/VDUSupport
    0xdd59000 - 0xdd9affb com.apple.FinalCutPro.Plugins.Vector Accelerator 7.0 (7.0) <35e699b7d7496cb3a3177fe64d95bddd> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0xdd9f000 - 0xddb1ffb com.apple.FinalCutPro.Plugins.VideoLog 7.0 (7.0) <14d423f3f50c01a1020ffaf817266ba8> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0xddb5000 - 0xddcefff com.apple.FinalCutPro.Plugins.VoiceOver 7.0 (7.0) <2e47b1e5cd7899f55bb56bb48e6e9d56> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0xddd4000 - 0xde4effd com.apple.FinalCutPro.Plugins.XML Support 7.0 (7.0) <a6887a9919b3f27bf074cac3dfafd3d3> /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0xdf3a000 - 0xdf4eff3 com.apple.FCP Uncompressed 422.component 1.6 (1.6) <0bd250c3d641d5f10a52ae0295913399> /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xdfbe000 - 0xdfc1ffb com.apple.LiveType.component 2.1.4 (2.1.4) <7cd39a180f41e0a33aa85283d2960a81> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xdfc6000 - 0xe028fff com.apple.LiveType.framework 2.1.4 (2.1.4) <2f9be5cbcd81d21841eeb6b677606614> /Library/Application Support/ProApps/SharedA/Frameworks/LiveType.framework/Versions/A/LiveType
    0xe047000 - 0xe08eff3 com.apple.motion.component 1.0 (687) <084ddfae408b48c58b6a98f3ab12a66d> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0xe094000 - 0xe096ffb +Motion ??? (???) <9167acca95cdc7e2ffc1ddc5b4c31bb4> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xe09b000 - 0xe139ff7 com.apple.procore.framework 4.0 (712) <7c7e4298ad4f6e2b3afa5d54fce4f794> /Library/Application Support/ProApps/SharedA/Frameworks/ProCore.framework/Versions/A/ProCore
    0xe177000 - 0xe18dffb com.apple.fcp.DVOutputUnit 1.3 (1.3) <9bf79a33b066e48a51e1ac7d8b584001> /Applications/Final Cut Pro.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0xe33c000 - 0xe3c5fbf com.apple.AppleProResCodec 2.0 (224) <f243fd6cd0abef23b1c03879dbe63433> /Library/QuickTime/AppleProResCodec.component/Contents/MacOS/AppleProResCodec
    0xe3cc000 - 0xe4fdffb QuickTimeH264.altivec ??? (???) <bfb7e7a6b6b996de5a4cfcafb49fdf35> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0xe510000 - 0xe540fef com.apple.DVCPROHDCodec 1.5 (237) <085da018614927e20ddc696de8da87e2> /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0xe547000 - 0xe592fff com.apple.viceroy.codec 32.1 (32.1) /System/Library/Components/VCH263Codec.component/VCH263Codec
    0xe59b000 - 0xe636ff7 com.apple.AppleHDVCodec 1.5 (228) <ff8d7fef027554675b19d00d0750f91b> /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0xe643000 - 0xe664ffb com.apple.AppleVAFramework 4.1.16 (4.1.16) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0xe66a000 - 0xe685ff7 com.apple.AppleIntermediateCodec 1.3 (151) <9b9b7f37a81cc0b1f191ace9e04f5157> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xe68b000 - 0xe69efef com.apple.IMXCodec 1.4 (155) <c94656c54650501f04caee50453f07c9> /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xe6a3000 - 0xe6e3ff7 com.apple.applepixletvideo 1.2.18 (1.2d18) <2373b6000acc27dcbdae6f6dc45ea88a> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xe6e8000 - 0xe726ff7 com.apple.QuickTimeFireWireDV.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe8c7000 - 0xe9c8ff3 com.apple.soundtrackpro.integration 3.0 (3.0) <027ed7498eafedbe4957000e244791ed> /Library/Application Support/ProApps/Bundles/Soundtrack Pro Integration.bundle/Contents/MacOS/Soundtrack Pro Integration
    0xe9f9000 - 0xea27ffb com.apple.motion.MotionBundle 4.0.0 (687) <7d567c48d0176d8e5f0e15a0f1ae4c3b> /Library/Application Support/ProApps/Bundles/Motion.bundle/Contents/MacOS/Motion
    0xedc5000 - 0xedc9fff com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <ac58ebbd8e1179ff891b7a60b2ba33cc> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xeddd000 - 0xeddeffd com.apple.aoa.halplugin 2.5.8 (2.5.8f1) <0d6be2c83d2f582060ba48293d283cdd> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0xf000000 - 0xf027fe7 +com.digidesign.digidesign.DigiCoreAudioPlugIn 7.3 (7.3f117) /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0xf07d000 - 0xf0a6ffb com.apple.fcp.FCPAudioUnits 0.0.8 (1.1) <c30c24edb034df2787954de6c5dcd23b> /Applications/Final Cut Pro.app/Contents/Resources/FCPAudioUnits.bundle/Contents/MacOS/FCPAudioUnits
    0xf1ab000 - 0xf1cafff com.apple.OpenTransport 3.0 (3.0) /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0xf700000 - 0xf8dafff +ACBoxCombo.MusicDevice.component 1.0.0.006 (1.0.0) /Library/Audio/Plug-Ins/Components/ACBoxCombo.component/Contents/MacOS/ACBoxCom bo
    0x10000000 - 0x1005cfff com.apple.proapps.AudioMixEngine 2.0 (68) <2d46083f7fecef7dfbcb75d8f635cc86> /Applications/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
    0x1008b000 - 0x10270fef +PlexiCombo.MusicDevice.component 1.0.0.006 (1.0.0) /Library/Audio/Plug-Ins/Components/PlexiCombo.component/Contents/MacOS/PlexiCom bo
    0x10402000 - 0x105e5fef +TwangCombo.MusicDevice.component 1.0.0.009 (1.0.0) /Library/Audio/Plug-Ins/Components/TwangCombo.component/Contents/MacOS/TwangCom bo
    0x10772000 - 0x10a42ff7 +com.celemony.melodynebridge.au 3.1.0.9 (3.1.0.9) /Library/Audio/Plug-Ins/Components/MelodyneBridge.component/Contents/MacOS/Melo dyneBridge
    0x11000000 - 0x11029ffb com.apple.proapps.ControlSurfaceSupport 2.0 (68) <bbaea886815ee1ce10f2ec3ccf30ee26> /Applications/Final Cut Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0x11049000 - 0x117c2fe3 +com.borisfx.TextScrambler ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Text Scrambler.bundle/Contents/MacOS/Text Scrambler
    0x12215000 - 0x1298cfeb +com.borisfx.Title3D ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title 3D.bundle/Contents/MacOS/Title 3D
    0x133de000 - 0x13b53fff +com.borisfx.TitleCrawl ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0x145a4000 - 0x14d1dffb +com.borisfx.VectorShape ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Vector Shape.bundle/Contents/MacOS/Vector Shape
    0x70000000 - 0x700cdff3 com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <89a0055b0e7ea2db881b73c6e63bc774> /usr/lib/dyld
    0x9000d000 - 0x9000dffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9000e000 - 0x9000effb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9000f000 - 0x90010fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x90011000 - 0x90018ffb com.apple.print.framework.Print 218.0.3 (220.2) <021d2263007c538fd9e6b52e66a2623d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90019000 - 0x9005dfff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9005e000 - 0x90063ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x90064000 - 0x907dafff com.apple.AppKit 6.5.9 (949.54) <687f1742c249d7c9268e2eb57713cef6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x907db000 - 0x907e0fff com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x907e1000 - 0x90c0fffe libGLProgrammability.dylib ??? (???) <5d52750ec9e438b25d3a4db51361fa2b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90c10000 - 0x90c41fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90ce9000 - 0x90cf4fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90d11000 - 0x90d7bfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90d7c000 - 0x90da9fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90dea000 - 0x90df0fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <7f4de3ca234fdf3f06f25d47d7119e9b> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91814000 - 0x91817fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91818000 - 0x91b4aff7 com.apple.QuickTime 7.6.4 (1327.73) <2a47a570627b516ad5d7e2ee611c49fa> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91b4b000 - 0x91b4bff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b8a000 - 0x91ba8fff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91ba9000 - 0x91bbcffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <050180a659a3905ea38f2acddcdf7b40> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91bbd000 - 0x91c47fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91d2f000 - 0x91db7ffb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <6fc8a8cb43506b57b951da899a55d3b9> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91db8000 - 0x91e87ffb com.apple.QuickTimeMPEG4.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91e88000 - 0x91e98fff libsasl2.2.dylib ??? (???) <c0d4783f9b08dfd1bded5e0b5ffe37cb> /usr/lib/libsasl2.2.dylib
    0x91e99000 - 0x91e99ffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91fe3000 - 0x92002fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92003000 - 0x920e6fff libobjc.A.dylib ??? (???) <a1d4be2eed463c6799b6a1447fde72ba> /usr/lib/libobjc.A.dylib
    0x920e7000 - 0x92148fff com.apple.CoreText 2.0.4 (???) <ebcc2c7e9b0bc10016af530d82a11f03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92149000 - 0x921d1fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x923ad000 - 0x923d6ffb com.apple.shortcut 1.0.1 (1.0) <8da20d176ab4cf71cdf4f79b477fe0e7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92526000 - 0x9252efff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x9252f000 - 0x92532ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92533000 - 0x92565fff com.apple.bom 9.0.1 (136.1.1) <1399341d4cd4b8d4c560e683bc81d73c> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92566000 - 0x925b0fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x925b1000 - 0x926cdff3 com.apple.JavaScriptCore 5530.19 (5530.19) <4dfec2404ff2e05424de2c6ac3181161> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x926ce000 - 0x92703fff com.apple.AE 402.3 (402.3) <75725936d014fd3ca2553d18b784b99b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92a07000 - 0x92a64ffb com.apple.HIServices 1.7.1 (???) <a6c5c0bf2d68aeb453dbc493b7d0c8d9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92b26000 - 0x92b26ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92b27000 - 0x92b2dffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92b2e000 - 0x92b46ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92b47000 - 0x92b8efff com.apple.NavigationServices 3.5.2 (163) <453fd79dd63debad4908dcc726f9aa04> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92c32000 - 0x92e78ffb com.apple.Foundation 6.5.9 (677.26) <c30e4aea51bbae480d4550cd53abb441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92e79000 - 0x92e79fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92e7a000 - 0x92e94ffb com.apple.CoreVideo 1.6.0 (20.0) <2bc359d0334aa51fcf0534320dee89e9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92e95000 - 0x92f10fff com.apple.SearchKit 1.2.2 (1.2.2) <a9d0033a5e1e55b5e382e52fe578d734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92f2a000 - 0x93263ff7 com.apple.HIToolbox 1.5.6 (???) <a3b713a77c16da495c886463985f1e39> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93264000 - 0x932e9fff libsqlite3.0.dylib ??? (???) <daf55b073488086ef5b9a3781be53f14> /usr/lib/libsqlite3.0.dylib
    0x932ea000 - 0x93315ff7 libauto.dylib ??? (???) <a64d088b2d17e013b9ee5a08d3a20d33> /usr/lib/libauto.dylib
    0x9331b000 - 0x933ceffc com.apple.CFNetwork 438.14 (438.14) <6e213ab40eabfc276ca46a7c7cfad01a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93411000 - 0x93420fff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <305892aafaceb4e31915f0d759ef7e6d> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93421000 - 0x93436fff com.apple.IMUtils 4.0.8 (584) <798e21f99606c71cc5998dc473c8652b> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x93588000 - 0x941b3fef com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x941b4000 - 0x941c4ffb com.apple.agl 3.0.9 (AGL-3.0.9) <e751a9e491c3a9ef82c6405466106726> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94742000 - 0x94749fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94767000 - 0x94a90fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94a91000 - 0x94a9ffff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x94d1d000 - 0x94d73fff libGLU.dylib ??? (???) <3418ce7ca0863162847f553c15d08674> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94d74000 - 0x94d74fff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94d75000 - 0x94d80ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94dd0000 - 0x94e52fff com.apple.print.framework.PrintCore 5.5.4 (245.6) <3cde2550ec10348b7162d2b6cb0dfc67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94e53000 - 0x94ee8ff7 com.apple.framework.IOKit 1.5.2 (???) <ced0a498252f76a2d2ba9f2a0ae02160> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94ee9000 - 0x94ef2fff com.apple.DiskArbitration 2.2.1 (2.2.1) <682f5c45591e8c4a89c79e384e2c49af> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95054000 - 0x95096fff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95097000 - 0x950a4fff libbz2.1.0.dylib ??? (???) <03227e92407191ff8e754461e842201b> /usr/lib/libbz2.1.0.dylib
    0x951b9000 - 0x95325ff9 com.apple.AddressBook.framework 4.1.2 (702) <00009729166ef5c0294f864e1c4e54c9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95326000 - 0x953b5ffb com.apple.DesktopServices 1.4.8 (1.4.8) <efaf20fbcdf58c7da37ddbcf190bba75> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95430000 - 0x9543bffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x9543c000 - 0x95458fff com.apple.IMFramework 4.0.8 (584) <c700ba51b41e931a186ebff34b250f15> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x95459000 - 0x954a8fff com.apple.Metadata 10.5.8 (398.26) <1a261534027b9d1518327d1fabe1182b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x954a9000 - 0x954f8fff libGLImage.dylib ??? (???) <2e1f2a2625064149d209ec19e52d0384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9552b000 - 0x95553fff libxslt.1.dylib ??? (???) <bb985380f353bbc7ce694d56884ea156> /usr/lib/libxslt.1.dylib
    0x95554000 - 0x955edfc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x955ee000 - 0x9560affb com.apple.openscripting 1.2.8 (???) <01f86cdb8f7347d2f3f13066e954acb6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9560b000 - 0x9561efff com.apple.LangAnalysis 1.6.5 (1.6.5) <2a661ad6e432dd62dd831e234904061f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95708000 - 0x95709ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9570a000 - 0x958ccff4 com.apple.CoreAUC 3.08.0 (3.08.0) <9d8d7368e2d3b11318a3556c6d4902a1> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x95b4e000 - 0x95b6dfff libresolv.9.dylib ??? (???) <c5c72e1cf61cb844163156956a1d8407> /usr/lib/libresolv.9.dylib
    0x95bd6000 - 0x95be2ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95be3000 - 0x95f48ffe com.apple.QuartzCore 1.5.8 (1.5.8) <60e54cfb861dc5e66bb4f263a192d558> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95f49000 - 0x9601cfff com.apple.CoreServices.OSServices 228 (228) <8610aed4edbd5d21e887a68c32b5c216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9601d000 - 0x961beff7 com.apple.QuartzComposer 2.1 (106.13) <6dd1df71cb588b1b9ceb0c5bbf32e842> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96235000 - 0x96254fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96255000 - 0x962bcffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x962fb000 - 0x968b5fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x968b6000 - 0x969caffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x969cb000 - 0x96a82fff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96a83000 - 0x96a86ff3 com.apple.QuickTimeH264.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x96a87000 - 0x96bacff3 com.apple.CoreFoundation 6.5.7 (476.19) <dee0f0024f3bf976cfa0a0816e8aa338> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96cfa000 - 0x96daafff edu.mit.Kerberos 6.0.13 (6.0.13) <2ed20a450576465ee4f9c317b8ce8c44> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96dab000 - 0x96f4bff3 libSystem.B.dylib ??? (???) <900415cd2c829b2de9a6cdcdaa6307e3> /usr/lib/libSystem.B.dylib
    0x96f4c000 - 0x97042ffc libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x97043000 - 0x9705affb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9705b000 - 0x97084fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x97085000 - 0x9714dffb com.apple.CoreData 100.2 (186.2) <be912ff41bd4506438a71d5665e89069> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9714e000 - 0x97187fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <21dee7ffd93306032f911b5ef3fdbab3> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97188000 - 0x971eaffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x971eb000 - 0x97310ffb com.apple.imageKit 1.0.2 (1.0) <50dfcbe41b384bd71761c761c3fbfd5e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x973e1000 - 0x973efff3 com.apple.opengl 1.5.10 (1.5.10) <54bae289e544387ce7997a4a05e70aa9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    For "Could not open key/write value" errors when reinstalling try b noir's user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\
    [LongStringOfLettersAndNumbers]" error messages when installing iTunes for Windows.
    The technique can be applied to the branch of the registry mentioned in the error message.
    If you still have issues see Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Please help with BDC error

    Hello guys,
    I recently modified a BDC program and I configured it's mode to be 'E' so when errors are present,pop up windows are shown. Unfortunately I can't seem to find the error. I will post below the code. What I did with the code was to clear the value of anep-anbtr to no value. help would really be appreciated. Thanks guys!
    FORM GENERATE_BDC_DATA_ABAA.
      DATA: I_ANBTR LIKE ANEP-ANBTR.
      DATA: C_ANBTR(16), C_ANBTR2(16), C_DMBTR(16).
      PERFORM BDC_DYNPRO USING 'SAPMA01B' '0100'.
      PERFORM BDC_FIELD  USING:
          'BDC_OKCODE' '/00',
          'ANBZ-BUKRS' 'GLOB',
          'ANBZ-ANLN1' IT_REC-ANLN1,
          'ANBZ-ANLN2' IT_REC-ANLN2,
          'ANEK-BLDAT' IT_REC-BLDAT,
          'ANEK-BUDAT' IT_REC-BUDAT,
          'ANBZ-PERID' IT_REC-PERID,
          'ANBZ-BWASL' IT_REC-BWASL.
      PERFORM BDC_DYNPRO USING 'SAPMA01B' '0110'.
      PERFORM BDC_FIELD  USING 'BDC_OKCODE' '/00'.
      PERFORM BDC_FIELD  USING 'ANBZ-DMBTR'  IT_REC-DMBTR.
      PERFORM BDC_FIELD  USING: 'ANBZ-BZDAT' IT_REC-BUDAT,
                                'ANEK-SGTXT' IT_REC-SGTXT.
      "I_ANBTR = '0'.       "IT_REC-DMBTR * -1.
      perform bdc_dynpro      using 'SAPMA01B' '0285'.          " '0600'.
    *AVH
      clear anep-anbtr.
      perform bdc_field       using 'BDC_CURSOR'
                                    'ANEP-ANBTR'.
      perform bdc_field       using 'BDC_OKCODE'
                                    '=AUSF'.
    *AVH
      clear anep-anbtr.
      PERFORM BDC_DYNPRO USING 'SAPMA01B' '0285'.               " '0600'.
    *AVH
      clear anep-anbtr.
      PERFORM BDC_FIELD  USING 'BDC_CURSOR' 'ANEP-ANBTR'.
      PERFORM BDC_FIELD  USING 'BDC_OKCODE' '=AUSF'.
      PERFORM BDC_FIELD  USING 'ANEP-ANBTR' '0'.
    *AVH
      clear anep-anbtr.
      PERFORM BDC_DYNPRO USING 'SAPMA01B' '0110'.
      PERFORM BDC_FIELD  USING:
          'BDC_OKCODE' '=UPDA',
          'ANBZ-DMBTR' IT_REC-DMBTR,
          'ANBZ-BZDAT' IT_REC-BUDAT,
          'ANEK-SGTXT' IT_REC-SGTXT.
      PERFORM BDC_DYNPRO USING 'SAPMA01B' '0285'.               " '0600'.
    *AVH
      clear anep-anbtr.
      PERFORM BDC_FIELD  USING:
          'BDC_CURSOR' 'ANEP-ANBTR',
          'BDC_OKCODE' '=AUSF'.
      PERFORM BDC_FIELD  USING 'ANEP-ANBTR' '0'.
    *AVH
      clear anep-anbtr.
      PERFORM BDC_DYNPRO USING 'SAPMA01B' '0285'.               " '0600'.
    *AVH
      clear anep-anbtr.
      PERFORM BDC_FIELD  USING:
          'BDC_CURSOR' 'ANEP-ANBTR',
          'BDC_OKCODE' '=AUSF'.
      PERFORM BDC_FIELD  USING 'ANEP-ANBTR' '0'.
    *AVH
      clear anep-anbtr.
      PERFORM BDC_DYNPRO USING 'SAPMA01B' '0110'.
      PERFORM BDC_FIELD  USING:
          'BDC_OKCODE' '=UPDA'.
    ENDFORM.                    " GENERATE_BDC_DATA_ABAA

    I just know that it has an error because the BDC 'mode' is 'E'. And yes, the program used call transaction. So when I run the program and the transaction that is being called shows up, the ok-code pop up window shows up. If you review my code, what i'm trying to do is to change the value of anep-anbtr in screen 285. Thanks a lot guys...

  • Please Help with this error

    I developed a game with javaFX and deployed it on Tomcat as Applet. It runs well on my desktop. However, after deploying it to Tomcat on Linux box, I got this error when running the app.
    sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: java.io.IOException: Response is unreliable: its validity interval is out-of-date
         at sun.security.validator.PKIXValidator.doValidate(Unknown Source)
         at sun.security.validator.PKIXValidator.doValidate(Unknown Source)
         at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)
         at sun.security.validator.Validator.validate(Unknown Source)
         at sun.security.validator.Validator.validate(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at sun.plugin.security.PluginClassLoader.getPermissions(Unknown Source)
         at java.security.SecureClassLoader.getProtectionDomain(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.access$000(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.security.cert.CertPathValidatorException: java.io.IOException: Response is unreliable: its validity interval is out-of-date
         at sun.security.provider.certpath.PKIXMasterCertPathValidator.validate(Unknown Source)
         at sun.security.provider.certpath.PKIXCertPathValidator.doValidate(Unknown Source)
         at sun.security.provider.certpath.PKIXCertPathValidator.engineValidate(Unknown Source)
         at java.security.cert.CertPathValidator.validate(Unknown Source)
         ... 26 more
    Caused by: java.io.IOException: Response is unreliable: its validity interval is out-of-date
         at sun.security.provider.certpath.OCSPResponse$SingleResponse.<init>(Unknown Source)
         at sun.security.provider.certpath.OCSPResponse$SingleResponse.<init>(Unknown Source)
         at sun.security.provider.certpath.OCSPResponse.<init>(Unknown Source)
         at sun.security.provider.certpath.OCSPChecker.check(Unknown Source)
         ... 30 more

    The procedure is invalid and requires compilation. This can occur automatically when an object that the procedure is dependant upon is changed, there are a number of conditions that control this, which I'm not going into here, documentation is available on technet. Alternatively, when it was last compiled there was an error that was never fixed...
    Anyway, run the following command
    alter procedure flash_report compile;
    Alternatively you can use DBMS_UTILITY.compile_schema to compile the entire REPORT schema.
    If you get an error, then it's time to debug
    Use show errors or select * from user_errors to identify where the error is.
    Fix the error, and recompile.
    Simon

Maybe you are looking for

  • Output/Input Scale Factor

    I have a high resolution stage used for a scanning application.  I'm using a pci-7344 to control the stage.  The system is marginally stable with kp=1 and various values set for ki and kd.  I have found several posts with the same issue: http://forum

  • Cleaning up duplicates in iTunes library

    I just moved my iTunes folder 'offshore' to an external HD to which my MB Pro connects wifi via an Airport Extreme. It's working fine however when it copied over it made a bunch of duplicates. My question is this; is there an automated way to rid my

  • OpenSSH updates

    Is Oracle going to update the OpenSSH version in Solaris 10? The current version of OpenSSH does not allow your terminal to go away if you have background jobs running. You can easily test this by using SSH to connect to a Solaris 10 host and then at

  • Any Bapi or function Module to update standard table

    Can u Plz let me know , is there any bapi or function module to update few fields of a standard table using an internable.

  • Changing default hardware passwords

    When my Fios was setup I tried to access the page to change the factory password on my Westell A90.  When I tried to type in the password everytime I entered 1 number it showed 3 being typed. I didn't have time at that moment to dive into it and of c