I need to make a modification to one of the Java upgrade programs Lawson has provided for our 8.0.3 to 9.0.0.4 upgrade. However, I am finding I do not know how to even compile the original delivered program.
I have tried issuing the "javac PR96X.java" command, however, am receiving errors (see below). It appears to me from reading the errors it can not import the package "upgrade" on the first line which is causing the majority of these errors. Can anyone provide any insight as to how I can recompile the Lawson delivered java upgrade programs? Thank you in advance.
PR96X.java:1: package upgrade does not exist import upgrade.*; ^ PR96X.java:14: cannot find symbol symbol : class UGFile location: class PR96X UGFile sPDH = new UGFile("PREMDEDHST", 5000); ^ PR96X.java:14: cannot find symbol symbol : class UGFile location: class PR96X UGFile sPDH = new UGFile("PREMDEDHST", 5000); ^ PR96X.java:18: cannot find symbol symbol : class UGFile location: class PR96X UGFile tPDH = new UGFile("PREMDEDHST", true, false, null); ^ PR96X.java:18: cannot find symbol symbol : class UGFile location: class PR96X UGFile tPDH = new UGFile("PREMDEDHST", true, false, null); ^