Trigger will not compile

I wrote the trigger which compiles with errors. The errors are:
Error(9,5): PL/SQL: SQL Statement ignored
Error(9,12): PL/SQL: ORA-00903: invalid table name
Error(14,5): PL/SQL: SQL Statement ignored
Error(14,12): PL/SQL: ORA-00903: invalid table name
and so on for the other lines that reference a table. I tried prefixing the table with the schema name and removing the alias but it will not compile either way. Is there something obvious that I don't see?
Create Or Replace Trigger ERR_EVACUATION_TAB_BU
Before Update On Err_Evacuation_Tab
For Each Row
Begin
If V('APP_USER') Is Null Then
:new.last_update_by := USER;
ELSE
:new.last_update_by := V('APP_USER');
END IF;
:New.Last_Update_Date := Sysdate;
If :New.Evacuated_Ind = 'Y' And :New.Entire_Evac_Ind = 'Y' And :New.Remaining_In_Apt = 0 Then
Update Table Err_Impaired_Tab Eit
Set Eit.Evacuated_Ind = 'Y'
Where Eit.Location_Code = :Old.Location_Code;
-- And Eit.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
Update Table Err_Lifesustain_Tab Ert
Set Ert.Evacuated_Ind = 'Y'
Where Ert.Location_Code = :Old.Location_Code;
-- And Ert.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
else
Update Table Err_Impaired_Tab Eit
Set Eit.Evacuated_Ind = 'N'
Where Eit.Location_Code = :Old.Location_Code;
-- And Eit.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
Update Table Err_Lifesustain_Tab Ert
Set Ert.Evacuated_Ind = 'Y'
Where Ert.Location_Code = :Old.Location_Code;
-- And Ert.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
End If;
END;

--untested
CREATE OR REPLACE TRIGGER err_evacuation_tab_bu
   BEFORE UPDATE
   ON err_evacuation_tab
   FOR EACH ROW
BEGIN
   IF v ('APP_USER') IS NULL
   THEN
      :NEW.last_update_by := USER;
   ELSE
      :NEW.last_update_by := v ('APP_USER');
   END IF;
   :NEW.last_update_date := SYSDATE;
   IF     :NEW.evacuated_ind = 'Y'
      AND :NEW.entire_evac_ind = 'Y'
      AND :NEW.remaining_in_apt = 0
   THEN
      UPDATE err_impaired_tab eit
         SET eit.evacuated_ind = 'Y'
       WHERE eit.location_code = :OLD.location_code;
-- And Eit.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
      UPDATE err_lifesustain_tab ert
         SET ert.evacuated_ind = 'Y'
       WHERE ert.location_code = :OLD.location_code;
-- And Ert.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
   ELSE
      UPDATE err_impaired_tab eit
         SET eit.evacuated_ind = 'N'
       WHERE eit.location_code = :OLD.location_code;
-- And Eit.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
      UPDATE err_lifesustain_tab ert
         SET ert.evacuated_ind = 'Y'
       WHERE ert.location_code = :OLD.location_code;
-- And Ert.Rent_Id_Tenant_Number = :Old.Rent_Id_Tenant_Number;
   END IF;
END;Edited by: most wanted!!!! on Apr 20, 2012 2:20 AM

Similar Messages

  • Problem with shuffle() code, will not compile

    Hi,
    Below is some code designed to shuffle a set of integers in the file editET.txt. Basically:
    5
    2
    4 say:
    just shuffle these randomly around, however, the code will not compile, any advice or solutions would be great
    import java.io.*;
    import java.util.*;
    public class Shuffle3 {
    public static void main (String [] args) {
    if (args.length<2){
    System.out.println("Usage: java Shuffle3 <input file> <output file>");
    System.exit(-1);
    ShuffleStringList sl = new ShuffleStringList(args[0]);
    sl.shuffle();
    sl.save(args[1]);
    class ShuffleStringList extends StringList {
    public ShuffleStringList(String "editET.txt") {
         super(fileName);
    public void shuffle() {
    Collections.shuffle(this);
    public void save (String "Shuffledok"){
         PrintWriter out = null;
         try {
         out = new PrintWriter(new FileOutputStream("Shuffledok"), true);
    for (int i=0; i < size(); i++){
              out.println((String)get(i));
    catch(IOException e) {
    e.printStackTrace();
    finally {
         if(out !=null) {out.close();}
    class StringList extends ArrayList{
    public StringList(){
         super();
    public StringList(String "editET.txt") {
         this();
    String line = null;
    BufferedReader in = null;
         try {
         in = new BufferedReader(new FileReader("editET.txt"));
         while((line = in.readLine()) !=null) {
              add(line);
    catch(IOException e){
         e.printStackTrace();
    public void save (String "Shuffledok") {
    FileWriter out = null;
    try {
         out = new FileWriter("Shuffledok");
         for(int i =0; i < size(); i++){
         out.write((String)get(i));
    catch(IOException e){
         e.printStackTrace();
    finally {
         try{out.close();} catch (IOException e) {e.printStackTrace();}
    public void shuffle() {
    Collections.shuffle(this);

    import java.io.*;
    import java.util.*;
    public class Shuffle3 {
    public static void main (String [] args) {
    ShuffleStringList sl = new ShuffleStringList("editET.txt");
    sl.shuffle();
    sl.save("Shuffledok");
    class ShuffleStringList extends StringList {
    public ShuffleStringList(String fileName) {
    super(fileName);
    public void shuffle() {
    Collections.shuffle(this);
    public void save (String target){
    PrintWriter out = null;
    try {
    out = new PrintWriter(new FileOutputStream(target), true);
    for (int i=0; i < size(); i++){
    out.println((String)get(i));
    catch(IOException e) {
    e.printStackTrace();
    finally {
    if(out !=null) {out.close();}
    class StringList extends ArrayList{
    public StringList(){
    super();
    public StringList(String fileName) {
    this();
    String line = null;
    BufferedReader in = null;
    try {
    in = new BufferedReader(new FileReader(fileName));
    while((line = in.readLine()) !=null) {
    add(line);
    catch(IOException e){
    e.printStackTrace();
    public void save (String target) {
    FileWriter out = null;
    try {
    out = new FileWriter(target);
    for(int i =0; i < size(); i++){
    out.write((String)get(i));
    catch(IOException e){
    e.printStackTrace();
    finally {
    try{out.close();} catch (IOException e) {e.printStackTrace();}
    public void shuffle() {
    Collections.shuffle(this);
    }

  • PL/SQL spatial query will not compile.

    I have a PL/SQL spatial query that will not compile, but the equivalent SQLPlus query works fine. I.e. (convert decimal degrees to degrees,minutes,seconds)
    Any thoughts much appreciated....
    THIS WORKS in SQLPlus
    select
    decode(rownum,1,decode(sign(b.column_value),-1,'W','E'),2,decode(sign(b.column_v
    alue),-1,'S','N'))&#0124; &#0124;
    to_char(abs(trunc(b.column_value,0)),'999')
    &#0124; &#0124;to_char(abs(trunc((b.column_value - trunc(b.column_value,0)) * 60,0)),'99')
    &#0124; &#0124;to_char(abs(
    (((b.column_value - trunc(b.column_value,0)) * 60) - trunc((b.column_value - tru
    nc(b.column_value,0)) * 60,0)) * 60
    ),'99.99')
    from route_location a, table(a.line.sdo_ordinates) b
    where a.route_adms_id = 13820370
    and record_seq_num = 26
    and rownum < 3
    BUT THIS DOES NOT
    ADMS>create or replace procedure PKG_route_loc_latlong_ins
    2 (iADMS_ID in INTEGER, iRSN in INTEGER,
    3 vcLAT out VARCHAR2, vcLONG out VARCHAR2) as
    4 cursor c1 is
    5 select decode(rownum,1,decode(sign(b.column_value),-1,'W','E'),
    6 2,decode(sign(b.column_value),-1,'S','N'))
    7 &#0124; &#0124;to_char(abs(trunc(b.column_value,0)),'999')
    8 &#0124; &#0124;to_char(abs(trunc((b.column_value - trunc(b.column_value,0)) * 60,0)),
    '99')
    9 &#0124; &#0124;to_char(abs(
    10 (((b.column_value - trunc(b.column_value,0)) * 60) -
    11 trunc((b.column_value - trunc(b.column_value,0)) * 60,0)) * 60
    12 ),'99.99')
    13 from route_location a, table(a.line.sdo_ordinates) b
    14 where a.route_adms_id = iADMS_ID
    15 and a.record_seq_num = iRSN
    16 and rownum < 3;
    17 BEGIN
    18 open c1;
    19 fetch c1 into vcLONG;
    20 fetch c1 into vcLAT;
    21
    22 EXCEPTION
    23 when others then
    24 vcLAT := 'ERROR';
    25 RAISE_APPLICATION_ERROR(-20002,
    26 'XXXXXXXXXXXXXX ');
    27
    28 END pkg_route_loc_latlong_ins;
    29 /
    Warning: Procedure created with compilation errors.
    ADMS>
    ADMS>show errors
    Errors for PROCEDURE PKG_ROUTE_LOC_LATLONG_INS:
    LINE/COL ERROR
    5/5 PL/SQL: SQL Statement ignored
    5/12 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    5/12 PLS-00320: the declaration of the type of this expression is
    incomplete or malformed
    13/34 PLS-00201: identifier 'A.LINE' must be declared
    19/5 PL/SQL: SQL Statement ignored
    20/5 PL/SQL: SQL Statement ignored
    null

    try a
    FOR UPDATE OF ID NOWAIT;where ID is the name of a column in the table.

  • Xcode will not compile

    I migrated from Windows C++(Dev C++) to Mac (Xcode) and Xcode will not compile, the command for it is greyed out (not selectable). Even Hello World Wouldn't compile. What am I doing wrong here?
    (this is an empty C++ file that's been opened)

    What kind of application do I want to open for basic C++. I've tried numerous now and I always get at least one error of conflicting commands.

  • Some jsps will not compile FC5+Tomcat

    Hello,
    I cannot compile SOME jsp pages for some reason.
    I have something like this:
    http://www.mydomain.net:8080/WEB/index.jsp - this comiles
    http://www.mydomain.net:8080/WEB/BLAH/BLAH/index.jsp - will not compile where BLAH is a bunch of different folders.
    I have it all working on Win XP. Now I am trying to make it work on FC5.
    I took the page that can compile and moved it to BLAH/BLAH folder and it does not compile now!
    OS: Fedora Core 5 (if it matters)
    What is going on? Any ideas?
    Thanks.

    sure, here it is
    Thanks for help.
    org.apache.jasper.JasperException: Unable to compile class for JSP
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:97)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:342)
         org.apache.jasper.compiler.AntCompiler.generateClass(AntCompiler.java:248)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:288)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:296)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    Compile failed; see the compiler error output for details.
         org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:944)
         org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:764)
         org.apache.jasper.compiler.AntCompiler.generateClass(AntCompiler.java:216)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:288)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:267)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:255)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:556)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:296)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:245)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

  • PHP 4 will not compile in PHP5 on OSX Server 10.5.5  Mac Mini

    I have been using a commercial server which does not give access to php.ini but bought a Mac Mini and OSX Server 10.5.5. My old PHP 4 program will not compile in PHP5. It gives weird compilation errors to do with curly brackets but as soon as I alter one bracket it jumps to another similar error somewhere else in the program. I think it may require tweeking the php.ini or httpd.conf files which I have opened using Terminal but I don't know what might need to be changed. I expected this to be a turn-key system ready to go. I knew there would be changed required to migrate from PHP4 to PHP 5 and read the official PHP site, searched many forums, and google searches, called AppleCare but none knows what to do. I used an editor and there are 276 open brackets and 276 close brackets. If you have made the same migration without difficulty please let me know. Maybe I just need to start again!

    evan-e-sent wrote:
    Well, I don't think the code is too messy except for the globals I use.
    It is. The point of this function is beyond elusive given the number of side effects it seems to induce. Everything in it could be reduced to one or two lines, but odds are good it shouldn't even exist in the first place.
    I just use the same set of globals for all functions so that these variables are readily available everywhere in the program without having to think about it.
    That's a very common beginner tactic which is unfortunately very prevalent in publicly distributed PHP projects due to the fact that many of them are written by beginners. I'd highly recommend you start thinking about it if you want to get anywhere.
    They are all constants once they have been set initially.
    http://us2.php.net/manual/en/function.define.php
    Like $query is set only once when the program picks it up from a $GET statement.
    And I'll bet you're not sanitizing that query string at all before passing it along to mySQL.
    This leaves two questions. Do you think I should treat every function as a separate file and have the mainline bring them in as "included code". There are 126 functions.
    Refactoring should improve the organization, performance and readability of your code according to some logical criteria. Simply putting each function in its own file accomplishes none of these things.
    (I have also written a 6000 line program as a MySQL data processor to make it easier for my wife to manipulate the data in dozens of tables without having to keep track of all the unique keys. So this will be quite a big job.) If so I would appreciate a quick tip about how to do that in PHP. Other pre-processing I do with Applescript.
    Why didn't you just install phpMyAdmin?
    Second, goes back to my initial question. This parsing problem only appeared after switching to PHP 5.2.2 with MySQL. Could this weird behavior be caused by some setting in the PHP.ini or httpd.conf or my.conf files and if so what would I change. The fact that this has not been suggested on this forum makes me think it is not a config. problem. That in itself is useful information.
    Probably not, but who knows what other nightmares might be lurking in this file. Did you use short tags like <? ?> or something?

  • LV 8.6 will Not Compile in LV 2010 - Labview 10.0 Development System Has Encountered a Problem and Needs to Close

    I submitted this support request to NI on 8/12/2010.
    When I compile my LV 8.6 app in LV2010 I get this error:
    "LabVIEW 10.0 Development System has encountered a problem and needs to close.  We are sorry for the inconvenience."
    I was told to do a "Mass Compile" of my LV 8.6 app in LV2010...this failed too.
    I was then told to go to each and every vi and "Mass Compile" individually...after about the 50th vi this got old quickly...and it still didn't compile.  I then sent NI tech support "my code".  The good news is my LV 8.6 app didn't compile with LV2010 @ NI.
    My LV 8.6 app compiles and runs great in LV 8.6.  I don't want to be left behind with the newer upgrades and I want to move to LV2010.  I have lots of LV8.6 code to maintain and I really don't have the time to debug all of my apps.
    I was told this will be looked @ in LV2010 SP1.
    One note...back up your LV8.6 data before you move to LV2010.  Once your LV8.6 code is compiled in LV2010 you will not be able to go back to LV8.6.
    I restored all of my LV8.6 code and I'm back working with LV8.6.
    It's a tough call, do I stay in LV8.6 and get left behind?
    Do I bite the bullet and try to debug this mess in LV2010?
    I was told the compiler is completely different in LV2010.  That's great, but one reason I have NI Maintenance Agreement is to keep updated with the latest software.  I can't afford to re-compile LV code every few years.  Like most people, maintaining my Apps with customer's revisions, and modifications is enough work.  I don't want more work!
    I was told LV2010 SP1 would likely appear in May or June of 2011.  I'd hate to break out my old Turbo Pascal apps again...but hey...they still work!  My NI maintenance agreement is due this month too, I guess I'll pay NI one more year, and see if they come up with a solution.  But if NI doesn't fix this LV8.6 compile in LV2010 problem...I don't see any value staying current with LV software.
    I found another Bug with LV2010...you are going to love this one!
    There is a new "LV Update Service".  Perfect!  I like updating my LV software when new patches are available.  When I click "update" the update spins over and over "Checking for New Version".  I have let it run ALL day with no results...just sits and spins over and over.
    OK, I know give NI a break!  Yes, LV2010 has a new compiler...and Yes, I will renew my NI maintenance agreement.  I just want NI to know failing to compile just one LV8.6 app in LV2010 is not a good idea for customer relations.
    Thanks,
    Doug

    For your update service problem
    Unable to Update Current Version of NI Update Service
    Why am I Unable to Update My Version of NI Update Service in Windows Vista or Windows 7?

  • NiseCfg library link errors - will not compile working code on replicate system

    i have working software trying to install on a replicate system.    it does not compile on the replicate system.   the problem is nise, niseCfg link errors  for example:  
    Undefined symbol:  '_niseCfg_GetVirtualDeviceProperty@20' referenced in "TestSystem_Config.c"
    originally it complained it couldn't find the nise.h and niseCfg.h header files.   i copied the header and some other object and fp files (yeah, yeah, i know :-/ from my working system to the replicate system (in the NI/Shared/CVI directory path).
    it then found the header file and prototypes but now the undefined link errors.   i have nise.dll in my WIndows System directory.
    Please help.   what do i do to fix this?   thanks!

    The CVI IDE needs to know someway where to find the resources your program is using and this can be done in several ways. One of them is loading the instruments in the Instrument menu: this is valid if your instrument is used in only one project of yours or a few one. Another method, which is useful for insrtument you use intensively in all your projects, is to add them to the Library menu (option Customize...): this will make your libraries and FPs available for every project you are working on without need to explicitly add the instruments to the Instrument menu.
    If you are using an instrument and you don't see it in the project it must be loaded in one of the ways I described before: you can check in the original system which method was used.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • LabVIEW 2013 Fpga will not compile tutorial solutions

    Y'all
    I am working to get the CRIO evaluation software to compile the tutorial solutions.  so far it will not and complains about missing XILINX_EDK (warning.)  Attached is the xilinx log.     (Do I need to reinstall? or what)
    Thanks for help! 
    Sincerely,
    Paul
    Attachments:
    XilinxLog.txt ‏130 KB

    Hi Paul,
    What version of LabVIEW (2013/2013 SP1), LabVIEW FPGA and Xilinx Compile Tools do you have (or are you compiling on an external server)?
    Which example specifically are you trying to compile? You mentioned tutorials, but I'm not sure exactly what example you are referring to.
    Thanks!
    Xavier
    Applications Engineering Specialist
    National Instruments

  • Will not compile class

    Hey i wanted a second opinion on my code i wrote, just for a rough draft to see if something like it will work. problem is
    it wont compile the main class is uploader the sub class is loadercontent. the sub class will compile. alright but im not sure why the main method wont compile i keep getting this error message
    "cannot find symbol class loadercontent"
    <error message>
    --------------------Configuration: <Default>--------------------
    C:\uploader.java:9: cannot find symbol
    symbol : class loadercontent
    location: class uploader
    loadercontent content = new loadercontent();
    ^
    C:\uploader.java:9: cannot find symbol
    symbol : class loadercontent
    location: class uploader
    loadercontent content = new loadercontent();
    ^
    2 errors
    Process completed.
    </error message> heres the code of the two classes
    <main method>
    import java.awt.*;
    import java.util.*;
    import java.io.*;
    import java.lang.*;
    public class uploader {
         public static void main(String args) throws InterruptedException{
              loadercontent content = new loadercontent();
              content.displayupload();
              content.initializing();
    }</main method>
    heres the subclass
    <sub class>
    import java.awt.*;
    import java.util.*;
    import java.io.*;
    import java.lang.*;
    public class loadercontent {
         public void displayupload()  throws InterruptedException{
              System.out.println("loading C:\\WINDOWS...");
              Thread.sleep(1000);
              System.out.println("loading C:\\WINDOWS\\system32...");
              Thread.sleep(1000);
              System.out.println("loading C:\\WINDOWS\\system32\\user32.dll...");
              Thread.sleep(1000);
              System.out.println("loading C:\\WINDOWS\\system32\\appmgr.dll...");
              Thread.sleep(1000);
              System.out.println("loading C:\\WINDOWS\\system32\\iphlpapi.dll...");
              Thread.sleep(1000);
              System.out.println("accsessing C:\\WINDOWS...");
              Thread.sleep(15000);
              System.out.println("accsessing C:\\WINDOWS\\system32...");
              Thread.sleep(5000);
              System.out.println("accsessing C:\\WINDOWS\\system32\\user32.dll...");
              Thread.sleep(2500);
              System.out.println("accsessing C:\\WINDOWS\\system32\\appmgr.dll...");
              Thread.sleep(3450);
              System.out.println("accsessing C:\\WINDOWS\\system32\\iphlpapi.dll...");
              Thread.sleep(7890);
              System.out.println("Checking privliages...");
              Thread.sleep(2345);
              System.out.println("Scanning for malicous software this may take afew minutes...");
              Thread.sleep(260000);
              System.out.println("System clean.");
              System.out.println("Adpating uploader for preformance...");
              Thread.sleep(5000);
              System.out.println("Checking required drivers, this may take afew minutes...");
              Thread.sleep(200000);
              System.out.println("Begining initialization...");
              Thread.sleep(2500);
         public void initializing() throws InterruptedException{
              try{
          String osType = System.getProperty("os.arch");
              System.out.println("Initializing files and dirs...");
              Thread.sleep(60000);
              System.out.println("Creating back-ups for " + osType + "...");
              System.out.println("Back-ups created.");
              Thread.sleep(123456);
              System.out.println("Creating Restore point for " + osType + "...");
              System.out.println("Restore point created.");
              Thread.sleep(200000);
              System.out.println("Gathering required suer data...");
              Thread.sleep(5000);
             }catch (Exception e){
               System.out.println("Exception caught =" + e.getMessage());
         </sub class>
    please be gentle with your anwsers im still kinda new to java, but know enough to understand most things.
    thanks!

    That's not a subclass, it doesn't extend anything (except Object of course). However the problem is either that you didn't compile it, or if you did, then the compiled class (which is a file named loadercontent.class) isn't in the classpath when you compile the "main" class.
    Oh, and by the way, there's a couple of those messages which your code displays on the console which don't have spelling errors.

  • Robohelp 7 Webhelp will not compile

    I have Windows XP Pro SP3 with latest patches. I started with RoboHelp 7 fully patched. MS Office 2007 fully patched.
    I have full security rights to my login.
    I get errors whether generating webhelp via the GUI or the commandline. Until I tried to generate finaly changes to the first draft of this project, I could generate without error.
    When generating webhelp or webhelp pro I get the error:
    Preparing to create WebHelp Pro...
    Finished preparing in 1 sec(s)
    Initializing compiler...
    Generating WebHelp Pro 5.50 (7.01.001)...
    Error: Can not register active script for language:javascript)
    Template Error: can not resolve macro: RegisterResolvers
    Fatal Error: Cannot run macro: RegisterResolvers in compilation script.
    I get this for ANY project, even the samples.
    I found a couple of topics that gave some advice, but that did not help.
    I have tried uninstalling and reinstalling and renaming various files, as suggested by these topics, all to no avail.
    The link with information that I have followed are:
    http://forums.adobe.com/message/844712#844712
    The one thing I did not try mentioned in the above link, was to use the RoboScriptReg.exe mentioned, since a search for it did not reveal where it can be obtained.
    I changed the Word macro security settings from "Disable all macros with notication" to "Enable all macros (not recommended...".I am not sure why this would matter, since I am not using Word to enter the data, but I tried it and still no go.
    There has got to be some solution other than format and reinstall; or shell our money for the latest version. I am surprised that there does not appear to be a way to figure out what is wrong just by searching on the error output.
    Is there a commandline option that I overlooked, or a hidden option to get RoboHelp to give an error to better pinpoint the problem?
    I will greatly appreciate all help in resolving this issue.

    I have a number of application error logs from yesterday. Here’s the first one.
    Event Type:        Error
    Event Source:    Application Error
    Event Category:                None
    Event ID:              1000
    Date:                     4/11/2012
    Time:                     2:50:24 PM
    User:                     N/A
    Computer:          B5D8ZP1-L-GA001
    Description:
    Faulting application robohtml.exe, version 9.0.2.271, faulting module htmsinglesourcewebhelp.dll, version 9.0.0.228, fault address 0x000482e0.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74   Applicat
    0008: 69 6f 6e 20 46 61 69 6c   ion Fail
    0010: 75 72 65 20 20 72 6f 62   ure  rob
    0018: 6f 68 74 6d 6c 2e 65 78   ohtml.ex
    0020: 65 20 39 2e 30 2e 32 2e   e 9.0.2.
    0028: 32 37 31 20 69 6e 20 68   271 in h
    0030: 74 6d 73 69 6e 67 6c 65   tmsingle
    0038: 73 6f 75 72 63 65 77 65   sourcewe
    0040: 62 68 65 6c 70 2e 64 6c   bhelp.dl
    0048: 6c 20 39 2e 30 2e 30 2e   l 9.0.0.
    0050: 32 32 38 20 61 74 20 6f   228 at o
    0058: 66 66 73 65 74 20 30 30   ffset 00
    0060: 30 34 38 32 65 30 0d 0a   0482e0..

  • Simple ArrayList declaration will NOT compile in Eclipse

    For some reason I can't get the following line of code to compile in eclipse, even though the exact same code compiles in NetBeans.
    I'm trying to work on my program at school and they don't have Netbeans installed they only have Eclipse so I have to work with it instead.
    Anyway, here's the line, it's a simple arraylist declaration:
    ArrayList<Integer> list = new ArrayList<Integer>();I''ve got java.util.ArrayList imported.
    There error I get is the following:
    "Syntax error on token '<', invalid assignment operator.
    Can anyone clear this up for me, I've been searching and I've basically wasted a good half-hour without even touching my damn program.

    endasil wrote:
    well, to go higher than 1.4 you'd need a JDK that is higher than 1.4. It really has nothing to do with eclipse, and if you don't have a 1.5 jdk installed, NetBeans will have the same problem.Nonsense. Eclipse has it's own compiler, your JDK is irrelevant.
    Go to Window->Preferences->Java->Compiler and change the compiler compliance setting to 5.0 or higher. Your JRE will need to match, but the JDK need not even be installed

  • Unable to use Titles- will not compile or render titles (preview or export)

    I have been unable to insert titles in Premiere Pro CC. I just installed it yesterday, and everything seems to work except when I try and insert titles using PPro's internal Titler. The preview line above the title (and only the title) remains red and when rendering the preview a "Error compiling movie: Unknown error" pops up. When exporting, once it gets to the title, it will also stop the render with the same error. If I remove the title, it renders fine. When creating a new Title, I have made sure that the pixel size, etc. is the same as the rest of the project. Occasionally, I can make a modification to the title and it will display properly in the preview window, temporarily. Once I take some other action even as minor as saving the project, the title will revert to its failed state. In this state, it won't render and when playing the preview, the image will freeze on the last frame before the title and once it is past the title, the video continues. It is a simple rolling title for end credits. If the title is temporarily working in the preview window, it will also work in the project box. However, when the title is in its failed state, the thumbnail in the project window also does not work. Click it gives that multi-language media rednering screen. Double clicking the titles anywhere brings up the Title editor screen and everything appears fine. The screenshot below shows the error after trying to render the preview of the title. I tried disabling the CUDA acceleration (I have a GTX770 card) with no change. I have also tried various file formats in the export to no avail as copying and pasting into a new sequence to no avail. The C: drive has over 70GB free and the disk with the scratch files has over 170GB free. Any help would be greatly appreciated. Thanks.
    Rob

    I am still having the problems with it however I will have to re-create the test case as I accidentally cleaned it out when I cleaned up my APEX space at oracle's public server. I will rebuild the test case and post a link later today.

  • PLEASE HELP!  PP will not compile my timeline??????????????

    I am SUDDENLY getting error messages and crashes.  I have MONTHS worth of work placed into a timeline.  It's time to start making screeners for others to see what I've done.  A few days ago I exported the timeline, imported the mpeg2 file into Encore and burned a screener.  Today - NO GO!.  The same timeline, the same process.  I keep getting the following useless message:
    ERROR COMPILING MOVIE
    Unknown Error
    I tried rendering the work area first, no change.  I have tried dynamically linking the timeline to Encore and also can not burn a disc.  There's no error message in Encore, it just freezes up during the build process.
    I have TENS OF THOUSANDS OF DOLLARS AND A YEAR OF MY LIFE bundled up in this timeline.  Any help will be grately appreciated.
    CS5.5.  System is a 2009 MacPro, 24GB of RAM, 6TB of hard drive space on 4 drives.  I tried changing the scratch disc, no go.  I tried turning off all the audio tracks, no change.  I tried turning off all the video tracks, no change.
    Steve Keller

    Since you don't provide much in the way of detail... here are some general guesses
    As well as the below, right click the Encore icon and select Run as Administrator, which is NOT the same thing as running the computer with the Administrator account, and which fixes several "odd" problems... To create a dual layer DVD (or a BluRay?), you MUST have Encore set to use the Run as Administrator option
    Run as Administrator http://forums.adobe.com/thread/771202
    Odd Errors http://forums.adobe.com/thread/670174
    Long File Names or odd characters cause problems
    Read http://forums.adobe.com/thread/588273
    And #4 http://forums.adobe.com/thread/666558
    And This Message Thread http://forums.adobe.com/thread/665641
    Things and Software to AVOID when authoring/burning a DVD
    Start --> http://forums.adobe.com/thread/608660
    #2 has WHY Explained http://forums.adobe.com/thread/607390
    Plus http://forums.adobe.com/thread/562941
    Create an ISO (Encore) or folder on your hard drive (Encore or Premiere Elements) and then use the FREE http://www.imgburn.com/index.php?act=download to write files or folders or ISO to disc (send the author a PayPal donation if you like his program)
    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large = Crash http://forums.adobe.com/thread/879967
    Firewall = Crash http://kb2.adobe.com/cps/857/cpsid_85711.html
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    For Mac http://mediainfo.massanti.com/
    And a comment... every day that ends with no problems... do a project "save as" with an incremental project name... movie001... movie002... and so on... so problems may be bypassed by going back a version or two

  • RoboHelp 9 Will Not Compile Web Help

    Windows 7 Professional 640-bit
    Microsoft Office 2010
    RH 9.0.2.271
    I have several projects for which I compile Web help.
    Compiling the projects has been no problem in the past.
    I have made no known changes to the computer or user rights.
    Now, RH stops responding when the compile starts. The stop is very early in the process.
    I can compile CHM files.
    In Output View, I see the following message:
    Initializing complier
    Generating Webhelp 5.50 (9.0.0.228)…
    Error: Can not register active script for language javascript
    Template Error: can not resolve macro: RegisterResolvers
    Fata Error: Cannot run macro: Register Resolvers in compilation.
    While searching for an answer, I tried the following without success:
    Note: I am an administrator on the computer. I have always been an admin on the computer.
    I have not uninstalled/reinstalled RH so there should be no issues with administrator privileges.
    I ran the RH executable as an administrator using a variety of methods like right-click RoboHTML.exe and click Run as Administrator.
    Project is on local drive.
    Created a new project.
    Compiled the sample projects contained in RH.
    Created a new SSL.
    Create a new target folder for the output.
    Copy the LNG file from the "!Language\<current-project-language>" folder to the project folder.
    From the project settings dialog, change the project language to a different language, and then change it back to the current language.
    Deleted CPD file.
    Deleted !Language! folder.
    Word macro security is Enable all macros.
    Can anyone help me find something I have not tried.

    First I have often found that Deactivate becomes enabled if you wait a while after opening.
    Search on these two lines from your first post.
    Template Error: can not resolve macro: RegisterResolvers
    Fata Error: Cannot run macro: Register Resolvers in compilation.
    (Was it really Fata rather then Fatal?)
    Maybe you haven't changed rights but have IT done so without your knowledge?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for

  • Attachments show up inline as base64 (?) text

    Sometimes I receive email with attachments that show up inline in the text as base64 (maybe) encoded text instead of as attachments. Sometimes attachments appear correctly. I don't know what makes the difference, though the bad attachments seem to ap

  • Report Needed urgently

    Dear Friends, I want a report which will show historical stock of articles. I tried with 'MC.9' but I can not get date wise stock. It will show only month wise stock. Please help me. best regards, Zubaer.

  • File adapter with archiving option

    hello, i am using a file adapter sender with archiving option, sometimes this communication channel fail, it said not is possible archiving file...i change anything in the channel, I leave it as it was and active and then it works, what can be caused

  • Alerts from AS2 adpter

    Hi, We are using AS2 adapter to communicate with our B2B partner. We are successfully tested the File --> PI --> AS2 scenario and we are receiving MDN back as configured. Is there a way to trigger/generate e-mail alert based on the MDN message?? Than

  • CPU intensive query

    Hi, on 11g R2 64 bits on Win 2008 R2, when query runs CPU is used at 100%. AWR says : Event                                 Waits     Time(s)   (ms)   time Wait Class DB CPU                                            2,805          80.1 db file seque