DBA Data[Home] [Help]

APPS.FA_SRVR_MSG dependencies on FA_SRVR_MSG

Line 1: PACKAGE BODY FA_SRVR_MSG as

1: PACKAGE BODY FA_SRVR_MSG as
2: /* $Header: FASMESGB.pls 120.8 2009/03/27 08:24:40 bridgway ship $ */
3:
4: g_log_statement_level NUMBER := FND_LOG.LEVEL_STATEMENT;
5: g_log_procedure_level NUMBER := FND_LOG.LEVEL_PROCEDURE;

Line 48: FA_SRVR_MSG.FA_ERROR_LEVEL := 1;

44:
45: BEGIN
46:
47: -- reset the global FA_ERROR_LEVEL to 1
48: FA_SRVR_MSG.FA_ERROR_LEVEL := 1;
49:
50: -- insert sql error for unexpected database error to stack
51: fnd_message.set_name('OFA','FA_SHARED_ORACLE_ERR');
52: fnd_message.set_token('ORACLE_ERR',SQLERRM);

Line 131: if (FA_SRVR_MSG.FA_ERROR_LEVEL = 1 or

127: -- BMR: also check if the calling fn is null as we don't
128: -- want excessive/bogus errors when debug is enabled
129: -- when displaying a "success" message (bug2247611)
130:
131: if (FA_SRVR_MSG.FA_ERROR_LEVEL = 1 or
132: g_log_procedure_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
133: fnd_message.set_name('OFA', 'FA_SHARED_ERROR_CALL');
134: fnd_message.set_token('CALLING_FN', calling_fn, translate);
135: fnd_msg_pub.add;

Line 245: END FA_SRVR_MSG;

241: end if;
242:
243: END Write_Msg_Log;
244:
245: END FA_SRVR_MSG;