DBA Data[Home] [Help]

APPS.JTF_EC_PVT dependencies on FND_MESSAGE

Line 88: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_NAME');

84: END IF;
85:
86: IF p_escalation_name IS NULL
87: THEN
88: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_NAME');
89: fnd_msg_pub.add;
90: x_return_status := fnd_api.g_ret_sts_unexp_error;
91: RAISE fnd_api.g_exc_unexpected_error;
92: END IF;

Line 513: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_TASK');

509: -----
510: IF ( l_escalation_id = fnd_api.g_miss_num
511: AND l_escalation_number = fnd_api.g_miss_char)
512: THEN
513: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_TASK');
514: fnd_msg_pub.add;
515: x_return_status := fnd_api.g_ret_sts_unexp_error;
516: RAISE fnd_api.g_exc_unexpected_error;
517: ELSE

Line 545: fnd_message.set_name ('JTF', 'JTF_TASK_INVALID_TASK_NUMBER');

541: END IF;
542:
543: IF l_escalation_id IS NULL
544: THEN
545: fnd_message.set_name ('JTF', 'JTF_TASK_INVALID_TASK_NUMBER');
546: fnd_message.set_token('P_TASK_NUMBER',l_escalation_number);
547: fnd_msg_pub.add;
548: x_return_status := fnd_api.g_ret_sts_unexp_error;
549: RAISE fnd_api.g_exc_unexpected_error;

Line 546: fnd_message.set_token('P_TASK_NUMBER',l_escalation_number);

542:
543: IF l_escalation_id IS NULL
544: THEN
545: fnd_message.set_name ('JTF', 'JTF_TASK_INVALID_TASK_NUMBER');
546: fnd_message.set_token('P_TASK_NUMBER',l_escalation_number);
547: fnd_msg_pub.add;
548: x_return_status := fnd_api.g_ret_sts_unexp_error;
549: RAISE fnd_api.g_exc_unexpected_error;
550: END IF;

Line 559: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_NAME');

555: ----- Escalation Name
556: -----
557: IF l_escalation_name IS NULL
558: THEN
559: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_NAME');
560: fnd_msg_pub.add;
561: x_return_status := fnd_api.g_ret_sts_unexp_error;
562: RAISE fnd_api.g_exc_unexpected_error;
563: END IF;

Line 578: fnd_message.set_name ('JTF', 'JTF_TASK_INVALID_TASK_ID');

574: FETCH c_escalation_update INTO escalation_rec;
575:
576: IF c_escalation_update%NOTFOUND
577: THEN
578: fnd_message.set_name ('JTF', 'JTF_TASK_INVALID_TASK_ID');
579: fnd_message.set_token('P_TASK_ID', to_char(l_escalation_id));
580: fnd_msg_pub.add;
581: x_return_status := fnd_api.g_ret_sts_unexp_error;
582: RAISE fnd_api.g_exc_unexpected_error;

Line 579: fnd_message.set_token('P_TASK_ID', to_char(l_escalation_id));

575:
576: IF c_escalation_update%NOTFOUND
577: THEN
578: fnd_message.set_name ('JTF', 'JTF_TASK_INVALID_TASK_ID');
579: fnd_message.set_token('P_TASK_ID', to_char(l_escalation_id));
580: fnd_msg_pub.add;
581: x_return_status := fnd_api.g_ret_sts_unexp_error;
582: RAISE fnd_api.g_exc_unexpected_error;
583: END IF;

Line 722: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');

718: x_return_status := fnd_api.g_ret_sts_unexp_error;
719: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
720: WHEN OTHERS
721: THEN
722: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');
723: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);
724: fnd_msg_pub.add;
725: ROLLBACK TO update_escalation_pvt;
726: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 723: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);

719: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
720: WHEN OTHERS
721: THEN
722: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');
723: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);
724: fnd_msg_pub.add;
725: ROLLBACK TO update_escalation_pvt;
726: x_return_status := fnd_api.g_ret_sts_unexp_error;
727: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

Line 804: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_TASK');

800:
801: IF ( l_escalation_id IS NULL
802: AND l_escalation_number IS NULL)
803: THEN
804: fnd_message.set_name ('JTF', 'JTF_TASK_MISSING_TASK');
805: fnd_msg_pub.add;
806: x_return_status := fnd_api.g_ret_sts_unexp_error;
807: RAISE fnd_api.g_exc_unexpected_error;
808: ELSE

Line 940: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');

936: x_return_status := fnd_api.g_ret_sts_unexp_error;
937: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
938: WHEN OTHERS
939: THEN
940: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');
941: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);
942: fnd_msg_pub.add ;
943: ROLLBACK TO delete_escalation_pvt;
944: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 941: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);

937: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
938: WHEN OTHERS
939: THEN
940: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');
941: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);
942: fnd_msg_pub.add ;
943: ROLLBACK TO delete_escalation_pvt;
944: x_return_status := fnd_api.g_ret_sts_unexp_error;
945: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);