Problems compiling and running 9i forms on 10g Linux app server

Hi all,
we are about to move our 9i developed forms application from W2k 9ias RL2 to a 10g linux application server. It seems that we are having very much trouble with the fact that file names are case-sensitive under linux. Our forms are designer-generated and afterwards modified using forms developer under win2k. Therefore these forms have designer plls attached (OFG*.pll). In addition, we use a few custom plls and an object library (*.olb). We managed to compile our fmbs to fmx using f90genm.sh on linux, but getting FRM-40735 and ORA-06508 errors at runtime. FORMS90_PATH in default.env is correct.
We took one fmb to narrow things down. Steps we took on development machine:
- Rename all plls to a format of uppercase name and lowercase extension (e.g. OFGBSL.pll)
- Reattach plls to the form
After that
- Move fmb and plls to linux machine
- compile the fmb without errors
At runtime, we get a ORA-06508 in a trigger that calls CGFK$LKUP_QRY.EXTEND_WHERE. This procedure is located in OFGTEL.pll. OFGTEL.pll has OFGMES.pll attached. We tried to compile OFGTEL.pll, but getting errors due to the fact that table CG_REF_CODES is not present in our db (we don't use it).
Other plls like OFGBSL.pll and our custom pll work well (proved by debugging).
Can anybody give us some hints or step-by-step instructions on how to move our application to linux, especially how to make OFGTEL.pll usable?
Thanks in advance
Gerald Krieger

Here is a part of code from OFGTEL.pll
IF (curr_value IS NOT NULL) THEN
SELECT decode(RV_HIGH_VALUE, NULL, RV_LOW_VALUE, curr_value)
, RV_MEANING
INTO new_value
, P_MEANING
FROM CG_REF_CODES
WHERE ( (RV_HIGH_VALUE IS NULL AND
/* this will compare them as chars, as the */
/* abbreviation will most often be a char */
curr_value IN (RV_LOW_VALUE, RV_ABBREVIATION)) OR
(to_number(curr_value) BETWEEN
to_number(RV_LOW_VALUE) AND to_number(RV_HIGH_VALUE))
AND ROWNUM = 1
i think the unix .pll and Win .pll are not the same

Similar Messages

  • How to compile and run PRO*C programs in Linux

    Hi all,
    This is my first post in this forum.
    I have Oracle 9i installed in linux platform .
    How can i compile and run Pro*C programs in linux.(i mean any commands or procedure to run these programs)
    please help me in this regard.
    Thanks in advance,
    Trinath Somanchi,
    Hyderabad .

    (1) How to compile the Pro*c program U got to have a makefile to compile a Pro*c program. It helps u in compiling and creating an excutable. Once U have created a makefile , just call "make" and it will do the compilation and create the executable as well.
    For a sample makefile visit
    http://asktom.oracle.com/~tkyte/proc_makefile/
    (2) How to run the Pro*c program ? and Once U have created an executable, U shall call that directly as any other linux command. Make sure U have the permissions to run the executable. If not give the permissions using chmod 777 executable
    (3)How to get the output of the program ?Question 2 and 3 are the same. I mean running and getting a output are the same

  • Problems compiling and running a servlet

    I have been trying to compile and run my servlet program to no avail. Please help. I am using Tomcat 5.5 and j2sdk1.4.2
    These are the errors I keep getting. I have already set the classpath appropriately.
    MyServletTest.java:5: package javax.servlet does not exist
    import javax.servlet.*;
    ^
    MyServletTest.java:6: package javax.servlet.http does not exist
    import javax.servlet.http.*;
    ^
    MyServletTest.java:10: cannot resolve symbol
    symbol : class HttpServlet
    location: class MyServletTest
    public class MyServletTest extends HttpServlet {
    ^
    MyServletTest.java:13: cannot resolve symbol
    symbol : class HttpServletRquest
    location: class MyServletTest
    public void doGet (HttpServletRquest req, HttpServletResponse resp)
    ^
    MyServletTest.java:13: cannot resolve symbol
    symbol : class HttpServletResponse
    location: class MyServletTest
    public void doGet (HttpServletRquest req, HttpServletResponse resp)
    ^
    MyServletTest.java:48: cannot resolve symbol
    symbol : class HttpServletResponse
    location: class MyServletTest
    private void printResultSet (HttpServletResponse resp, ResultSet rs)
    throws SQLException {
    ^
    MyServletTest.java:52: cannot resolve symbol
    symbol : method prinln (java.lang.String)
    location: class java.io.PrintWriter
    out.prinln("<html>");
    ^
    7 errors

    Thank you. I have managed to compile the program but
    when I run it I get:
    Exception in thread "main"
    java.lang.NoSuchMethodError: main
    How should I run a servlet?Servlets are not run like applications. You need to deploy them to a servlet container, and they get invoked and initialized by constructor, init() method and goGet/doPost().

  • JAVA ME - Problems compiling and running (using Eclipse)

    Hello,
    I am new to Java ME and I am trying to run a copied HelloMIDlet application. I am getting following error when I am trying to run the application:
    Running with storage root C:\Users\Niklas\j2mewtk\2.5.2\appdb\MediaControlSkin
    Running with locale: Swedish_Sweden.1252
    Running in the identified_third_party security domain
    java.lang.NullPointerException
         at javax.microedition.lcdui.Item.addCommandImpl(+11)
         at javax.microedition.lcdui.StringItem.addCommandImpl(+11)
         at javax.microedition.lcdui.Item.addCommand(+11)
         at HelloMIDlet.<init>(+99)
         at java.lang.Class.runCustomCode(+0)
         at com.sun.midp.midlet.MIDletState.createMIDlet(+34)
         at com.sun.midp.midlet.Scheduler.schedule(+52)
         at com.sun.midp.main.Main.runLocalClass(+28)
         at com.sun.midp.main.Main.main(+80)
    Execution completed.
    3415817 bytecodes executed
    17 thread switches
    1667 classes in the system (including system classes)
    17760 dynamic objects allocated (533540 bytes)
    2 garbage collections (459436 bytes collected)And the applicaiton:
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    public class HelloMIDlet extends MIDlet
           implements CommandListener {
      // The exit command
      private Command exitCommand;
      // The display for this MIDlet
      private Display display;   
      // create a ticker
      private Ticker hi = new Ticker("J2ME is cool");
      public HelloMIDlet() {
        display = Display.getDisplay(this);
        exitCommand = new Command("Exit", Command.SCREEN, 2);
      public void startApp() {
        TextBox t = new TextBox("Hello MIDlet",
                    "Wireless Internet", 256, 0);
        t.addCommand(exitCommand);
        t.setCommandListener(this);
        t.setTicker(hi); // set the ticker
        display.setCurrent(t);
      public void pauseApp() { }
      public void destroyApp(boolean unconditional) { }
      public void commandAction(Command c, Displayable s) {
        if (c == exitCommand) {
          destroyApp(false);
          notifyDestroyed();
    }I did try to remove as much code as possible still being able to compile it. Exactly the same type of error was presented still...
    I have another MIDlet in the same projects that works fine.
    What is the problem?
    Thank you in advance!
    Best Regards,
    Niklas

    java.lang.NullPointerException
         at HelloMIDlet.<init>(+99)
    ...Try to modify your code about as follows:
      private Ticker hi;  // initialize ticker in startApp
    /* don't override the MIDlet constructor
      public HelloMIDlet() {
      public void startApp() {
        // initialize all MIDP UI stuff in startApp
        hi = new Ticker("J2ME is cool");
        display = Display.getDisplay(this);
        exitCommand = new Command("Exit", Command.SCREEN, 2);
        TextBox t = new TextBox("Hello MIDlet",
                    "Wireless Internet", 256, 0);
        t.addCommand(exitCommand);
        t.setCommandListener(this);
        t.setTicker(hi); // set the ticker
        display.setCurrent(t);
    //...The problem might be caused by initializing MIDP UI stuff prior to entering startApp method. I also think that overriding MIDlet constructor is not quite a good idea. Check [MIDP tutorials (Google search shows plenty)|http://www.google.com/search?q=MIDP+tutorials] if you're interested to know more details on that.

  • How to compile and deploy an ejb into Sun ONE app.server 7.0

    I am new to Sun ONE application server. I Have .java files and deployment descriptor files with me. How should proceed. When i tried to use asant it is saying that build.xml not found. I copied build.xml from some other directory to the current directory. Then it is saying that common.xml not found. Please help.
    Regards,
    Nagaraju.

    Hi,
    The build.xml file should be in a directory from where
    you are running the asant command.
    To resolve the common.xml file not found error,
    open your build.xml and check from which location the common.xml file is incuded.
    In the sample application it is four directories above
    the directory where build.xml is located.
    You can copy the common.xml in the current directory and then change the following in your build.xml
    <!ENTITY include SYSTEM "../../../../common.xml">
    to <!ENTITY include SYSTEM "common.xml">
    Hope this helps.
    Get back in case you have more issues

  • Compiling and running problems

    Dear Friends:
    I believe I encountered a very difficult situation when I try to run Fortran
    files in Sun Sparc Solaris 8.0.
    I would like to describe it, hopefully someone can give me some suggestions.
    The the files I try to run is fortran 77 files developed originally for VAX
    machine, later on there are Linux and Unix adaptions (but not for Sun
    Solaris). The source code is open source from the link:
    http://www.webmo.net/support/mopac_linux.html. I have compiled and run
    successfully in Redhat 9.0 (means same results as the samples). The linux
    dependency is gcc (or egcs) glibc (or libc) f2c.
    Also it is compatible with SGI IRIX unix system with the dependency MIPSpro Fortran 77 and MIPSpro C as the link http://www.webmo.net/support/mopac_sgi.html. I havenot tried it yet.
    In sun solaris, I have tried g77, but even cannot compiled. With Apogee's
    F77 (www.apogee.com), it can be compiled, but cannot run completely (terminate in the middle
    process, i.e. without the complete output as the samples).
    Could anyone take a time do a analysis and provide me any suggestions?
    thanks a lot,
    Justin

    Justin,
    I downloaded the mopac tarball and compiled it on Sun Solaris using the Sun Studio 10 compiler. The code compiles successfully with only a small change to the included Makefile.
    Change the original unix target as follows:
    unix:
         f77 -w -O -static *.f -o $(EXE)
    becomes
    unix:
         f90 -f77 -w -O *.f -o $(EXE)
    I noticed during the compilation that there were a number of BLAS and LAPACK routines that are being compiled into the application. The Sun Studio compilers include a high performance BLAS/LAPACK library called the Sun Performance Library which provides highly tuned versions of the BLAS/LAPACK routines called by this application. I would be more than happy to help you modify the source and makefile so that you can use these tuned routines and realize increased performance in this application.
    I ran several of the data sets in the examples directory and they appeared to complete successfully. Since none of them run for more than a second or so, it's hard to say whether or not the tuned Performance Library will have a large impact on the performance or not.
    If you are interested, please contact me : [email protected]

  • How to compile and run windows built .fmb file in linux

    Hi,
    I have developer suite 10g installed in windows OS.
    i built a .fmb forms binary file in windows. now i want to compile and deploy this .fmb file into .fmx file in linux and run it.
    I have Oracle Application Server Enterprise version along with Forms/Reports services installed on my linux box.
    Can someone guide how to use my AS Form services in linux to complie and run my .fmb file.
    Thanks in advance,
    Philip.

    is there a easier way or is this the only way to
    compile a .fmb file in a linux machine.Yes, there also a way interactive(not in batch), but you have to need use X-session (GUI) variables DISPLAY
    You can compile module after module if you change $i with you form(FMB) userid
    frmcmp_batch.sh userid=scott/tiger@bs817 batch=no module=$i module_type=form
    compile_all=yes window_state=minimize
    Remember you must set FORMS PATH and ORACLE_HOME/bin where frmcmp_batch is
    Then, run file where you insert frmcmp_batch.sh
    How do i invoke forms builder, forms compiler in a
    linux machine where i have installed Application
    Server Enterprise edition?You don't invoke FORM BUILDER
    (assumption is that the "development" machine is a MS Windows platform and the "deployment" machine is a Unix platform)
    FMX, MMX, and PLX files are NOT portable between platforms. Source code (FMB, MMB, PLL) must be recompiled when moving from one platform to another. This includes moving from one Unix platform to another (i.e. Sun Solaris to Linux) or one Windows platform version to another.
    frmcmp_batch.sh is script that run executable (compiler) for Linux OS
    In Forms 10.1.2.0.2 and newer, the executable and script names are. frmcmp , frmcmp_batch..
    Once all of the executables have been generated the path to these files will need to be included in the Forms deployment environment. In most cases this will be the FORMS90_PATH value in the Forms env file, "default.env"
    I hope to have been clear
    Regards

  • How to compile and run java files on a mac using command line?

    can someone tell me or link me to some article on how to compile and run java files from command line on a mac? I have mac OS X leopard

    What do you mean by "where to put them" ? What do you want to put anywhere ?
    Have you read Peter's comment in brackets ? Perhaps you have a classpath problem ?
    Edited by: Michael_Knight on Aug 31, 2008 4:23 AM

  • Compiling and running a package

    Hi
    Iduring making a project i am facing a problem. I have two files under the directory c:\jdk1.3\ghosh\das, named as ghosh.java and das.java
    they are like the folloing:
    ghosh.java
    package.java.das;
    import java.io.*;
    import.java.util.*;
    public class ghosh
    public static void main(String args[])
    das dipak = new das();
    dipak.prn();
    das.java
    package ghosh.das;
    import java.io.*;
    import java.util.*;
    public class das
    das();
    public void prn()
    System.out.println("Package");
    If you please tell me the way to compile and & run this package, I will be highly thankful to you.
    thanx in andvance.
    sudipta

    The statement "package.java.das;" won't compile. Do you mean "package java.das;" or do you mean "package ghosh.das;"? The -d option might not give you the result you want. If you mean, ""package java.das;" and you compile with "-d c:\jdk1.3" then the compiler will create a directory named java in the jdk1.3 directory and create a .class file inside the java directory.
    Depending on the package statement, you execute the ghosh class with "java java.das.ghosh" or "java ghosh.das.ghosh"

  • Compile and run java programs in different directroy

    Hi,
    I often encounter many problems when I run java programs in the different directories. Like
    javac -d dir_name a.java
    java -cp dir_name a
    Something wired often happens, such as, there is not a.java file in some directory, but javac -d dir_name a.java can still work or "java -cp dir_name a" often doesn't work. Moreover, file_name.jar is also a tough problem and solving compiling problems is often time-consuming.
    So I hope to read something about how to compile and run java programs in different directory properly.
    Could you pleae give me a detailed description for that or recommend a book or website?
    Thanks a lot.

    Can you post a small amount of code that does not work, including the directory structure, and the error messages? Some one here can likely explain the problem.

  • Error in compiling and running a packaged application

    Hi all,
    I am new to java and studying alone java from sun's site.Now i am going through sun's step by step programming.From there i got a packaged Application named DiveLog which i wrote and saved in divelog directory in jdk1.2.2which is in C directory.
    When i tried to compile it i got the error message as class Resource .java not found.But i have created the file Resource.java and saved in the same divelog directory.
    somehow i get rid of the error and looked for the directory but class file is not there.So i understood that Compilation doesn't took place.
    Can anyone help me to get rid of the error and compile and run the Application successfully.
    Here is the DiveLog application i have written.
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class DiveLog
    private JTabbedPane tabbedPane;
    private JFrame dlframe;
    public DiveLog()
    dlframe = new JFrame("A Java(TM) Technology Dive Log");
    dlframe.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0)
    tabbedPane = new JTabbedPane(SwingConstants.LEFT);
    tabbedPane.setBackground(Color.blue);
    tabbedPane.setForeground(Color.white);
    populateTabbedPane();
    buildMenu();
    dlframe.getContentPane().add(tabbedPane);
    dlframe.pack();
    dlframe.setSize(765,690);
    dlframe.setBackground(Color.white);
    dlframe.setVisible(true);
    private void populateTabbedPane()
    tabbedPane.addTab("Welcome",
    null,
    new Welcome(),
    "Welcome to the Dive Log");
    tabbedPane.addTab("Diver Data",
    null,
    new Diver(),
    "Click here to enter diver data");
    tabbedPane.addTab("Log Dives",
    null,
    new Dives(),
    "Click here to enter dives");
    tabbedPane.addTab("Statistics",
    null,
    new Statistics(),
    "Click here to calculate dive statistics");
    tabbedPane.addTab("Favorite Web Site",
    null,
    new WebSite(),
    "Click here to see a web site");
    tabbedPane.addTab("Resources",
    null,
    new Resources(),
    "Click here to see a list" + "of resources");
    private void buildMenu()
    JMenuBar mb = new JMenuBar();
    JMenu menu = new JMenu("File");
    JMenuItem item = new JMenuItem("Exit");
    item.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    System.exit(0);
    menu.add(item);
    mb.add(menu);
    dlframe.setJMenuBar(mb);
    public static void main(String[] args)
    DiveLog dl = new DiveLog();

    Classpath problem. Read the old threads related to in the classpath problem.
    /Sreenivasa Kumar Majji.
    Hi all,
    I am new to java and studying alone java from sun's
    site.Now i am going through sun's step by step
    programming.From there i got a packaged Application
    named DiveLog which i wrote and saved in divelog
    directory in jdk1.2.2which is in C directory.
    When i tried to compile it i got the error message as
    class Resource .java not found.But i have created the
    file Resource.java and saved in the same divelog
    directory.
    somehow i get rid of the error and looked for the
    directory but class file is not there.So i understood
    that Compilation doesn't took place.
    Can anyone help me to get rid of the error and compile
    and run the Application successfully.
    Here is the DiveLog application i have written.
    package divelog;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class DiveLog
    private JTabbedPane tabbedPane;
    private JFrame dlframe;
    public DiveLog()
    dlframe = new JFrame("A Java(TM) Technology Dive
    Dive Log");
    dlframe.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0)
    tabbedPane = new
    e = new JTabbedPane(SwingConstants.LEFT);
    tabbedPane.setBackground(Color.blue);
    tabbedPane.setForeground(Color.white);
    populateTabbedPane();
    buildMenu();
    dlframe.getContentPane().add(tabbedPane);
    dlframe.pack();
    dlframe.setSize(765,690);
    dlframe.setBackground(Color.white);
    dlframe.setVisible(true);
    private void populateTabbedPane()
    tabbedPane.addTab("Welcome",
    null,
    new Welcome(),
    "Welcome to the Dive
    "Welcome to the Dive Log");
    tabbedPane.addTab("Diver Data",
    null,
    new Diver(),
    "Click here to enter
    "Click here to enter diver data");
    tabbedPane.addTab("Log Dives",
    null,
    new Dives(),
    "Click here to enter
    "Click here to enter dives");
    tabbedPane.addTab("Statistics",
    null,
    new Statistics(),
    "Click here to calculate
    "Click here to calculate dive statistics");
    tabbedPane.addTab("Favorite Web Site",
    null,
    new WebSite(),
    "Click here to see a web
    "Click here to see a web site");
    tabbedPane.addTab("Resources",
    null,
    new Resources(),
    "Click here to see a
    "Click here to see a list" + "of
    t" + "of resources");
    private void buildMenu()
    JMenuBar mb = new JMenuBar();
    JMenu menu = new JMenu("File");
    JMenuItem item = new JMenuItem("Exit");
    item.addActionListener(new
    istener(new ActionListener()
    public void actionPerformed(ActionEvent
    ed(ActionEvent e)
    System.exit(0);
    menu.add(item);
    mb.add(menu);
    dlframe.setJMenuBar(mb);
    public static void main(String[]
    d main(String[] args)
    DiveLog dl = new DiveLog();

  • How to compile and run a java program?

    I am getting this error message, what to do?
    Exception in thread "main" java.lang.NoClassDefFoundError:
    Thanks for you help.
    Ajay

    Hello,
    I believe that this error is caused because when you
    compile and run a java program, you have to use the
    same name that is next to public class. For example,
    the program name is next to the word public class.
    For example, if a program began like this:
    public class Concat
    then the name of the program in this case is Concat
    and when you compile it you type: javac Concat.java
    when you run it type: java Concat
    depending on the name of your program.and depending on whether the class is in a package. And depending on what directory you are currently in.
    Also depending on if you set your class path you might
    have to type the above like this: jdk1.2.1\bin\javac
    Concat.java to compile, and to run you would have to
    type jdk1.2.1\bin\java Concat where you would replace
    Concat with the name of your program and replace
    jdk1.2.1 with the name of your version of java, that
    is again if you do not have your classpath set. Hope
    this helps.Your examples have nothing to do with whether the CLASSPATH is set--only with whether the PATH is set. And, it may not be jdkXXX\bin. The path to the JDK (in this case, to javac and java executables) could be anything. Classpath should be set on the command line. The OP probably did NOT set a classpath on the command line (preferred), or in the environment variables.
    Also, make sure you did not forget to put:
    public static void main(String[ ] args)
    on the line underneath the line where it says "public
    class Concat" where Concat is the name of your
    program. Again, I hope this helps.Irrelevant (with the info we have from the OP so far). The error says that the JVM can't even find the class--not that the class doesn't have a main. The "main" referred to in the error message is within the JVM itself.
    OP: Did you fix your problem? If not, what directory are your files in? Are they in a package? What command are you typing to get that error? That is, please tell us your entire command line.

  • Compiling on a dual core machine and running the class files on linux.

    does compiling on a dual core machine and running the class files on linux have any effect?

    well, the problem that i felt was that when i runmy
    class files on my machine(windows xp, dual core),
    Thread.sleep(60000) sleeps for 1 minute. but wheni
    run it on a linux machine, Thread.sleep(60000)sleeps
    for 2 minutes. my application has a lot ofthreads.
    I can't be 100% sure, but I'm pretty sure that
    sleep(60000) doesn't sleep for 2 minutes on the other
    machine.I, wholeheartedly, agree.
    Due to timing issues it may seem to sleep a few milliseconds more, but not double.
    Of course, if there is a "real-time" (or even simply higher than the Java app) priority program running that is using a lot of the CPU it may seem like it sleeps a lot longer than 60000, but that is a different issue.

  • It compiles and runs, but scrollPane doesn't work.

    Bah. Why doesn't my scrollPane work? It compiles and runs but my scrollbars for the text area are nowhere to be found. This is the code I'm using to handle my scrollpane.
    public Display() {
                   setLayout(null);
                   setPreferredSize(new Dimension(270, 300));
                   setSize(270, 300);
                   items = new JTextArea(5, 5);
                   items.setBounds(5, 5, 270, 260); //x,y,width,height
                   items.setEditable(false);
                JScrollPane scrollPane = new JScrollPane(items);
                scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                scrollPane.setVerticalScrollBar(new JScrollBar(Scrollbar.VERTICAL));
                JScrollBar vScrollBar = scrollPane.getVerticalScrollBar();
                vScrollBar.setAutoscrolls(true);
                scrollPane.setVerticalScrollBar(vScrollBar);
                add(scrollPane, BorderLayout.CENTER);
                   add(items);
                   amount = new JTextField(".00");
                   amount.setBounds(5, 275, 266, 25);
                   amount.setHorizontalAlignment(JTextField.RIGHT);
                   amount.setEditable(false);
                   add(amount);
              }I'm also having a problem with this one. Apparently, my I uncomment this, the compiler says "cannot find symbol getImage()" which is odd because I've imported the proper package with this method.
    private ImageIcon icon = new ImageIcon("BKLogo.gif");
              public void paintComponent(Graphics background)
                   background.drawImage(background.getImage(), 0, 0, null);  
                   //setOpaque( false );
                   //super.paintComponent(background);
                   }

    You know what you need to do then: post an SSCCE (Short, Self Contained, Correct (Compilable), Example). For info on what this entails, look at these two sites:
    http://javafaq.mine.nu/lookup?22
    http://www.physci.org/codes/sscce.jsp

  • DEBUG, Compile and run by making connection with Run Manager

    Can anybody tell me how the compile and run of the pl/sql package is done in SQL Developer? Will there be use of DBMS_OUTPUT.PUT_LINE?
    Why I am getting the "package name can not be started in the database, because it is not in the database connection manager" how to solve this problem
    Thank you
    Edited by: Higlander on Sep 22, 2010 12:30 PM

    You you compile and debug a plsql package, it runs as if you were just running it from a prompt. The advantage of debugging is that you can set breakpoints in your code. Once those breakpoints are reached, execution is paused and you can look at all (well most) of you variables. No need to dbms_output your variables.
    Never seen that error. What version are you using, and how your you initiating the debugger?

Maybe you are looking for

  • How can I select a channel on the RT target with a VI on the host?

    Maybe I'm trying to pound a square peg into a round hole, so please let me know if I'm abusing LV, but ... I'm trying to parameterize our RT VI app that deals with digital output channels.  We use the same basic VI for multiple configurations.  The o

  • Keeping same Events and Projects on 2 external HD - Best Practice

    I would like to receive your suggestions on this working flow. (I am also interested to get some confirmation that I am doing the right way). I use FCPX since few weeks. Coming from iMovie and FCE. I import videos from external drive "C" on 2 differe

  • ABS snow-can't join/find or change password

    Hi & thanks in advance. I searched the discussions-found somewhat related material but not enough. I am trying to use an airport snow that hasn't been in use for about 2-3 years. I am currently connected via it, so it does still work. I connected it

  • I want to clear the down arrow list on navigation bar, how?

    Most browsers have a down arrow to look for past entries of url's. Alot of those are no use to me now, and some embarrassing. The history is fine, but how to clear that list? Tomg

  • Need help with my PIN

    Hello everyone, I have got my BlackBerry Curve since christmas but I never got my PIN working, I did some research online and it said it should work as soon as you buy it, but mine isn't I know my PIN and I tried to had a friend of mine and it wouldn