DBA Data[Home] [Help]

APPS.PA_UTILS dependencies on FND_MSG_PUB

Line 1603: -- FND_MSG_PUB.Get. It is needed to access the call from

1599:
1600: ---------------------------------------------------------------
1601: -- Procedure : Get_Encoded_Msg
1602: -- This procedure serves as a wrapper to the function
1603: -- FND_MSG_PUB.Get. It is needed to access the call from
1604: -- client FORMS.
1605: ---------------------------------------------------------------
1606:
1607: Procedure Get_Encoded_Msg(p_index IN NUMBER,

Line 1611: p_msg_out := fnd_msg_pub.get(p_msg_index => p_index,

1607: Procedure Get_Encoded_Msg(p_index IN NUMBER,
1608: p_msg_out IN OUT NOCOPY VARCHAR2 ) IS
1609: l_message VARCHAR2(2000);
1610: BEGIN
1611: p_msg_out := fnd_msg_pub.get(p_msg_index => p_index,
1612: p_encoded => FND_API.G_FALSE);
1613:
1614: END Get_Encoded_Msg;
1615:

Line 1658: FND_MSG_PUB.Add;

1654: IF (p_token5 IS NOT NULL) THEN
1655: FND_MESSAGE.Set_Token(p_token5, p_value5);
1656: END IF;
1657:
1658: FND_MSG_PUB.Add;
1659:
1660: END Add_Message;
1661:
1662: