DBA Data[Home] [Help]

APPS.IEU_WP_MSG_ACTIONS dependencies on FND_MSG_PUB

Line 30: fnd_msg_pub.ADD;

26: x_return_status:=fnd_api.g_ret_sts_error;
27: FND_MESSAGE.SET_NAME('IEU', 'IEU_UWQ_MESSAGE_ACTION_FAILED');
28: FND_MESSAGE.SET_TOKEN('DETAILS', sqlerrm);
29:
30: fnd_msg_pub.ADD;
31: fnd_msg_pub.Count_and_Get
32: (
33: p_count => x_msg_count,
34: p_data => x_msg_data

Line 31: fnd_msg_pub.Count_and_Get

27: FND_MESSAGE.SET_NAME('IEU', 'IEU_UWQ_MESSAGE_ACTION_FAILED');
28: FND_MESSAGE.SET_TOKEN('DETAILS', sqlerrm);
29:
30: fnd_msg_pub.ADD;
31: fnd_msg_pub.Count_and_Get
32: (
33: p_count => x_msg_count,
34: p_data => x_msg_data
35: );

Line 45: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,

41: END LOOP;
42:
43: x_return_status :=fnd_api.g_ret_sts_success;
44:
45: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
46: p_data => x_msg_data);
47:
48: EXCEPTION
49:

Line 59: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,

55:
56: when others then
57: x_return_status:=fnd_api.g_ret_sts_unexp_error;
58:
59: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
60: p_data => x_msg_data);
61:
62:
63: