DBA Data[Home] [Help]

APPS.OZF_ASSIGNMENT_QUALIFIER_PUB dependencies on FND_MSG_PUB

Line 13: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);

9:
10: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OZF_ASSIGNMENT_QUALIFIER_PUB';
11: G_FILE_NAME CONSTANT VARCHAR2(15) := 'ozfpasqb.pls';
12:
13: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
14:
15: ---------------------------------------------------------------------
16: -- PROCEDURE
17: -- get_claim_type

Line 196: FND_MSG_PUB.initialize;

192: END IF;
193:
194: -- Initialize message list if p_init_msg_list is set to TRUE.
195: IF FND_API.to_Boolean( p_init_msg_list ) THEN
196: FND_MSG_PUB.initialize;
197: END IF;
198:
199: -- Debug Message
200: IF OZF_DEBUG_LOW_ON THEN

Line 203: FND_MSG_PUB.Add;

199: -- Debug Message
200: IF OZF_DEBUG_LOW_ON THEN
201: FND_MESSAGE.Set_Name('OZF','OZF_API_DEBUG_MESSAGE');
202: FND_MESSAGE.Set_Token('TEXT',l_full_name||': Start');
203: FND_MSG_PUB.Add;
204: END IF;
205:
206: -- Initialize API return status to SUCCESS
207: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 270: FND_MSG_PUB.Add;

266: -- Debug Message
267: IF OZF_DEBUG_LOW_ON THEN
268: FND_MESSAGE.Set_Name('OZF','OZF_API_DEBUG_MESSAGE');
269: FND_MESSAGE.Set_Token('TEXT',l_full_name||': End');
270: FND_MSG_PUB.Add;
271: END IF;
272:
273: -- Standard call to get message count and if count is 1, get message info.
274: FND_MSG_PUB.Count_And_Get(

Line 274: FND_MSG_PUB.Count_And_Get(

270: FND_MSG_PUB.Add;
271: END IF;
272:
273: -- Standard call to get message count and if count is 1, get message info.
274: FND_MSG_PUB.Count_And_Get(
275: p_count => x_msg_count,
276: p_data => x_msg_data
277: );
278:

Line 284: FND_MSG_PUB.Count_And_Get (

280: WHEN FND_API.G_EXC_ERROR THEN
281: ROLLBACK TO GET_DED_VAL_PUB;
282: x_return_status := FND_API.G_RET_STS_ERROR;
283: -- Standard call to get message count and if count=1, get the message
284: FND_MSG_PUB.Count_And_Get (
285: p_encoded => FND_API.G_FALSE,
286: p_count => x_msg_count,
287: p_data => x_msg_data
288: );

Line 293: FND_MSG_PUB.Count_And_Get (

289: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
290: ROLLBACK TO GET_DED_VAL_PUB;
291: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
292: -- Standard call to get message count and if count=1, get the message
293: FND_MSG_PUB.Count_And_Get (
294: p_encoded => FND_API.G_FALSE,
295: p_count => x_msg_count,
296: p_data => x_msg_data
297: );

Line 301: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

297: );
298: WHEN OTHERS THEN
299: ROLLBACK TO GET_DED_VAL_PUBP;
300: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
301: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
302: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_ASS_QUA_ERR');
303: FND_MSG_PUB.add;
304: END IF;
305:

Line 303: FND_MSG_PUB.add;

299: ROLLBACK TO GET_DED_VAL_PUBP;
300: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
301: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
302: FND_MESSAGE.set_name('OZF', 'OZF_CLAIM_ASS_QUA_ERR');
303: FND_MSG_PUB.add;
304: END IF;
305:
306: -- Standard call to get message count and if count=1, get the message
307: FND_MSG_PUB.Count_And_Get (

Line 307: FND_MSG_PUB.Count_And_Get (

303: FND_MSG_PUB.add;
304: END IF;
305:
306: -- Standard call to get message count and if count=1, get the message
307: FND_MSG_PUB.Count_And_Get (
308: p_encoded => FND_API.G_FALSE,
309: p_count => x_msg_count,
310: p_data => x_msg_data
311: );