I am puzzled. When I change the value passed to my package.procedure from a single character to two characters the trigger calling the package fails.
I have an after insert trigger calling ins_support('I') - this works, when you change it to ins_support('ID') it doesn't work.
Ins_support(action_in in varchar2) is a procedure declared in a package.
The body of ins_support looks like this:
Anyone have any thoughts ?
Thanks
I have an after insert trigger calling ins_support('I') - this works, when you change it to ins_support('ID') it doesn't work.
Ins_support(action_in in varchar2) is a procedure declared in a package.
The body of ins_support looks like this:
Code:
if action_in = 'ID' then
dbms_output.put_line('input was ID');
elsif action_in = 'I' then
dbms_output.put_line('input was I');
end if;
Anyone have any thoughts ?
Thanks