DBA Data[Home] [Help]

APPS.XLA_CMP_CREATE_PKG dependencies on APPS_ARRAY_DDL

Line 19: | 22-JAN-2004 K.Boussema Changed to call the standards APPS_ARRAY_DDL |

15: | |
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. |

Line 495: APPS_ARRAY_DDL.glprogtext := p_package_text;

491: -- Init
492: --
493: l_lb := NVL(p_package_text.FIRST,0);
494: l_ub := NVL(p_package_text.LAST ,0);
495: APPS_ARRAY_DDL.glprogtext := p_package_text;
496: l_change_optimize_flag := FALSE;
497: --
498:
499: IF (p_package_text.COUNT > 130000) THEN

Line 526: -- call apps_array_ddl API to create body package

522:
523:
524:
525: --
526: -- call apps_array_ddl API to create body package
527: --
528: --
529: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
530: trace

Line 531: (p_msg => '-> CALL APPS_ARRAY_DDL.apps_array_ddl API'

527: --
528: --
529: IF (C_LEVEL_PROCEDURE >= g_log_level) THEN
530: trace
531: (p_msg => '-> CALL APPS_ARRAY_DDL.apps_array_ddl API'
532: ,p_level => C_LEVEL_PROCEDURE
533: ,p_module => l_log_module);
534: END IF;
535: APPS_ARRAY_DDL.apps_array_ddl(

Line 535: APPS_ARRAY_DDL.apps_array_ddl(

531: (p_msg => '-> CALL APPS_ARRAY_DDL.apps_array_ddl API'
532: ,p_level => C_LEVEL_PROCEDURE
533: ,p_module => l_log_module);
534: END IF;
535: APPS_ARRAY_DDL.apps_array_ddl(
536: lb => l_lb,
537: ub => l_ub
538: );
539: --

Line 1053: APPS_ARRAY_DDL.glprogtext := p_ddl_text;

1049: l_lb := NVL(p_ddl_text.FIRST,0);
1050: l_ub := NVL(p_ddl_text.LAST ,0);
1051:
1052:
1053: APPS_ARRAY_DDL.glprogtext := p_ddl_text;
1054: APPS_ARRAY_DDL.apps_array_ddl
1055: (
1056: lb => l_lb
1057: ,ub => l_ub

Line 1054: APPS_ARRAY_DDL.apps_array_ddl

1050: l_ub := NVL(p_ddl_text.LAST ,0);
1051:
1052:
1053: APPS_ARRAY_DDL.glprogtext := p_ddl_text;
1054: APPS_ARRAY_DDL.apps_array_ddl
1055: (
1056: lb => l_lb
1057: ,ub => l_ub
1058: );

Line 1188: APPS_ARRAY_DDL.glprogtext := l_dml_text;

1184: l_lb := NVL(l_dml_text.FIRST,0);
1185: l_ub := NVL(l_dml_text.LAST ,0);
1186:
1187:
1188: APPS_ARRAY_DDL.glprogtext := l_dml_text;
1189: APPS_ARRAY_DDL.apps_array_ddl
1190: (
1191: lb => l_lb
1192: ,ub => l_ub

Line 1189: APPS_ARRAY_DDL.apps_array_ddl

1185: l_ub := NVL(l_dml_text.LAST ,0);
1186:
1187:
1188: APPS_ARRAY_DDL.glprogtext := l_dml_text;
1189: APPS_ARRAY_DDL.apps_array_ddl
1190: (
1191: lb => l_lb
1192: ,ub => l_ub
1193: );