DBA Data[Home] [Help]

APPS.EAM_UTILITY_GRP dependencies on FND_MSG_PUB

Line 110: FND_MSG_PUB.initialize;

106: -- Initialize message list if p_init_msg_list is set to TRUE
107: ---------------------------------------------------------------------------
108:
109: IF FND_API.to_Boolean(p_init_msg_list) THEN
110: FND_MSG_PUB.initialize;
111: END IF;
112:
113:
114: -------------------------------------------------------------------------

Line 138: FND_MSG_PUB.ADD_EXC_MSG('EAM_UTILITY_GRP', 'Get_ReplacedRebuild('

134: ||TO_CHAR(l_entity_type)
135: ||' WIP Entity: '
136: ||TO_CHAR(p_wip_entity_id);
137:
138: FND_MSG_PUB.ADD_EXC_MSG('EAM_UTILITY_GRP', 'Get_ReplacedRebuild('
139: ||TO_CHAR(l_stmt_num)
140: ||'): ', l_api_message);
141: RAISE FND_API.g_exc_error;
142: END IF;

Line 176: FND_MSG_PUB.Count_And_Get (

172: ---------------------------------------------------------------------------
173: -- Standard Call to get message count and if count = 1, get message info
174: ---------------------------------------------------------------------------
175:
176: FND_MSG_PUB.Count_And_Get (
177: p_count => x_msg_count,
178: p_data => x_msg_data );
179:
180: EXCEPTION

Line 186: fnd_msg_pub.count_and_get

182: WHEN fnd_api.g_exc_error THEN
183: x_return_status := fnd_api.g_ret_sts_error;
184:
185: -- Get message count and data
186: fnd_msg_pub.count_and_get
187: ( p_count => x_msg_count
188: , p_data => x_msg_data
189: );
190: --

Line 195: fnd_msg_pub.count_and_get

191: WHEN fnd_api.g_exc_unexpected_error THEN
192: x_return_status := fnd_api.g_ret_sts_unexp_error ;
193:
194: -- Get message count and data
195: fnd_msg_pub.count_and_get
196: ( p_count => x_msg_count
197: , p_data => x_msg_data
198: );
199:

Line 203: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)

199:
200: WHEN OTHERS THEN
201: x_return_status := fnd_api.g_ret_sts_unexp_error ;
202: --
203: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)
204: THEN
205: fnd_msg_pub.add_exc_msg
206: ( 'EAM_UTILITY_GRP'
207: , 'Get_ReplacedRebuilds : l_stmt_num - '||to_char(l_stmt_num)

Line 205: fnd_msg_pub.add_exc_msg

201: x_return_status := fnd_api.g_ret_sts_unexp_error ;
202: --
203: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)
204: THEN
205: fnd_msg_pub.add_exc_msg
206: ( 'EAM_UTILITY_GRP'
207: , 'Get_ReplacedRebuilds : l_stmt_num - '||to_char(l_stmt_num)
208: );
209:

Line 212: fnd_msg_pub.count_and_get

208: );
209:
210: END IF;
211: -- Get message count and data
212: fnd_msg_pub.count_and_get
213: ( p_count => x_msg_count
214: , p_data => x_msg_data
215: );
216: