DBA Data[Home] [Help]

APPS.PV_CONTEXT_VALUES dependencies on DBMS_APPLICATION_INFO

Line 313: dbms_application_info.set_client_info(

309:
310: -- -----------------------------------------------------------------------
311: -- Code Instrumentation
312: -- -----------------------------------------------------------------------
313: dbms_application_info.set_client_info(
314: client_info => 'p_new_partners_only = ' || p_new_partners_only || ' | ' ||
315: 'p_log_to_file = ' || p_log_to_file
316: );
317:

Line 318: dbms_application_info.set_module(

314: client_info => 'p_new_partners_only = ' || p_new_partners_only || ' | ' ||
315: 'p_log_to_file = ' || p_log_to_file
316: );
317:
318: dbms_application_info.set_module(
319: module_name => g_module_name,
320: action_name => 'STARTUP'
321: );
322:

Line 423: dbms_application_info.set_module(

419: -- -----------------------------------------------------------------------
420: l_start := dbms_utility.get_time;
421: Debug('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
422: Debug('Pre-Processing....................................................');
423: dbms_application_info.set_module(
424: module_name => g_module_name,
425: action_name => 'Pre-Processing'
426: );
427:

Line 480: dbms_application_info.set_module(

476: -- *****************************************************************
477: -- *****************************************************************
478: Debug('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
479: Debug('Processing attributes that do not need to be refreshed................');
480: dbms_application_info.set_module(
481: module_name => g_module_name,
482: action_name => 'Processing Non-Refreshables'
483: );
484:

Line 553: dbms_application_info.set_module(

549: -- *****************************************************************
550: -- *****************************************************************
551: Debug('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
552: Debug('Processing Functional Expertise......................................');
553: dbms_application_info.set_module(
554: module_name => g_module_name,
555: action_name => 'Functional Attributes'
556: );
557:

Line 577: dbms_application_info.set_module(

573: -- *****************************************************************
574: -- *****************************************************************
575: Debug('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
576: Debug('Processing internal attributes.............................');
577: dbms_application_info.set_module(
578: module_name => g_module_name,
579: action_name => 'Internal Attributes'
580: );
581:

Line 597: dbms_application_info.set_module(

593: Debug('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
594: Debug('-- **********************************************************');
595: Debug('-- Processing derived/performance attributes.............................');
596: Debug('-- **********************************************************');
597: dbms_application_info.set_module(
598: module_name => g_module_name,
599: action_name => 'Derived/Perf Attributes'
600: );
601:

Line 734: dbms_application_info.set_module(

730: -- *****************************************************************
731: -- *****************************************************************
732: Debug('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
733: Debug('Processing external attributes.........................................');
734: dbms_application_info.set_module(
735: module_name => g_module_name,
736: action_name => 'External Attributes'
737: );
738:

Line 752: dbms_application_info.set_module(

748: -- *****************************************************************
749: l_start := dbms_utility.get_time;
750: Debug('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
751: Debug('Post loading processing...............................................');
752: dbms_application_info.set_module(
753: module_name => g_module_name,
754: action_name => 'Post Processing'
755: );
756:

Line 1169: dbms_application_info.set_module(

1165: -- --------------------------------------------------------------
1166: -- Recreate unique indexes and rebuild nonunique indexes.
1167: -- --------------------------------------------------------------
1168: l_start := dbms_utility.get_time;
1169: dbms_application_info.set_module(
1170: module_name => p_module_name,
1171: action_name => 'Post: Rebuild Indexes'
1172: );
1173: Debug('Recreate and rebuild indexes on the mirror table AND');

Line 1185: dbms_application_info.set_module(

1181:
1182: -- --------------------------------------------------------------
1183: -- Analyze the mirror table.
1184: -- --------------------------------------------------------------
1185: dbms_application_info.set_module(
1186: module_name => p_module_name,
1187: action_name => 'Post: Analyze Tables'
1188: );
1189: Debug('Elapsed Time: ' || (DBMS_UTILITY.get_time - l_start) || ' hsec');

Line 1206: dbms_application_info.set_module(

1202:
1203: -- --------------------------------------------------------------
1204: -- Rename synonyms.
1205: -- --------------------------------------------------------------
1206: dbms_application_info.set_module(
1207: module_name => p_module_name,
1208: action_name => 'Post: Swapping Synonyms'
1209: );
1210: Debug('Synonym swapping and other post processing activities...');

Line 1225: dbms_application_info.set_module(

1221:
1222: -- --------------------------------------------------------------
1223: -- Recompile invalid dependent package bodies.
1224: -- --------------------------------------------------------------
1225: dbms_application_info.set_module(
1226: module_name => g_module_name,
1227: action_name => 'Post: Compile Dependencies'
1228: );
1229: Debug('Recompile invalid dependent package bodies...');

Line 1242: dbms_application_info.set_module(

1238:
1239: -- --------------------------------------------------------------
1240: -- Truncate the "search" table.
1241: -- --------------------------------------------------------------
1242: dbms_application_info.set_module(
1243: module_name => p_module_name,
1244: action_name => 'Post: Truncate Table'
1245: );
1246: Debug('Truncate the search table...');

Line 1431: dbms_application_info.set_module(

1427: l_insert_body VARCHAR2(1000);
1428: l_ddl_str VARCHAR2(4000);
1429:
1430: BEGIN
1431: dbms_application_info.set_module(
1432: module_name => g_module_name,
1433: action_name => 'Inside Attribute ID 1'
1434: );
1435:

Line 1496: dbms_application_info.set_module(

1492:
1493: -- ---------------------------------------------------------------
1494: -- Update timestamp
1495: -- ---------------------------------------------------------------
1496: dbms_application_info.set_module(
1497: module_name => g_module_name,
1498: action_name => 'Timestamp Attribute ID 1'
1499: );
1500:

Line 1648: dbms_application_info.set_module(

1644: Debug('-- **********************************************************');
1645: Debug('-- Processing internal CURRENCY attributes...');
1646: Debug('-- **********************************************************');
1647:
1648: dbms_application_info.set_module(
1649: module_name => g_module_name,
1650: action_name => 'Internal - CURRENCY'
1651: );
1652:

Line 1863: dbms_application_info.set_module(

1859: Debug('-- **********************************************************');
1860: Debug('-- Processing Internal Number attributes...');
1861: Debug('-- **********************************************************');
1862:
1863: dbms_application_info.set_module(
1864: module_name => g_module_name,
1865: action_name => 'Internal - NUMBER'
1866: );
1867:

Line 1976: dbms_application_info.set_module(

1972: l_start := dbms_utility.get_time;
1973: Debug('-- **********************************************************');
1974: Debug('-- Processing internal OTHER attributes...');
1975: Debug('-- **********************************************************');
1976: dbms_application_info.set_module(
1977: module_name => g_module_name,
1978: action_name => 'Internal - OTHER'
1979: );
1980:

Line 2104: dbms_application_info.set_module(

2100: l_start := dbms_utility.get_time;
2101: Debug('-- **********************************************************');
2102: Debug('-- Processing internal NUMBER attributes...');
2103: Debug('-- **********************************************************');
2104: dbms_application_info.set_module(
2105: module_name => g_module_name,
2106: action_name => 'Internal - NUMBER'
2107: );
2108:

Line 2188: dbms_application_info.set_module(

2184: l_start := dbms_utility.get_time;
2185: Debug('-- **********************************************************');
2186: Debug('-- Processing internal OTHER attributes...');
2187: Debug('-- **********************************************************');
2188: dbms_application_info.set_module(
2189: module_name => g_module_name,
2190: action_name => 'Internal - OTHER'
2191: );
2192:

Line 2413: dbms_application_info.set_module(

2409: l_start := dbms_utility.get_time;
2410: Debug('-- **********************************************************');
2411: Debug('-- Processing External NUMBER and CURRENCY attributes...');
2412: Debug('-- **********************************************************');
2413: dbms_application_info.set_module(
2414: module_name => g_module_name,
2415: action_name => 'External - NUM/CURRENCY'
2416: );
2417:

Line 2727: dbms_application_info.set_module(

2723: Debug('-- **********************************************************');
2724: Debug('-- Processing External OTHER attributes...');
2725: Debug('-- **********************************************************');
2726:
2727: dbms_application_info.set_module(
2728: module_name => g_module_name,
2729: action_name => 'External - OTHER'
2730: );
2731: