DBA Data[Home] [Help]

APPS.PV_PARTNER_CONTRACTS_PVT dependencies on FND_MSG_PUB

Line 58: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

54: --
55: -- End of Comments
56: -- ==============================================================================
57:
58: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
59: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
60: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
61:
62: function get_contract_response_options( p_geo_hierarchy_id in varchar2 )

Line 59: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

55: -- End of Comments
56: -- ==============================================================================
57:
58: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
59: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
60: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
61:
62: function get_contract_response_options( p_geo_hierarchy_id in varchar2 )
63: return varchar2

Line 60: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

56: -- ==============================================================================
57:
58: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
59: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
60: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
61:
62: function get_contract_response_options( p_geo_hierarchy_id in varchar2 )
63: return varchar2
64: is

Line 165: FND_MSG_PUB.initialize;

161:
162: -- Initialize message list if p_init_msg_list is set to TRUE.
163: IF FND_API.to_Boolean( p_init_msg_list )
164: THEN
165: FND_MSG_PUB.initialize;
166: END IF;
167:
168: -- Debug Message
169: IF (PV_DEBUG_HIGH_ON) THEN

Line 211: FND_MSG_PUB.Add;

207: ,x_geo_hierarchy_id => l_geo_hierarchy_id
208: );
209: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
210: FND_MESSAGE.SET_NAME('PV','PV_GET_MATCHED_GEO_HIER_ID');
211: FND_MSG_PUB.Add;
212: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
213: RAISE FND_API.G_EXC_ERROR;
214: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
215: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 246: FND_MSG_PUB.Add;

242: );
243:
244: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
245: FND_MESSAGE.SET_NAME('PV','PV_GET_TRANS_TMPL_ERROR_OUT');
246: FND_MSG_PUB.Add;
247: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
248: RAISE FND_API.G_EXC_ERROR;
249: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
250: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 289: FND_MSG_PUB.Add;

285: END IF;
286:
287: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
288: FND_MESSAGE.SET_NAME('PV','PV_COPY_TERMS_ERROR_OUT');
289: FND_MSG_PUB.Add;
290: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
291: RAISE FND_API.G_EXC_ERROR;
292: ELSIF x_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
293: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 312: FND_MSG_PUB.Count_And_Get

308: PVX_UTILITY_PVT.debug_message('Private API: ' || l_api_name || ' - end');
309: END IF;
310:
311: -- Standard call to get message count and if count is 1, get message info.
312: FND_MSG_PUB.Count_And_Get
313: ( p_encoded => FND_API.G_FALSE,
314: p_count => x_msg_count,
315: p_data => x_msg_data
316: );

Line 325: Fnd_Msg_Pub.Count_And_Get (

321: ROLLBACK TO Is_Contract_Exist_Then_Create;
322: x_return_status := Fnd_Api.G_RET_STS_ERROR;
323:
324: -- Standard call to get message count and if count=1, get the message
325: Fnd_Msg_Pub.Count_And_Get (
326: p_encoded => Fnd_Api.G_FALSE
327: ,p_count => x_msg_count
328: ,p_data => x_msg_data
329: );

Line 335: Fnd_Msg_Pub.Count_And_Get (

331: WHEN Fnd_Api.G_EXC_UNEXPECTED_ERROR THEN
332: ROLLBACK TO Is_Contract_Exist_Then_Create;
333: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
334: -- Standard call to get message count and if count=1, get the message
335: Fnd_Msg_Pub.Count_And_Get (
336: p_encoded => Fnd_Api.G_FALSE
337: ,p_count => x_msg_count
338: ,p_data => x_msg_data
339: );

Line 344: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

340:
341: WHEN OTHERS THEN
342: ROLLBACK TO Is_Contract_Exist_Then_Create;
343: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
344: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
345: THEN
346: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
347: END IF;
348: -- Standard call to get message count and if count=1, get the message

Line 346: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

342: ROLLBACK TO Is_Contract_Exist_Then_Create;
343: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
344: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
345: THEN
346: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
347: END IF;
348: -- Standard call to get message count and if count=1, get the message
349: Fnd_Msg_Pub.Count_And_Get (
350: p_encoded => Fnd_Api.G_FALSE

Line 349: Fnd_Msg_Pub.Count_And_Get (

345: THEN
346: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
347: END IF;
348: -- Standard call to get message count and if count=1, get the message
349: Fnd_Msg_Pub.Count_And_Get (
350: p_encoded => Fnd_Api.G_FALSE
351: ,p_count => x_msg_count
352: ,p_data => x_msg_data
353: );