DBA Data[Home] [Help]

APPS.AS_OPPORTUNITY_VUHK dependencies on FND_MESSAGE

Line 50: fnd_message.Set_Name('PV', 'PV_DEBUG_MESSAGE');

46:
47: x_return_status := FND_API.G_RET_STS_SUCCESS ;
48:
49: IF fnd_msg_pub.Check_Msg_Level (fnd_msg_pub.G_MSG_LVL_DEBUG_LOW) THEN
50: fnd_message.Set_Name('PV', 'PV_DEBUG_MESSAGE');
51: fnd_message.Set_Token('TEXT', ' ********* Before calling PV_OPPORTUNITY_VHUK.Create_Opportunity_Post');
52: fnd_msg_pub.Add;
53: END IF;
54:

Line 51: fnd_message.Set_Token('TEXT', ' ********* Before calling PV_OPPORTUNITY_VHUK.Create_Opportunity_Post');

47: x_return_status := FND_API.G_RET_STS_SUCCESS ;
48:
49: IF fnd_msg_pub.Check_Msg_Level (fnd_msg_pub.G_MSG_LVL_DEBUG_LOW) THEN
50: fnd_message.Set_Name('PV', 'PV_DEBUG_MESSAGE');
51: fnd_message.Set_Token('TEXT', ' ********* Before calling PV_OPPORTUNITY_VHUK.Create_Opportunity_Post');
52: fnd_msg_pub.Add;
53: END IF;
54:
55: PV_OPPORTUNITY_VHUK.Create_Opportunity_Post (

Line 67: fnd_message.Set_Name('PV', 'PV_DEBUG_MESSAGE');

63: x_msg_count => x_msg_count,
64: x_msg_data => x_msg_data);
65:
66: IF fnd_msg_pub.Check_Msg_Level (fnd_msg_pub.G_MSG_LVL_DEBUG_LOW) THEN
67: fnd_message.Set_Name('PV', 'PV_DEBUG_MESSAGE');
68: fnd_message.Set_Token('TEXT', '********* After calling PV_OPPORTUNITY_VHUK.Create_Opportunity_Post');
69: fnd_msg_pub.Add;
70: END IF;
71:

Line 68: fnd_message.Set_Token('TEXT', '********* After calling PV_OPPORTUNITY_VHUK.Create_Opportunity_Post');

64: x_msg_data => x_msg_data);
65:
66: IF fnd_msg_pub.Check_Msg_Level (fnd_msg_pub.G_MSG_LVL_DEBUG_LOW) THEN
67: fnd_message.Set_Name('PV', 'PV_DEBUG_MESSAGE');
68: fnd_message.Set_Token('TEXT', '********* After calling PV_OPPORTUNITY_VHUK.Create_Opportunity_Post');
69: fnd_msg_pub.Add;
70: END IF;
71:
72: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN

Line 176: FND_MESSAGE.Set_Name('PV', 'PV_LEAD_NOT_FOUND');

172: if lc_get_channel_type%NOTFOUND then
173:
174: close lc_get_channel_type;
175:
176: FND_MESSAGE.Set_Name('PV', 'PV_LEAD_NOT_FOUND');
177: FND_MESSAGE.Set_Token('LEAD_ID', p_header_rec.lead_id);
178: FND_MSG_PUB.Add;
179: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
180:

Line 177: FND_MESSAGE.Set_Token('LEAD_ID', p_header_rec.lead_id);

173:
174: close lc_get_channel_type;
175:
176: FND_MESSAGE.Set_Name('PV', 'PV_LEAD_NOT_FOUND');
177: FND_MESSAGE.Set_Token('LEAD_ID', p_header_rec.lead_id);
178: FND_MSG_PUB.Add;
179: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
180:
181: end if;

Line 201: FND_MESSAGE.Set_Name('PV', 'PV_INVALID_CHANNEL_CODE');

197: if lc_chk_channel_code%NOTFOUND then
198:
199: close lc_chk_channel_code;
200:
201: FND_MESSAGE.Set_Name('PV', 'PV_INVALID_CHANNEL_CODE');
202: FND_MESSAGE.Set_Token('P_CHANNEL', p_header_rec.channel_code);
203: FND_MSG_PUB.Add;
204:
205: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 202: FND_MESSAGE.Set_Token('P_CHANNEL', p_header_rec.channel_code);

198:
199: close lc_chk_channel_code;
200:
201: FND_MESSAGE.Set_Name('PV', 'PV_INVALID_CHANNEL_CODE');
202: FND_MESSAGE.Set_Token('P_CHANNEL', p_header_rec.channel_code);
203: FND_MSG_PUB.Add;
204:
205: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
206:

Line 215: FND_MESSAGE.Set_Name('PV', 'PV_OPP_ALREADY_ASSIGNED');

211: if l_to_indirect_flag <> 'Y'
212: and (l_prm_assignment_type <> 'UNASSIGNED')
213: then
214:
215: FND_MESSAGE.Set_Name('PV', 'PV_OPP_ALREADY_ASSIGNED');
216: FND_MESSAGE.Set_Token('P_CHANNEL', l_to_channel_meaning);
217: FND_MSG_PUB.Add;
218:
219: RAISE FND_API.G_EXC_ERROR;

Line 216: FND_MESSAGE.Set_Token('P_CHANNEL', l_to_channel_meaning);

212: and (l_prm_assignment_type <> 'UNASSIGNED')
213: then
214:
215: FND_MESSAGE.Set_Name('PV', 'PV_OPP_ALREADY_ASSIGNED');
216: FND_MESSAGE.Set_Token('P_CHANNEL', l_to_channel_meaning);
217: FND_MSG_PUB.Add;
218:
219: RAISE FND_API.G_EXC_ERROR;
220: