DBA Data[Home] [Help]

APPS.JTF_TASK_ASSIGNMENTS_PKG dependencies on FND_PROFILE

Line 116: l_enable_audit := Upper(nvl(fnd_profile.Value('JTF_TASK_ENABLE_AUDIT'),'Y'));

112: THEN
113: x_return_status := fnd_api.g_ret_sts_unexp_error;
114: RAISE fnd_api.g_exc_unexpected_error;
115: END IF;
116: l_enable_audit := Upper(nvl(fnd_profile.Value('JTF_TASK_ENABLE_AUDIT'),'Y'));
117: IF(l_enable_audit = 'Y') THEN
118: jtf_task_assignment_audit_pkg.create_task_assignment_audit(
119: p_api_version => 1,
120: p_init_msg_list => fnd_api.g_false,

Line 432: l_enable_audit := Upper(nvl(fnd_profile.Value('JTF_TASK_ENABLE_AUDIT'),'Y'));

428: x_return_status := fnd_api.g_ret_sts_unexp_error;
429: RAISE fnd_api.g_exc_unexpected_error;
430: END IF;
431:
432: l_enable_audit := Upper(nvl(fnd_profile.Value('JTF_TASK_ENABLE_AUDIT'),'Y'));
433: IF(l_enable_audit = 'Y') THEN
434: jtf_task_assignment_audit_pkg.create_task_assignment_audit(
435: p_api_version => 1,
436: p_init_msg_list => fnd_api.g_false,

Line 566: l_enable_audit := Upper(nvl(fnd_profile.Value('JTF_TASK_ENABLE_AUDIT'),'Y'));

562: if (sql%notfound) then
563: raise no_data_found;
564: end if;
565:
566: l_enable_audit := Upper(nvl(fnd_profile.Value('JTF_TASK_ENABLE_AUDIT'),'Y'));
567: IF(l_enable_audit = 'Y') THEN
568: jtf_task_assignment_audit_pkg.DELETE_ROW(
569: X_ASSIGNMENT_ID =>x_task_assignment_id
570: );