DBA Data[Home] [Help]

APPS.QA_SS_RESULTS dependencies on FND_MSG_PUB

Line 688: fnd_msg_pub.Initialize();

684:
685: BEGIN
686:
687: --messages should be cleared everytime a Submit is clicked on client
688: fnd_msg_pub.Initialize();
689: fnd_msg_pub.reset();
690:
691: --
692: -- Bug 2617638

Line 689: fnd_msg_pub.reset();

685: BEGIN
686:
687: --messages should be cleared everytime a Submit is clicked on client
688: fnd_msg_pub.Initialize();
689: fnd_msg_pub.reset();
690:
691: --
692: -- Bug 2617638
693: -- The original statement returns if x_result IS NULL.

Line 1101: fnd_msg_pub.Initialize();

1097: BEGIN
1098:
1099:
1100: --messages should be cleared everytime a Submit is clicked on client
1101: fnd_msg_pub.Initialize();
1102: fnd_msg_pub.reset();
1103:
1104: FOR i IN p_errors.FIRST .. p_errors.LAST LOOP
1105: -- Bug 5307450

Line 1102: fnd_msg_pub.reset();

1098:
1099:
1100: --messages should be cleared everytime a Submit is clicked on client
1101: fnd_msg_pub.Initialize();
1102: fnd_msg_pub.reset();
1103:
1104: FOR i IN p_errors.FIRST .. p_errors.LAST LOOP
1105: -- Bug 5307450
1106: -- In QWB if the action is 'Reject the input' we were displaying the

Line 1129: fnd_msg_pub.add();

1125:
1126: fnd_message.set_name('QA','QA_API_REJECT_INPUT');
1127: fnd_message.set_token('CHAR_PROMPT', l_char_prompt);
1128: fnd_message.set_token('REJECT_MESSAGE', l_mesg);
1129: fnd_msg_pub.add();
1130: ELSE
1131: l_message_name := g_message_table(p_errors(i).error_code);
1132: l_char_prompt := qa_plan_element_api.get_prompt(plan_id, p_errors(i).element_id);
1133:

Line 1137: fnd_msg_pub.add();

1133:
1134: fnd_message.set_name('QA', l_message_name);
1135: fnd_message.set_token('CHAR_ID', p_errors(i).element_id);
1136: fnd_message.set_token('CHAR_PROMPT', l_char_prompt);
1137: fnd_msg_pub.add();
1138: End If;
1139: END LOOP;
1140:
1141: END post_error_messages;

Line 1208: fnd_msg_pub.Initialize();

1204: TYPE hist_plan_tab_typ IS TABLE OF hist_plan_rec INDEX BY binary_integer;
1205: hist_plan_tab hist_plan_tab_typ ;
1206: BEGIN
1207: --messages should be cleared everytime a Submit is clicked on client
1208: fnd_msg_pub.Initialize();
1209: fnd_msg_pub.reset();
1210:
1211: --
1212: -- Bug 2617638

Line 1209: fnd_msg_pub.reset();

1205: hist_plan_tab hist_plan_tab_typ ;
1206: BEGIN
1207: --messages should be cleared everytime a Submit is clicked on client
1208: fnd_msg_pub.Initialize();
1209: fnd_msg_pub.reset();
1210:
1211: --
1212: -- Bug 2617638
1213: -- The original statement returns if x_result IS NULL.

Line 1613: fnd_msg_pub.Initialize();

1609:
1610: BEGIN
1611:
1612: --clearing cache so that errors are not shown over and over again.
1613: fnd_msg_pub.Initialize();
1614: fnd_msg_pub.reset();
1615: elements := qa_validation_api.result_to_array(p_result);
1616: elements := qa_validation_api.id_to_array(p_result1, elements);
1617:

Line 1614: fnd_msg_pub.reset();

1610: BEGIN
1611:
1612: --clearing cache so that errors are not shown over and over again.
1613: fnd_msg_pub.Initialize();
1614: fnd_msg_pub.reset();
1615: elements := qa_validation_api.result_to_array(p_result);
1616: elements := qa_validation_api.id_to_array(p_result1, elements);
1617:
1618: --

Line 1844: fnd_msg_pub.add();

1840: IF ( l_esig_status = 'T' ) THEN
1841: -- current plan has eSig status as PENDING
1842: -- fill the error array and return
1843: fnd_message.set_name('QA', 'QA_ERES_CANNOT_UPDATE_RESULT');
1844: fnd_msg_pub.add();
1845: RETURN FALSE;
1846: END IF; -- l_esig_status = T
1847: -- esig status is false for child plan
1848: -- check esig status in ancestor plans

Line 1881: fnd_msg_pub.add();

1877: END IF;
1878: -- current plan ancestors has eSig status as PENDING
1879: -- fill the error array and return
1880: fnd_message.set_name('QA', 'QA_ERES_CANNOT_UPDATE_RESULT');
1881: fnd_msg_pub.add();
1882: return FALSE;
1883:
1884: END validate_esig_for_update;
1885:

Line 1928: fnd_msg_pub.add();

1924: IF ( l_esig_status = 'T' ) THEN
1925: -- current plan has eSig status as PENDING
1926: -- fill the error array and return
1927: fnd_message.set_name('QA', 'QA_ERES_CANNOT_ENTER_CHILD');
1928: fnd_msg_pub.add();
1929: return FALSE;
1930: END IF; -- l_esig_status = T
1931:
1932:

Line 1968: fnd_msg_pub.add();

1964: END IF;
1965: -- current plan ancestors has eSig status as PENDING
1966: -- fill the error array and return
1967: fnd_message.set_name('QA', 'QA_ERES_CANNOT_ENTER_CHILD');
1968: fnd_msg_pub.add();
1969: return FALSE;
1970:
1971: END validate_esig_for_insert;
1972: