DBA Data[Home] [Help]

APPS.JTF_TASK_WF_UTIL dependencies on FND_API

Line 632: x_return_status := fnd_api.g_ret_sts_success;

628: l_logged_res_id jtf_rs_resource_extns.resource_id%TYPE;
629:
630: l_wf_items VARCHAR2(500);
631: BEGIN
632: x_return_status := fnd_api.g_ret_sts_success;
633:
634: -- check whether we need to be backward-compatible for this Workflow
635: l_backcomp_flag := check_backcomp(p_itemtype => 'JTFTASK');
636:

Line 1038: WHEN fnd_api.g_exc_unexpected_error THEN

1034: UPDATE jtf_tasks_b
1035: SET workflow_process_id = l_wf_process_id
1036: WHERE task_id = p_task_id;
1037: EXCEPTION
1038: WHEN fnd_api.g_exc_unexpected_error THEN
1039: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
1040: WHEN OTHERS THEN
1041: x_return_status := fnd_api.g_ret_sts_unexp_error;
1042: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

Line 1041: x_return_status := fnd_api.g_ret_sts_unexp_error;

1037: EXCEPTION
1038: WHEN fnd_api.g_exc_unexpected_error THEN
1039: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
1040: WHEN OTHERS THEN
1041: x_return_status := fnd_api.g_ret_sts_unexp_error;
1042: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1043: fnd_msg_pub.add_exc_msg(g_pkg_name, 'CREATE_NOTIFICATION');
1044: END IF;
1045: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);