DBA Data[Home] [Help]

APPS.PSB_PURGE_DATA_EXTRACT_PVT dependencies on FND_MESSAGE

Line 214: FND_MESSAGE.SET_NAME('PSB', 'PSB_DE_CANNOT_BE_DELETED');

210: from psb_worksheets
211: where data_extract_id = p_data_extract_id;
212:
213: if (l_worksheet_cnt > 0) then
214: FND_MESSAGE.SET_NAME('PSB', 'PSB_DE_CANNOT_BE_DELETED');
215: FND_MSG_PUB.Add;
216: p_purge := 'NO_PURGE';
217: raise FND_API.G_EXC_ERROR;
218: End if;

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

632: /* ----------------------------------------------------------------------- */
633:
634: -- Define a Message Token with a Value and set the Message Name
635:
636: -- Calls FND_MESSAGE server package to set the Message Stack. This message is
637: -- retrieved by the calling program.
638:
639: PROCEDURE add_message(appname IN VARCHAR2,
640: msgname IN VARCHAR2) AS

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

645:
646: if ((appname is not null) and
647: (msgname is not null)) then
648:
649: FND_MESSAGE.SET_NAME(appname, msgname);
650:
651: if no_msg_tokens is not null then
652:
653: for i in 1..no_msg_tokens loop

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

650:
651: if no_msg_tokens is not null then
652:
653: for i in 1..no_msg_tokens loop
654: FND_MESSAGE.SET_TOKEN(msg_tok_names(i), msg_tok_val(i));
655: end loop;
656:
657: end if;
658: