DBA Data[Home] [Help]

APPS.OKL_CONVERT_INT_TYPE_WF dependencies on FND_MSG_PUB

Line 36: l_temp_msg := fnd_msg_pub.get(fnd_msg_pub.g_next, fnd_api.g_true);

32: and lng.language_id = x_lang_id;
33: BEGIN
34: FOR l_count in 1..p_message_count LOOP
35:
36: l_temp_msg := fnd_msg_pub.get(fnd_msg_pub.g_next, fnd_api.g_true);
37: fnd_message.parse_encoded(l_temp_msg, l_appl_short_name, l_message_name);
38: OPEN Get_Appl_Id (l_appl_short_name);
39: FETCH Get_Appl_Id into l_id;
40: CLOSE Get_Appl_Id;

Line 51: l_temp_msg := fnd_msg_pub.get(fnd_msg_pub.g_previous, fnd_api.g_true);

47: FETCH Get_Message_Num into l_message_num;
48: CLOSE Get_Message_Num;
49: END IF;
50:
51: l_temp_msg := fnd_msg_pub.get(fnd_msg_pub.g_previous, fnd_api.g_true);
52:
53: IF NVL(l_message_num, 0) <> 0
54: THEN
55: l_temp_msg := 'APP-' || to_char(l_message_num) || ': ';

Line 63: fnd_msg_pub.get(fnd_msg_pub.g_first, fnd_api.g_false);

59:
60: IF l_count = 1
61: THEN
62: l_msg_list := l_msg_list || l_temp_msg ||
63: fnd_msg_pub.get(fnd_msg_pub.g_first, fnd_api.g_false);
64: ELSE
65: l_msg_list := l_msg_list || l_temp_msg ||
66: fnd_msg_pub.get(fnd_msg_pub.g_next, fnd_api.g_false);
67: END IF;

Line 66: fnd_msg_pub.get(fnd_msg_pub.g_next, fnd_api.g_false);

62: l_msg_list := l_msg_list || l_temp_msg ||
63: fnd_msg_pub.get(fnd_msg_pub.g_first, fnd_api.g_false);
64: ELSE
65: l_msg_list := l_msg_list || l_temp_msg ||
66: fnd_msg_pub.get(fnd_msg_pub.g_next, fnd_api.g_false);
67: END IF;
68:
69: l_msg_list := l_msg_list || '';
70:

Line 113: FND_MSG_PUB.ADD;

109: WHEN OTHERS THEN
110: x_return_status := OKL_API.G_RET_STS_ERROR;
111: FND_MESSAGE.SET_NAME('OKL', 'OKL_API_OTHERS_EXCEP');
112: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
113: FND_MSG_PUB.ADD;
114: ROLLBACK TO raise_convert_interest_event;
115: END raise_convert_interest_event;
116:
117: --------------------------------------------------------------------------------------------------

Line 720: FND_MSG_PUB.Count_And_Get

716: x_msg_data => l_msg_data,
717: p_trqv_rec => l_trq_rec,
718: x_trqv_rec => lx_trq_rec);
719: IF l_return_status <> 'S' THEN
720: FND_MSG_PUB.Count_And_Get
721: ( p_count => l_msg_count,
722: p_data => l_msg_data);
723: Get_Messages(l_msg_count,l_error);
724: