I'm using a Commercial vendors API and need help following a section of their instructions:
QUOTE FROM API DOCUENTATION: 7) The next step is to locate the ELEMENT_ID using the following oracle function.
nElementID := PK_TMX_STORAGE_MANAGEMENT.F_FIND_ID_BY_ADDRESS(‘FF-S01-R01-T01-001’, nBankID) ;
I need to run this Function in a VB.Net webservice (C# code is fine also) and I'm not sure about the syntax. Do I run it as a Stored Procedure and if so how do I pass the two variable (‘FF-S01-R01-T01-001’, nBankID) into the function.
Or do I wrap it in a Select Statement somehow and if do I need a FROM TABLE?
I know that Stored Proc and Functions are close but I'm running into problems with systax.
I get back ORA-06550: line 1, column 7: PLS-00221: 'F_FIND_ID_BY_ADDRESS' is not a procedure or is undefined ORA-06550: line 1, column 7: PL/SQL: Statement ignored Error
Thanks