DBA Data[Home] [Help]

APPS.GMS_ERROR_PKG dependencies on FND_LOG

Line 29: l_log_level NUMBER DEFAULT FND_LOG.LEVEL_PROCEDURE; --For bug 3269365

25: x_err_buff IN OUT NOCOPY VARCHAR2)
26: IS
27:
28: x_err_buff_1 varchar2(2000);
29: l_log_level NUMBER DEFAULT FND_LOG.LEVEL_PROCEDURE; --For bug 3269365
30: BEGIN
31: x_err_code := 0; -- Initialize the value to 0 (Success)
32:
33: if x_err_name = 'GMS_UNEXPECTED_ERROR'

Line 46: l_log_level := FND_LOG.LEVEL_EXCEPTION; --For bug 3269365

42: fnd_message.set_token(x_token_name5, x_token_val5);
43: end if;
44:
45: x_err_code := 1; -- Unexpected Error
46: l_log_level := FND_LOG.LEVEL_EXCEPTION; --For bug 3269365
47: else
48: fnd_message.set_name('GMS', x_err_name);
49: IF x_token_name1 IS NOT NULL THEN
50: fnd_message.set_token(x_token_name1, x_token_val1);

Line 69: IF l_log_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN

65: x_err_code := 2; -- Expected Error
66:
67: end if;
68: --For bug 3269365: Common logging
69: IF l_log_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
70: FND_LOG.MESSAGE(l_log_level,'gms.plsql.gms',FALSE);
71: END IF;
72: --End of bug 3269365
73:

Line 70: FND_LOG.MESSAGE(l_log_level,'gms.plsql.gms',FALSE);

66:
67: end if;
68: --For bug 3269365: Common logging
69: IF l_log_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL THEN
70: FND_LOG.MESSAGE(l_log_level,'gms.plsql.gms',FALSE);
71: END IF;
72: --End of bug 3269365
73:
74: if G_EXEC_TYPE = 'C'

Line 120: -- shall log messages into fnd_log_messages

116: end if;
117:
118: ---FOR bug 3269365-Introduced the check for Common logging for ATG projects. When the AFLOG_LEVEL is set to
119: --any level greater than PROCEDURE and GMS DEBUG profile is ON then the following code
120: -- shall log messages into fnd_log_messages
121:
122: IF( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
123: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'gms.plsql.gms',l_debug_msg);
124: END IF;

Line 122: IF( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then

118: ---FOR bug 3269365-Introduced the check for Common logging for ATG projects. When the AFLOG_LEVEL is set to
119: --any level greater than PROCEDURE and GMS DEBUG profile is ON then the following code
120: -- shall log messages into fnd_log_messages
121:
122: IF( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
123: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'gms.plsql.gms',l_debug_msg);
124: END IF;
125: --End of bug 3269365
126:

Line 123: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'gms.plsql.gms',l_debug_msg);

119: --any level greater than PROCEDURE and GMS DEBUG profile is ON then the following code
120: -- shall log messages into fnd_log_messages
121:
122: IF( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) then
123: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'gms.plsql.gms',l_debug_msg);
124: END IF;
125: --End of bug 3269365
126:
127: END gms_debug;