I would like to execute an ORACLE 11g Stored procedure from Crystal 2008 I inserted the following through Database Expert Add command:
DECLARE
WCTODO_UPCEXP WCTODO_UPCEXP_PACKAGE.WCTODO_UPCEXP_TYPE;
P_PERSON_ID VARCHAR2(32767);
BEGIN
-- WCTODO_UPCEXP := NULL; Modify the code to initialize this parameter
P_PERSON_ID := {?p_person_id};
TEST_REPORTS.WCTODO_UPCEXP_PROCEDURE ( WCTODO_UPCEXP, P_PERSON_ID );
COMMIT;
END;
-------------------------------------------
I encountered an ORA-06550 error. I know we can directly point the report to the stored procedure but we would like to do it this way to be able to progammatically manipulate the data connection.
DECLARE
WCTODO_UPCEXP WCTODO_UPCEXP_PACKAGE.WCTODO_UPCEXP_TYPE;
P_PERSON_ID VARCHAR2(32767);
BEGIN
-- WCTODO_UPCEXP := NULL; Modify the code to initialize this parameter
P_PERSON_ID := {?p_person_id};
TEST_REPORTS.WCTODO_UPCEXP_PROCEDURE ( WCTODO_UPCEXP, P_PERSON_ID );
COMMIT;
END;
-------------------------------------------
I encountered an ORA-06550 error. I know we can directly point the report to the stored procedure but we would like to do it this way to be able to progammatically manipulate the data connection.