DBA Data[Home] [Help]

APPS.QA_SS_RESULTS dependencies on FND_MSG_PUB

Line 746: fnd_msg_pub.Initialize();

742:
743: BEGIN
744:
745: --messages should be cleared everytime a Submit is clicked on client
746: fnd_msg_pub.Initialize();
747: fnd_msg_pub.reset();
748:
749: --
750: -- Bug 2617638

Line 747: fnd_msg_pub.reset();

743: BEGIN
744:
745: --messages should be cleared everytime a Submit is clicked on client
746: fnd_msg_pub.Initialize();
747: fnd_msg_pub.reset();
748:
749: --
750: -- Bug 2617638
751: -- The original statement returns if x_result IS NULL.

Line 1170: fnd_msg_pub.Initialize();

1166: BEGIN
1167:
1168:
1169: --messages should be cleared everytime a Submit is clicked on client
1170: fnd_msg_pub.Initialize();
1171: fnd_msg_pub.reset();
1172:
1173: FOR i IN p_errors.FIRST .. p_errors.LAST LOOP
1174: -- Bug 5307450

Line 1171: fnd_msg_pub.reset();

1167:
1168:
1169: --messages should be cleared everytime a Submit is clicked on client
1170: fnd_msg_pub.Initialize();
1171: fnd_msg_pub.reset();
1172:
1173: FOR i IN p_errors.FIRST .. p_errors.LAST LOOP
1174: -- Bug 5307450
1175: -- In QWB if the action is 'Reject the input' we were displaying the

Line 1198: fnd_msg_pub.add();

1194:
1195: fnd_message.set_name('QA','QA_API_REJECT_INPUT');
1196: fnd_message.set_token('CHAR_PROMPT', l_char_prompt);
1197: fnd_message.set_token('REJECT_MESSAGE', l_mesg);
1198: fnd_msg_pub.add();
1199: ELSE
1200: l_message_name := g_message_table(p_errors(i).error_code);
1201: l_char_prompt := qa_plan_element_api.get_prompt(plan_id, p_errors(i).element_id);
1202:

Line 1206: fnd_msg_pub.add();

1202:
1203: fnd_message.set_name('QA', l_message_name);
1204: fnd_message.set_token('CHAR_ID', p_errors(i).element_id);
1205: fnd_message.set_token('CHAR_PROMPT', l_char_prompt);
1206: fnd_msg_pub.add();
1207: End If;
1208: END LOOP;
1209:
1210: END post_error_messages;

Line 1277: fnd_msg_pub.Initialize();

1273: TYPE hist_plan_tab_typ IS TABLE OF hist_plan_rec INDEX BY binary_integer;
1274: hist_plan_tab hist_plan_tab_typ ;
1275: BEGIN
1276: --messages should be cleared everytime a Submit is clicked on client
1277: fnd_msg_pub.Initialize();
1278: fnd_msg_pub.reset();
1279:
1280: --
1281: -- Bug 2617638

Line 1278: fnd_msg_pub.reset();

1274: hist_plan_tab hist_plan_tab_typ ;
1275: BEGIN
1276: --messages should be cleared everytime a Submit is clicked on client
1277: fnd_msg_pub.Initialize();
1278: fnd_msg_pub.reset();
1279:
1280: --
1281: -- Bug 2617638
1282: -- The original statement returns if x_result IS NULL.

Line 1682: fnd_msg_pub.Initialize();

1678:
1679: BEGIN
1680:
1681: --clearing cache so that errors are not shown over and over again.
1682: fnd_msg_pub.Initialize();
1683: fnd_msg_pub.reset();
1684: elements := qa_validation_api.result_to_array(p_result);
1685: elements := qa_validation_api.id_to_array(p_result1, elements);
1686:

Line 1683: fnd_msg_pub.reset();

1679: BEGIN
1680:
1681: --clearing cache so that errors are not shown over and over again.
1682: fnd_msg_pub.Initialize();
1683: fnd_msg_pub.reset();
1684: elements := qa_validation_api.result_to_array(p_result);
1685: elements := qa_validation_api.id_to_array(p_result1, elements);
1686:
1687: --

Line 1913: fnd_msg_pub.add();

1909: IF ( l_esig_status = 'T' ) THEN
1910: -- current plan has eSig status as PENDING
1911: -- fill the error array and return
1912: fnd_message.set_name('QA', 'QA_ERES_CANNOT_UPDATE_RESULT');
1913: fnd_msg_pub.add();
1914: RETURN FALSE;
1915: END IF; -- l_esig_status = T
1916: -- esig status is false for child plan
1917: -- check esig status in ancestor plans

Line 1950: fnd_msg_pub.add();

1946: END IF;
1947: -- current plan ancestors has eSig status as PENDING
1948: -- fill the error array and return
1949: fnd_message.set_name('QA', 'QA_ERES_CANNOT_UPDATE_RESULT');
1950: fnd_msg_pub.add();
1951: return FALSE;
1952:
1953: END validate_esig_for_update;
1954:

Line 1997: fnd_msg_pub.add();

1993: IF ( l_esig_status = 'T' ) THEN
1994: -- current plan has eSig status as PENDING
1995: -- fill the error array and return
1996: fnd_message.set_name('QA', 'QA_ERES_CANNOT_ENTER_CHILD');
1997: fnd_msg_pub.add();
1998: return FALSE;
1999: END IF; -- l_esig_status = T
2000:
2001:

Line 2037: fnd_msg_pub.add();

2033: END IF;
2034: -- current plan ancestors has eSig status as PENDING
2035: -- fill the error array and return
2036: fnd_message.set_name('QA', 'QA_ERES_CANNOT_ENTER_CHILD');
2037: fnd_msg_pub.add();
2038: return FALSE;
2039:
2040: END validate_esig_for_insert;
2041: