DBA Data[Home] [Help]

APPS.PSB_COMMITMENTS_PVT dependencies on FND_MESSAGE

Line 748: -- Calls FND_MESSAGE server package to set the Message Stack. This message is

744: /* ----------------------------------------------------------------------- */
745:
746: -- Define a Message Token with a Value and set the Message Name
747:
748: -- Calls FND_MESSAGE server package to set the Message Stack. This message is
749: -- retrieved by the calling program.
750:
751: PROCEDURE add_message(appname IN VARCHAR2,
752: msgname IN VARCHAR2) IS

Line 761: FND_MESSAGE.SET_NAME(appname, msgname);

757:
758: if ((appname is not null) and
759: (msgname is not null)) then
760:
761: FND_MESSAGE.SET_NAME(appname, msgname);
762:
763: if no_msg_tokens is not null then
764: for i in 1..no_msg_tokens loop
765: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));

Line 765: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));

761: FND_MESSAGE.SET_NAME(appname, msgname);
762:
763: if no_msg_tokens is not null then
764: for i in 1..no_msg_tokens loop
765: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));
766: end loop;
767: end if;
768:
769: FND_MSG_PUB.Add;