DBA Data[Home] [Help]

APPS.OE_CONTRACTS_UTIL dependencies on FND_MESSAGE

Line 747: fnd_message.set_name('ONT','ONT_NO_PRIMARY_OKC_DOCUMENT');

743:
744: IF l_contract_source_code = 'ATTACHED' AND l_has_primary_doc = 'N' THEN
745: --set qa return status to error
746: x_qa_return_status:= G_RET_STS_ERROR;
747: fnd_message.set_name('ONT','ONT_NO_PRIMARY_OKC_DOCUMENT');
748: OE_MSG_PUB.Add;
749:
750: END IF;
751:

Line 769: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

765: IF lx_qa_result_tbl.FIRST IS NOT NULL THEN
766: FOR i IN lx_qa_result_tbl.FIRST..lx_qa_result_tbl.LAST LOOP
767:
768: IF lx_qa_result_tbl(i).Problem_details IS NOT NULL THEN
769: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
770: fnd_message.set_token('message', lx_qa_result_tbl(i).Problem_details); --!!!! need to use SUBSTR here ??!!!!!
771: --Note: Problem_details is a translated string provided by the QA
772: fnd_msg_pub.add;
773: END IF;

Line 770: fnd_message.set_token('message', lx_qa_result_tbl(i).Problem_details); --!!!! need to use SUBSTR here ??!!!!!

766: FOR i IN lx_qa_result_tbl.FIRST..lx_qa_result_tbl.LAST LOOP
767:
768: IF lx_qa_result_tbl(i).Problem_details IS NOT NULL THEN
769: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
770: fnd_message.set_token('message', lx_qa_result_tbl(i).Problem_details); --!!!! need to use SUBSTR here ??!!!!!
771: --Note: Problem_details is a translated string provided by the QA
772: fnd_msg_pub.add;
773: END IF;
774: END LOOP;