Hi All,
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0
Oracle Report Builder 10.1.2.3.0
Details about the error:- I have an existing Oracle function name get_name which is inside a package emp_common package.
Before get_name has two parameters, I have modified the specification and it's body and added one parameter and compiled in the database. Compilation is successful in the database and it's changes are reflected in the database.
After that I have open the Oracle reports which is a RDF file, inside this rdf file this function is called with two parameters
v_emp_name := emp_common.get_name(parameter1,parameter2); → Existing and I have modified it to
v_emp_name := emp_common.get_name(parameter1,parameter2,parameter3); After changes when I do the compile all in the report builder it is showing error “Wrong number or types of arguments in call to a emp_common.get_name”
I am connecting to the same database where the changes are done.
Can anyone before face this type of issue ?
Is it a bug or what ?
How to resolve it ?
Regards,
Kalpataru