I have a procedure something like
create or replace package pack_body
as
procedure export(P_LOCATION_ID number
,retcode OUT NOCOPY NUMBER)
as
----body
end;
I am calling this package in another package
pack_body.export(p_location_id => null);
At this line it is going into error:
Error(28412,5): PLS-00306: wrong number or types of arguments in call to 'EXPORT'
I cannot pass null into number data type variable ?
retcode.