Hello,
Here is a selection of error messages thrown from the call to a stored procedure - I ran each one immediately after the last:
You get the picture. My first question is, simply, ?????
For a start, I don't have a column 197 on my line 1, that's daft. Here's the top of my procedure:
Now - the call to run this stored procedure is being done from an Excel spreadsheet via ODBC (using InstantClient11_1). I've used adVarChar and adDouble as the ADO data types for my parameters. I just can't get the darned thing to execute.
Here is a selection of error messages thrown from the call to a stored procedure - I ran each one immediately after the last:
Code:
[Oracle][ODBC][Ora]ORA-06550: line 1, column 197:
PLS-00103: Encountered the symbol "Ì3" The symbol "Ì3" was ignored.
[Oracle][ODBC][Ora]ORA-06550: line 1, column 197:
PLS-00103: Encountered the symbol "¿"
[Oracle][ODBC][Ora]ORA-06550: line 1, column 197:
PLS-00103: Encountered the symbol "+"
You get the picture. My first question is, simply, ?????
For a start, I don't have a column 197 on my line 1, that's daft. Here's the top of my procedure:
Code:
create or replace
PACKAGE BODY DD_JOURNALS AS
PROCEDURE AuthorityOnAccount(
in_vCompany IN VARCHAR2,
in_vAccount IN VARCHAR2,
in_vCostCentre IN VARCHAR2,
in_vDataType IN VARCHAR2,
in_nAmount IN NUMBER,
out_cAuthority OUT VARCHAR2,
out_nMaxPost OUT NUMBER,
out_nMaxAuth OUT NUMBER,
out_vMessage OUT VARCHAR2)
AS
cAuth CHAR;
nMaxPost NUMBER;
nMaxAuth NUMBER;
cCanPost CHAR DEFAULT '0';
cCanAuth CHAR DEFAULT '0';
cTest CHAR;
BEGIN
cCanPost := RIGHTS_MANAGEMENT.CHECK_RIGHTS('LEDGER::JOURNAL_POST');
Now - the call to run this stored procedure is being done from an Excel spreadsheet via ODBC (using InstantClient11_1). I've used adVarChar and adDouble as the ADO data types for my parameters. I just can't get the darned thing to execute.