DBA Data[Home] [Help]

APPS.IRC_DOCUMENT_API dependencies on FND_MSG_PUB

Line 964: fnd_msg_pub.add_detail

960: ,'unable to process'
961: ,dbms_utility.format_error_stack);
962: end if;
963: fnd_message.set_name('PER', 'IRC_UNABLE_TO_INDEX_DOC');
964: fnd_msg_pub.add_detail
965: (p_message_type => 'I'
966: );
967: end process_document;
968: --

Line 992: fnd_msg_pub.delete_msg;

988: l_file_name IRC_DOCUMENTS.FILE_NAME%type;
989: l_type varchar2(10);
990: begin
991: --
992: fnd_msg_pub.delete_msg;
993: --
994: open csr_doc_exists;
995: fetch csr_doc_exists into l_rowid;
996: if (csr_doc_exists%found) then

Line 1098: fnd_msg_pub.add_detail

1094: end if;
1095: hr_utility.log_at_error_level('per','get_html_preview','unable to preview'
1096: ,dbms_utility.format_error_stack);
1097: fnd_message.set_name('PER', 'IRC_UNABLE_TO_PREVIEW_DOC');
1098: fnd_msg_pub.add_detail
1099: (p_message_type => 'W'
1100: );
1101: return l_output_clob;
1102: