DBA Data[Home] [Help]

APPS.INL_RULE_GRP dependencies on FND_MSG_PUB

Line 51: FND_MSG_PUB.initialize;

47: p_procedure_name => l_api_name) ;
48:
49: -- Initialize message list if p_init_msg_list is set to TRUE.
50: IF FND_API.to_Boolean(p_init_msg_list) THEN
51: FND_MSG_PUB.initialize;
52: END IF;
53:
54: -- Standard call to check for call compatibility
55: IF NOT FND_API.Compatible_API_Call(p_current_version_number => l_api_version,

Line 103: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,

99: p_var_name => 'l_check_condition',
100: p_var_value => l_check_condition);
101:
102: -- Standard call to get message count and if count is 1, get message info.
103: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
104: p_count => x_msg_count,
105: p_data => x_msg_data);
106:
107: -- Standard End of Procedure/Function Logging

Line 119: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,

115: -- Standard Expected Error Logging
116: INL_LOGGING_PVT.Log_ExpecError(p_module_name => g_module_name,
117: p_procedure_name => l_api_name);
118: x_return_status := FND_API.G_RET_STS_ERROR;
119: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
120: p_count => x_msg_count,
121: p_data => x_msg_data);
122: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
123: -- Standard Unexpected Error Logging

Line 127: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,

123: -- Standard Unexpected Error Logging
124: INL_LOGGING_PVT.Log_UnexpecError(p_module_name => g_module_name,
125: p_procedure_name => l_api_name);
126: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
127: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
128: p_count => x_msg_count,
129: p_data => x_msg_data);
130: WHEN OTHERS THEN
131: -- Standard Unexpected Error Logging

Line 135: IF FND_MSG_PUB.Check_Msg_Level(

131: -- Standard Unexpected Error Logging
132: INL_LOGGING_PVT.Log_UnexpecError(p_module_name => g_module_name,
133: p_procedure_name => l_api_name);
134: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
135: IF FND_MSG_PUB.Check_Msg_Level(
136: p_message_level => FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
137: FND_MSG_PUB.Add_Exc_Msg(p_pkg_name => g_pkg_name,
138: p_procedure_name => l_api_name);
139: END IF;

Line 136: p_message_level => FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

132: INL_LOGGING_PVT.Log_UnexpecError(p_module_name => g_module_name,
133: p_procedure_name => l_api_name);
134: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
135: IF FND_MSG_PUB.Check_Msg_Level(
136: p_message_level => FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
137: FND_MSG_PUB.Add_Exc_Msg(p_pkg_name => g_pkg_name,
138: p_procedure_name => l_api_name);
139: END IF;
140: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,

Line 137: FND_MSG_PUB.Add_Exc_Msg(p_pkg_name => g_pkg_name,

133: p_procedure_name => l_api_name);
134: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
135: IF FND_MSG_PUB.Check_Msg_Level(
136: p_message_level => FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
137: FND_MSG_PUB.Add_Exc_Msg(p_pkg_name => g_pkg_name,
138: p_procedure_name => l_api_name);
139: END IF;
140: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
141: p_count => x_msg_count,

Line 140: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,

136: p_message_level => FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
137: FND_MSG_PUB.Add_Exc_Msg(p_pkg_name => g_pkg_name,
138: p_procedure_name => l_api_name);
139: END IF;
140: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
141: p_count => x_msg_count,
142: p_data => x_msg_data);
143: END Check_Condition;
144: END INL_RULE_GRP;