DBA Data[Home] [Help]

APPS.PA_UTILS dependencies on FND_MSG_PUB

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

1355:
1356: ---------------------------------------------------------------
1357: -- Procedure : Get_Encoded_Msg
1358: -- This procedure serves as a wrapper to the function
1359: -- FND_MSG_PUB.Get. It is needed to access the call from
1360: -- client FORMS.
1361: ---------------------------------------------------------------
1362:
1363: Procedure Get_Encoded_Msg(p_index IN NUMBER,

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

1363: Procedure Get_Encoded_Msg(p_index IN NUMBER,
1364: p_msg_out IN OUT NOCOPY VARCHAR2 ) IS
1365: l_message VARCHAR2(2000);
1366: BEGIN
1367: p_msg_out := fnd_msg_pub.get(p_msg_index => p_index,
1368: p_encoded => FND_API.G_FALSE);
1369:
1370: END Get_Encoded_Msg;
1371:

Line 1414: FND_MSG_PUB.Add;

1410: IF (p_token5 IS NOT NULL) THEN
1411: FND_MESSAGE.Set_Token(p_token5, p_value5);
1412: END IF;
1413:
1414: FND_MSG_PUB.Add;
1415:
1416: END Add_Message;
1417:
1418: