DBA Data[Home] [Help]

APPS.JTF_TASK_WF_UTIL dependencies on FND_API

Line 599: x_return_status := fnd_api.g_ret_sts_success;

595: l_logged_res_id jtf_rs_resource_extns.resource_id%TYPE;
596:
597: l_wf_items VARCHAR2(500);
598: BEGIN
599: x_return_status := fnd_api.g_ret_sts_success;
600:
601: -- check whether we need to be backward-compatible for this Workflow
602: l_backcomp_flag := check_backcomp(p_itemtype => 'JTFTASK');
603:

Line 1004: WHEN fnd_api.g_exc_unexpected_error THEN

1000: UPDATE jtf_tasks_b
1001: SET workflow_process_id = l_wf_process_id
1002: WHERE task_id = p_task_id;
1003: EXCEPTION
1004: WHEN fnd_api.g_exc_unexpected_error THEN
1005: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
1006: WHEN OTHERS THEN
1007: x_return_status := fnd_api.g_ret_sts_unexp_error;
1008: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN

Line 1007: x_return_status := fnd_api.g_ret_sts_unexp_error;

1003: EXCEPTION
1004: WHEN fnd_api.g_exc_unexpected_error THEN
1005: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
1006: WHEN OTHERS THEN
1007: x_return_status := fnd_api.g_ret_sts_unexp_error;
1008: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
1009: fnd_msg_pub.add_exc_msg(g_pkg_name, 'CREATE_NOTIFICATION');
1010: END IF;
1011: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);