DBA Data[Home] [Help]

APPS.OZF_CLAIM_LINES_INT_PUB dependencies on FND_MSG_PUB

Line 20: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);

16:
17: G_PKG_NAME CONSTANT VARCHAR2(30):= 'OZF_Claim_Lines_Int_PUB';
18: G_FILE_NAME CONSTANT VARCHAR2(12) := 'ozfpclib.pls';
19:
20: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
21:
22: PROCEDURE Create_Claim_Lines_Int(
23: p_api_version_number IN NUMBER,
24: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 55: FND_MSG_PUB.initialize;

51:
52: -- Initialize message list if p_init_msg_list is set to TRUE.
53: IF FND_API.to_Boolean( p_init_msg_list )
54: THEN
55: FND_MSG_PUB.initialize;
56: END IF;
57:
58: -- Debug Message
59: IF g_debug THEN

Line 107: FND_MSG_PUB.Count_And_Get

103: OZF_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
104: END IF;
105:
106: -- Standard call to get message count and if count is 1, get message info.
107: FND_MSG_PUB.Count_And_Get
108: (p_count => x_msg_count,
109: p_data => x_msg_data
110: );
111: EXCEPTION

Line 121: FND_MSG_PUB.Count_And_Get (

117: WHEN FND_API.G_EXC_ERROR THEN
118: ROLLBACK TO CREATE_Claim_Lines_Int_PUB;
119: x_return_status := FND_API.G_RET_STS_ERROR;
120: -- Standard call to get message count and if count=1, get the message
121: FND_MSG_PUB.Count_And_Get (
122: p_encoded => FND_API.G_FALSE,
123: p_count => x_msg_count,
124: p_data => x_msg_data
125: );

Line 131: FND_MSG_PUB.Count_And_Get (

127: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
128: ROLLBACK TO CREATE_Claim_Lines_Int_PUB;
129: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
130: -- Standard call to get message count and if count=1, get the message
131: FND_MSG_PUB.Count_And_Get (
132: p_encoded => FND_API.G_FALSE,
133: p_count => x_msg_count,
134: p_data => x_msg_data
135: );

Line 140: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

136:
137: WHEN OTHERS THEN
138: ROLLBACK TO CREATE_Claim_Lines_Int_PUB;
139: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
140: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
141: THEN
142: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
143: END IF;
144: -- Standard call to get message count and if count=1, get the message

Line 142: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

138: ROLLBACK TO CREATE_Claim_Lines_Int_PUB;
139: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
140: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
141: THEN
142: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
143: END IF;
144: -- Standard call to get message count and if count=1, get the message
145: FND_MSG_PUB.Count_And_Get (
146: p_encoded => FND_API.G_FALSE,

Line 145: FND_MSG_PUB.Count_And_Get (

141: THEN
142: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
143: END IF;
144: -- Standard call to get message count and if count=1, get the message
145: FND_MSG_PUB.Count_And_Get (
146: p_encoded => FND_API.G_FALSE,
147: p_count => x_msg_count,
148: p_data => x_msg_data
149: );

Line 187: FND_MSG_PUB.initialize;

183:
184: -- Initialize message list if p_init_msg_list is set to TRUE.
185: IF FND_API.to_Boolean( p_init_msg_list )
186: THEN
187: FND_MSG_PUB.initialize;
188: END IF;
189:
190: -- Debug Message
191: IF g_debug THEN

Line 237: FND_MSG_PUB.Count_And_Get

233: OZF_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
234: END IF;
235:
236: -- Standard call to get message count and if count is 1, get message info.
237: FND_MSG_PUB.Count_And_Get
238: (p_count => x_msg_count,
239: p_data => x_msg_data
240: );
241: EXCEPTION

Line 251: FND_MSG_PUB.Count_And_Get (

247: WHEN FND_API.G_EXC_ERROR THEN
248: ROLLBACK TO UPDATE_Claim_Lines_Int_PUB;
249: x_return_status := FND_API.G_RET_STS_ERROR;
250: -- Standard call to get message count and if count=1, get the message
251: FND_MSG_PUB.Count_And_Get (
252: p_encoded => FND_API.G_FALSE,
253: p_count => x_msg_count,
254: p_data => x_msg_data
255: );

Line 261: FND_MSG_PUB.Count_And_Get (

257: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
258: ROLLBACK TO UPDATE_Claim_Lines_Int_PUB;
259: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
260: -- Standard call to get message count and if count=1, get the message
261: FND_MSG_PUB.Count_And_Get (
262: p_encoded => FND_API.G_FALSE,
263: p_count => x_msg_count,
264: p_data => x_msg_data
265: );

Line 270: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

266:
267: WHEN OTHERS THEN
268: ROLLBACK TO UPDATE_Claim_Lines_Int_PUB;
269: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
270: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
271: THEN
272: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
273: END IF;
274: -- Standard call to get message count and if count=1, get the message

Line 272: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

268: ROLLBACK TO UPDATE_Claim_Lines_Int_PUB;
269: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
270: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
271: THEN
272: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
273: END IF;
274: -- Standard call to get message count and if count=1, get the message
275: FND_MSG_PUB.Count_And_Get (
276: p_encoded => FND_API.G_FALSE,

Line 275: FND_MSG_PUB.Count_And_Get (

271: THEN
272: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
273: END IF;
274: -- Standard call to get message count and if count=1, get the message
275: FND_MSG_PUB.Count_And_Get (
276: p_encoded => FND_API.G_FALSE,
277: p_count => x_msg_count,
278: p_data => x_msg_data
279: );

Line 316: FND_MSG_PUB.initialize;

312:
313: -- Initialize message list if p_init_msg_list is set to TRUE.
314: IF FND_API.to_Boolean( p_init_msg_list )
315: THEN
316: FND_MSG_PUB.initialize;
317: END IF;
318:
319: -- Debug Message
320: IF g_debug THEN

Line 366: FND_MSG_PUB.Count_And_Get

362: OZF_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
363: END IF;
364:
365: -- Standard call to get message count and if count is 1, get message info.
366: FND_MSG_PUB.Count_And_Get
367: (p_count => x_msg_count,
368: p_data => x_msg_data
369: );
370: EXCEPTION

Line 380: FND_MSG_PUB.Count_And_Get (

376: WHEN FND_API.G_EXC_ERROR THEN
377: ROLLBACK TO DELETE_Claim_Lines_Int_PUB;
378: x_return_status := FND_API.G_RET_STS_ERROR;
379: -- Standard call to get message count and if count=1, get the message
380: FND_MSG_PUB.Count_And_Get (
381: p_encoded => FND_API.G_FALSE,
382: p_count => x_msg_count,
383: p_data => x_msg_data
384: );

Line 390: FND_MSG_PUB.Count_And_Get (

386: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
387: ROLLBACK TO DELETE_Claim_Lines_Int_PUB;
388: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
389: -- Standard call to get message count and if count=1, get the message
390: FND_MSG_PUB.Count_And_Get (
391: p_encoded => FND_API.G_FALSE,
392: p_count => x_msg_count,
393: p_data => x_msg_data
394: );

Line 399: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

395:
396: WHEN OTHERS THEN
397: ROLLBACK TO DELETE_Claim_Lines_Int_PUB;
398: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
399: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
400: THEN
401: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
402: END IF;
403: -- Standard call to get message count and if count=1, get the message

Line 401: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

397: ROLLBACK TO DELETE_Claim_Lines_Int_PUB;
398: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
399: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
400: THEN
401: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
402: END IF;
403: -- Standard call to get message count and if count=1, get the message
404: FND_MSG_PUB.Count_And_Get (
405: p_encoded => FND_API.G_FALSE,

Line 404: FND_MSG_PUB.Count_And_Get (

400: THEN
401: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
402: END IF;
403: -- Standard call to get message count and if count=1, get the message
404: FND_MSG_PUB.Count_And_Get (
405: p_encoded => FND_API.G_FALSE,
406: p_count => x_msg_count,
407: p_data => x_msg_data
408: );

Line 441: FND_MSG_PUB.initialize;

437:
438: -- Initialize message list if p_init_msg_list is set to TRUE.
439: IF FND_API.to_Boolean( p_init_msg_list )
440: THEN
441: FND_MSG_PUB.initialize;
442: END IF;
443:
444: -- Debug Message
445: IF g_debug THEN

Line 493: FND_MSG_PUB.Count_And_Get (

489: WHEN FND_API.G_EXC_ERROR THEN
490: ROLLBACK TO LOCK_Claim_Lines_Int_PUB;
491: x_return_status := FND_API.G_RET_STS_ERROR;
492: -- Standard call to get message count and if count=1, get the message
493: FND_MSG_PUB.Count_And_Get (
494: p_encoded => FND_API.G_FALSE,
495: p_count => x_msg_count,
496: p_data => x_msg_data
497: );

Line 503: FND_MSG_PUB.Count_And_Get (

499: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
500: ROLLBACK TO LOCK_Claim_Lines_Int_PUB;
501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
502: -- Standard call to get message count and if count=1, get the message
503: FND_MSG_PUB.Count_And_Get (
504: p_encoded => FND_API.G_FALSE,
505: p_count => x_msg_count,
506: p_data => x_msg_data
507: );

Line 512: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

508:
509: WHEN OTHERS THEN
510: ROLLBACK TO LOCK_Claim_Lines_Int_PUB;
511: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
512: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
513: THEN
514: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
515: END IF;
516: -- Standard call to get message count and if count=1, get the message

Line 514: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

510: ROLLBACK TO LOCK_Claim_Lines_Int_PUB;
511: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
512: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
513: THEN
514: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
515: END IF;
516: -- Standard call to get message count and if count=1, get the message
517: FND_MSG_PUB.Count_And_Get (
518: p_encoded => FND_API.G_FALSE,

Line 517: FND_MSG_PUB.Count_And_Get (

513: THEN
514: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
515: END IF;
516: -- Standard call to get message count and if count=1, get the message
517: FND_MSG_PUB.Count_And_Get (
518: p_encoded => FND_API.G_FALSE,
519: p_count => x_msg_count,
520: p_data => x_msg_data
521: );