[Home] [Help]
1: PACKAGE BODY Ad_LongToLob_Pkg
2: -- $Header: adl2lpkgb.pls 120.2 2012/01/02 09:03:25 asutrala ship $
3: AS
4: TYPE TableNames_Tbl_Type IS TABLE OF VARCHAR2(30) INDEX BY BINARY_INTEGER ;
5: TYPE To_DataType_Tbl_Type IS TABLE OF VARCHAR2(30) INDEX BY BINARY_INTEGER ;
837:
838: IF l_TableNames_Tbl.COUNT = 0 THEN
839: RAISE_APPLICATION_ERROR (-20001,
840: ' The tables are not Initialized.'||
841: ' Please use Ad_LongToLob_Pkg.initialize_process to'||
842: ' initialize the tables for generating report. ');
843: END IF ;
844:
845: BEGIN -- begin for the main block of actions
926: -- initialize_process;
927: -- Instead raise an error saying that the table is not initialized
928: raise_application_error(-20001,
929: ' The table is not Initialized.'||
930: ' Please use Ad_LongToLob_Pkg.initialize_process to'||
931: ' initialize the table for processing ');
932: END IF ;
933:
934: --
996: RAISE_APPLICATION_ERROR(-20002, 'The table '||p_Schema||'.'||p_Table_Name||
997: ' is not a deferred table. ');
998: END re_enable_table;
999:
1000: END Ad_LongToLob_Pkg;