DBA Data[Home] [Help]

APPS.FA_SRVR_MSG dependencies on FND_MESSAGE

Line 43: fnd_message.set_name('OFA','FA_SHARED_ORACLE_ERR');

39: -- reset the global FA_ERROR_LEVEL to 1
40: FA_SRVR_MSG.FA_ERROR_LEVEL := 1;
41:
42: -- insert sql error for unexpected database error to stack
43: fnd_message.set_name('OFA','FA_SHARED_ORACLE_ERR');
44: fnd_message.set_token('ORACLE_ERR',SQLERRM);
45:
46: if (FND_LOG.LEVEL_UNEXPECTED >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
47: G_calling_routine := 'FA.PLSQL.'||calling_fn;

Line 44: fnd_message.set_token('ORACLE_ERR',SQLERRM);

40: FA_SRVR_MSG.FA_ERROR_LEVEL := 1;
41:
42: -- insert sql error for unexpected database error to stack
43: fnd_message.set_name('OFA','FA_SHARED_ORACLE_ERR');
44: fnd_message.set_token('ORACLE_ERR',SQLERRM);
45:
46: if (FND_LOG.LEVEL_UNEXPECTED >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
47: G_calling_routine := 'FA.PLSQL.'||calling_fn;
48: FND_LOG.MESSAGE (FND_LOG.LEVEL_UNEXPECTED,g_calling_routine,FALSE);

Line 82: fnd_message.set_name(application, name); --enhanced for cua

78: ) IS
79: BEGIN
80:
81: if name is not null then
82: fnd_message.set_name(application, name); --enhanced for cua
83: if (token1 is not null) then
84: fnd_message.set_token(token1, value1, translate);
85: end if;
86: if (token2 is not null) then

Line 84: fnd_message.set_token(token1, value1, translate);

80:
81: if name is not null then
82: fnd_message.set_name(application, name); --enhanced for cua
83: if (token1 is not null) then
84: fnd_message.set_token(token1, value1, translate);
85: end if;
86: if (token2 is not null) then
87: fnd_message.set_token(token2, value2, translate);
88: end if;

Line 87: fnd_message.set_token(token2, value2, translate);

83: if (token1 is not null) then
84: fnd_message.set_token(token1, value1, translate);
85: end if;
86: if (token2 is not null) then
87: fnd_message.set_token(token2, value2, translate);
88: end if;
89: if (token3 is not null) then
90: fnd_message.set_token(token3, value3, translate);
91: end if;

Line 90: fnd_message.set_token(token3, value3, translate);

86: if (token2 is not null) then
87: fnd_message.set_token(token2, value2, translate);
88: end if;
89: if (token3 is not null) then
90: fnd_message.set_token(token3, value3, translate);
91: end if;
92: if (token4 is not null) then
93: fnd_message.set_token(token4, value4, translate);
94: end if;

Line 93: fnd_message.set_token(token4, value4, translate);

89: if (token3 is not null) then
90: fnd_message.set_token(token3, value3, translate);
91: end if;
92: if (token4 is not null) then
93: fnd_message.set_token(token4, value4, translate);
94: end if;
95: if (token5 is not null) then
96: fnd_message.set_token(token5, value5, translate);
97: end if;

Line 96: fnd_message.set_token(token5, value5, translate);

92: if (token4 is not null) then
93: fnd_message.set_token(token4, value4, translate);
94: end if;
95: if (token5 is not null) then
96: fnd_message.set_token(token5, value5, translate);
97: end if;
98:
99: G_calling_routine := 'FA.PLSQL.'||calling_fn;
100:

Line 129: fnd_message.set_name('OFA', 'FA_SHARED_ERROR_CALL');

125:
126: if (calling_fn is not null and
127: (FA_SRVR_MSG.FA_ERROR_LEVEL = 1 or
128: FA_SRVR_MSG.FA_MSG_DEBUG = 'YES')) then
129: fnd_message.set_name('OFA', 'FA_SHARED_ERROR_CALL');
130: fnd_message.set_token('CALLING_FN', calling_fn, translate);
131: fnd_msg_pub.add;
132: end if;
133:

Line 130: fnd_message.set_token('CALLING_FN', calling_fn, translate);

126: if (calling_fn is not null and
127: (FA_SRVR_MSG.FA_ERROR_LEVEL = 1 or
128: FA_SRVR_MSG.FA_MSG_DEBUG = 'YES')) then
129: fnd_message.set_name('OFA', 'FA_SHARED_ERROR_CALL');
130: fnd_message.set_token('CALLING_FN', calling_fn, translate);
131: fnd_msg_pub.add;
132: end if;
133:
134: END add_message;