DBA Data[Home] [Help]

APPS.PSB_CONCURRENCY_CONTROL_PVT dependencies on FND_MESSAGE

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

944: /* ----------------------------------------------------------------------- */
945:
946: -- Define a Message Token with a Value and set the Message Name
947:
948: -- Calls FND_MESSAGE server package to set the Message Stack. This message is
949: -- retrieved by the calling program.
950:
951: PROCEDURE add_message(appname IN VARCHAR2,
952: msgname IN VARCHAR2) IS

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

957:
958: if ((appname is not null) and
959: (msgname is not null)) then
960:
961: FND_MESSAGE.SET_NAME(appname, msgname);
962:
963: if no_msg_tokens is not null then
964: for i in 1..no_msg_tokens loop
965: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));

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

961: FND_MESSAGE.SET_NAME(appname, msgname);
962:
963: if no_msg_tokens is not null then
964: for i in 1..no_msg_tokens loop
965: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));
966: end loop;
967: end if;
968:
969: FND_MSG_PUB.Add;