Test Scripts

kevb

Member²
Hi

I am trying to use the in built test option with in plsql dev to run a procedure with in a package. However the run button is greyed out, the code built by the test option is

begin
-- Call the procedure
case_load_panel_pkg.get_case_load(case_cur => :case_cur);
end;

I know the procedures are valid as have been tested in calling applications. Why could the run button be greyed out?
 
The toolbar of the Test Window contains buttons for the debugger. The "Run" button will run the program until completion, and will be enabled after pressing the "Start Debugger" button.

To execute a Test Script in normal mode, press the "Execute" button on the main toolbar (or F8).

------------------
Marco Kalter
Allround Automations
 
Back
Top