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 1147: dbms_application_info.set_module(

1143: -- --------------------------------------------------------------
1144: -- Recreate unique indexes and rebuild nonunique indexes.
1145: -- --------------------------------------------------------------
1146: l_start := dbms_utility.get_time;
1147: dbms_application_info.set_module(
1148: module_name => p_module_name,
1149: action_name => 'Post: Rebuild Indexes'
1150: );
1151: Debug('Recreate and rebuild indexes on the mirror table AND');

Line 1163: dbms_application_info.set_module(

1159:
1160: -- --------------------------------------------------------------
1161: -- Analyze the mirror table.
1162: -- --------------------------------------------------------------
1163: dbms_application_info.set_module(
1164: module_name => p_module_name,
1165: action_name => 'Post: Analyze Tables'
1166: );
1167: Debug('Elapsed Time: ' || (DBMS_UTILITY.get_time - l_start) || ' hsec');

Line 1184: dbms_application_info.set_module(

1180:
1181: -- --------------------------------------------------------------
1182: -- Rename synonyms.
1183: -- --------------------------------------------------------------
1184: dbms_application_info.set_module(
1185: module_name => p_module_name,
1186: action_name => 'Post: Swapping Synonyms'
1187: );
1188: Debug('Synonym swapping and other post processing activities...');

Line 1203: dbms_application_info.set_module(

1199:
1200: -- --------------------------------------------------------------
1201: -- Recompile invalid dependent package bodies.
1202: -- --------------------------------------------------------------
1203: dbms_application_info.set_module(
1204: module_name => g_module_name,
1205: action_name => 'Post: Compile Dependencies'
1206: );
1207: Debug('Recompile invalid dependent package bodies...');

Line 1220: dbms_application_info.set_module(

1216:
1217: -- --------------------------------------------------------------
1218: -- Truncate the "search" table.
1219: -- --------------------------------------------------------------
1220: dbms_application_info.set_module(
1221: module_name => p_module_name,
1222: action_name => 'Post: Truncate Table'
1223: );
1224: Debug('Truncate the search table...');

Line 1409: dbms_application_info.set_module(

1405: l_insert_body VARCHAR2(1000);
1406: l_ddl_str VARCHAR2(4000);
1407:
1408: BEGIN
1409: dbms_application_info.set_module(
1410: module_name => g_module_name,
1411: action_name => 'Inside Attribute ID 1'
1412: );
1413:

Line 1474: dbms_application_info.set_module(

1470:
1471: -- ---------------------------------------------------------------
1472: -- Update timestamp
1473: -- ---------------------------------------------------------------
1474: dbms_application_info.set_module(
1475: module_name => g_module_name,
1476: action_name => 'Timestamp Attribute ID 1'
1477: );
1478:

Line 1626: dbms_application_info.set_module(

1622: Debug('-- **********************************************************');
1623: Debug('-- Processing internal CURRENCY attributes...');
1624: Debug('-- **********************************************************');
1625:
1626: dbms_application_info.set_module(
1627: module_name => g_module_name,
1628: action_name => 'Internal - CURRENCY'
1629: );
1630:

Line 1841: dbms_application_info.set_module(

1837: Debug('-- **********************************************************');
1838: Debug('-- Processing Internal Number attributes...');
1839: Debug('-- **********************************************************');
1840:
1841: dbms_application_info.set_module(
1842: module_name => g_module_name,
1843: action_name => 'Internal - NUMBER'
1844: );
1845:

Line 1954: dbms_application_info.set_module(

1950: l_start := dbms_utility.get_time;
1951: Debug('-- **********************************************************');
1952: Debug('-- Processing internal OTHER attributes...');
1953: Debug('-- **********************************************************');
1954: dbms_application_info.set_module(
1955: module_name => g_module_name,
1956: action_name => 'Internal - OTHER'
1957: );
1958:

Line 2082: dbms_application_info.set_module(

2078: l_start := dbms_utility.get_time;
2079: Debug('-- **********************************************************');
2080: Debug('-- Processing internal NUMBER attributes...');
2081: Debug('-- **********************************************************');
2082: dbms_application_info.set_module(
2083: module_name => g_module_name,
2084: action_name => 'Internal - NUMBER'
2085: );
2086:

Line 2166: dbms_application_info.set_module(

2162: l_start := dbms_utility.get_time;
2163: Debug('-- **********************************************************');
2164: Debug('-- Processing internal OTHER attributes...');
2165: Debug('-- **********************************************************');
2166: dbms_application_info.set_module(
2167: module_name => g_module_name,
2168: action_name => 'Internal - OTHER'
2169: );
2170:

Line 2391: dbms_application_info.set_module(

2387: l_start := dbms_utility.get_time;
2388: Debug('-- **********************************************************');
2389: Debug('-- Processing External NUMBER and CURRENCY attributes...');
2390: Debug('-- **********************************************************');
2391: dbms_application_info.set_module(
2392: module_name => g_module_name,
2393: action_name => 'External - NUM/CURRENCY'
2394: );
2395:

Line 2705: dbms_application_info.set_module(

2701: Debug('-- **********************************************************');
2702: Debug('-- Processing External OTHER attributes...');
2703: Debug('-- **********************************************************');
2704:
2705: dbms_application_info.set_module(
2706: module_name => g_module_name,
2707: action_name => 'External - OTHER'
2708: );
2709: