DBA Data[Home] [Help]

APPS.PV_ORDER_MGMT_PVT dependencies on OE_MSG_PUB

Line 48: OE_MSG_PUB.Count_And_Get

44:
45:
46: BEGIN
47:
48: OE_MSG_PUB.Count_And_Get
49: ( p_count => l_msg_count,
50: p_data => l_msg_data
51: );
52:

Line 71: PVX_UTILITY_PVT.debug_message('before calling oe_msg_pub.get');

67: IF (PV_DEBUG_HIGH_ON) THEN
68:
69:
70:
71: PVX_UTILITY_PVT.debug_message('before calling oe_msg_pub.get');
72:
73: END IF;
74: oe_msg_pub.get (
75: p_msg_index => k

Line 74: oe_msg_pub.get (

70:
71: PVX_UTILITY_PVT.debug_message('before calling oe_msg_pub.get');
72:
73: END IF;
74: oe_msg_pub.get (
75: p_msg_index => k
76: ,p_encoded => FND_API.G_FALSE
77: ,p_data => l_msg_data
78: ,p_msg_index_out => l_msg_index);

Line 80: IF oe_msg_pub.g_msg_tbl(l_msg_index).message_text IS NULL THEN

76: ,p_encoded => FND_API.G_FALSE
77: ,p_data => l_msg_data
78: ,p_msg_index_out => l_msg_index);
79:
80: IF oe_msg_pub.g_msg_tbl(l_msg_index).message_text IS NULL THEN
81: IF (PV_DEBUG_HIGH_ON) THEN
82:
83: PVX_UTILITY_PVT.debug_message('In index.message_text is null');
84: END IF;

Line 85: x_msg_data := oe_msg_pub.get(l_msg_index, 'F');

81: IF (PV_DEBUG_HIGH_ON) THEN
82:
83: PVX_UTILITY_PVT.debug_message('In index.message_text is null');
84: END IF;
85: x_msg_data := oe_msg_pub.get(l_msg_index, 'F');
86: END IF;
87:
88: x_msg_data := l_msg_data;
89: