DBA Data[Home] [Help]

APPS.PSB_WORKSHEET dependencies on FND_MESSAGE

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

4042: /* ----------------------------------------------------------------------- */
4043:
4044: -- Define a Message Token with a Value and set the Message Name
4045:
4046: -- Calls FND_MESSAGE server package to set the Message Stack. This message is
4047: -- retrieved by the calling program.
4048:
4049: PROCEDURE add_message(appname IN VARCHAR2,
4050: msgname IN VARCHAR2) IS

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

4055:
4056: if ((appname is not null) and
4057: (msgname is not null)) then
4058:
4059: FND_MESSAGE.SET_NAME(appname, msgname);
4060:
4061: if no_msg_tokens is not null then
4062:
4063: for i in 1..no_msg_tokens loop

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

4060:
4061: if no_msg_tokens is not null then
4062:
4063: for i in 1..no_msg_tokens loop
4064: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));
4065: end loop;
4066:
4067: end if;
4068: