DBA Data[Home] [Help]

APPS.XLA_CMP_CREATE_PKG dependencies on APPS_DDL

Line 20: | and APPS_DDL to create PL/SQL packages |

16: | HISTORY |
17: | 25-JUN-2002 K.Boussema Created |
18: | 22-APR-2003 K.Boussema Included error messages |
19: | 22-JAN-2004 K.Boussema Changed to call the standards APPS_ARRAY_DDL |
20: | and APPS_DDL to create PL/SQL packages |
21: | 23-FEB-2004 K.Boussema Made changes for the FND_LOG. |
22: | 22-MAR-2004 K.Boussema Added a parameter p_module to the TRACE calls|
23: | and the procedure. |
24: | 11-MAY-2004 K.Boussema Removed the call to XLA trace routine from |

Line 656: (p_msg => '-> CALL APPS_DDL.apps_ddl API'

652: --
653: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
654:
655: trace
656: (p_msg => '-> CALL APPS_DDL.apps_ddl API'
657: ,p_level => C_LEVEL_PROCEDURE
658: ,p_module => l_log_module);
659:
660: END IF;

Line 662: APPS_DDL.apps_ddl(ddl_text => p_package_text);

658: ,p_module => l_log_module);
659:
660: END IF;
661: --
662: APPS_DDL.apps_ddl(ddl_text => p_package_text);
663:
664: --
665: /*
666: dump_package( p_package_name => p_package_name

Line 983: APPS_DDL.apps_ddl( ddl_text => p_ddl_text );

979: END IF;
980:
981: IF p_object_owner IS NULL
982: THEN
983: APPS_DDL.apps_ddl( ddl_text => p_ddl_text );
984: ELSE
985:
986: l_sql_stmt := 'BEGIN ' || p_object_owner || '.APPS_DDL.apps_ddl( ddl_text => ''' ||
987: p_ddl_text || ''' );' || ' END;';

Line 986: l_sql_stmt := 'BEGIN ' || p_object_owner || '.APPS_DDL.apps_ddl( ddl_text => ''' ||

982: THEN
983: APPS_DDL.apps_ddl( ddl_text => p_ddl_text );
984: ELSE
985:
986: l_sql_stmt := 'BEGIN ' || p_object_owner || '.APPS_DDL.apps_ddl( ddl_text => ''' ||
987: p_ddl_text || ''' );' || ' END;';
988:
989: IF (C_LEVEL_STATEMENT >= g_log_level) THEN
990: trace