DBA Data[Home] [Help]

APPS.PSB_WORKSHEET_CONSOLIDATE dependencies on FND_MESSAGE

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

2793: /* ----------------------------------------------------------------------- */
2794:
2795: -- Define a Message Token with a Value and set the Message Name
2796:
2797: -- Calls FND_MESSAGE server package to set the Message Stack. This message is
2798: -- retrieved by the calling program.
2799:
2800: PROCEDURE add_message(appname IN VARCHAR2,
2801: msgname IN VARCHAR2) IS

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

2806:
2807: if ((appname is not null) and
2808: (msgname is not null)) then
2809:
2810: FND_MESSAGE.SET_NAME(appname, msgname);
2811:
2812: if no_msg_tokens is not null then
2813:
2814: for i in 1..no_msg_tokens loop

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

2811:
2812: if no_msg_tokens is not null then
2813:
2814: for i in 1..no_msg_tokens loop
2815: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));
2816: end loop;
2817:
2818: end if;
2819: