DBA Data[Home] [Help]

APPS.WSH_OPM_CONV_MIG_PKG dependencies on GMA_COMMON_LOGGING

Line 70: gma_common_logging.gma_migration_central_log (

66: AND (ictran.lot_id >0 )
67: ;
68: BEGIN
69: /* Begin by logging a message that reason_code migration has started */
70: gma_common_logging.gma_migration_central_log (
71: p_run_id => p_migration_run_id
72: , p_log_level => FND_LOG.LEVEL_PROCEDURE
73: , p_app_short_name => 'WSH'
74: , p_message_token => 'WSH_MIGRATION_TABLE_STARTED'

Line 122: gma_common_logging.gma_migration_central_log (

118: EXCEPTION
119: WHEN OTHERS THEN
120: /* Failure count goes up by 1 */
121: l_failure_count := l_failure_count+1;
122: gma_common_logging.gma_migration_central_log (
123: p_run_id => p_migration_run_id
124: , p_log_level => FND_LOG.LEVEL_UNEXPECTED
125: , p_app_short_name =>'WSH'
126: , p_message_token => 'WSH_MIGRATION_DB_ERROR'

Line 134: gma_common_logging.gma_migration_central_log (

130: );
131: End;
132: End Loop;
133: /* End by logging a message that the migration has been succesful */
134: gma_common_logging.gma_migration_central_log (
135: p_run_id => p_migration_run_id
136: , p_log_level => FND_LOG.LEVEL_PROCEDURE
137: , p_app_short_name => 'WSH'
138: , p_message_token => 'WSH_MIGRATION_TABLE_SUCCESS'