could you please elaborate on what the exact procedure name has to look like when defining repository stored procedures?
assume I want to create the SP in package "MyPackage" and i want to call it "MyStoredProc_IN".
I have to mention that I also have a schema which is called "MyPackage" - maybe this causes some troubles here?
this is what i tried so far:
"MyPackage.procedures::MyStoredProc" --> creates SP in MyPackage-Schema
"MyPackage::MyStoredProc" --> creates SP in MyPackage-Schema
"_SYS_BIC"."MyPackage\MyStoredProc" --> creates SP in _SYS_BIC-Schema
in all three cases the procedure does not show up in the MyPackage-repository
I am sure its just a minor naming thing but I am currently stuck on this
any help is highly appreciated!
-gerhard