DBA Data[Home] [Help]

APPS.JTF_TASKS_PVT dependencies on JTF_TASKS_PKG

Line 1400: jtf_tasks_pkg.insert_row(

1396: x_return_status := fnd_api.g_ret_sts_unexp_error;
1397: RAISE fnd_api.g_exc_unexpected_error;
1398: END IF;
1399:
1400: jtf_tasks_pkg.insert_row(
1401: x_rowid => l_rowid
1402: , x_task_id => x_task_id
1403: , x_source_object_id => l_source_object_id
1404: , x_source_object_name => l_source_object_name

Line 3329: x_task_upd_rec jtf_tasks_pkg.task_upd_rec; --BES enh

3325: l_assignee_rec jtf_task_utl.c_assignee_or_owner%ROWTYPE;
3326: --BES enh 2391065
3327: l_task_rec_type_old jtf_tasks_pvt.task_rec_type;
3328: l_task_rec_type_new jtf_tasks_pvt.task_rec_type;
3329: x_task_upd_rec jtf_tasks_pkg.task_upd_rec; --BES enh
3330: x_task_audit_id jtf_task_audits_b.task_audit_id%TYPE;
3331: x_event_return_status VARCHAR2(100);
3332: --BES enh 2391065
3333: BEGIN

Line 3826: --BES changes to call the new jtf_tasks_pkg.update_row

3822: -- appointment, then we create a new recurrence rule.
3823: -- In this case we need to update the recurrence_rule_id
3824: -- for all the future appointment.
3825: ---------------------------------------------------------
3826: --BES changes to call the new jtf_tasks_pkg.update_row
3827: x_task_upd_rec.task_id := l_task_id;
3828: x_task_upd_rec.object_version_number := p_object_version_number + 1;
3829: x_task_upd_rec.laptop_flag := l_laptop_flag;
3830: x_task_upd_rec.device1_flag := l_device1_flag;

Line 3921: jtf_tasks_pkg.update_row(p_task_upd_rec => x_task_upd_rec, p_task_audit_id => x_task_audit_id);

3917: x_task_upd_rec.task_split_flag := l_task_split_flag;
3918: x_task_upd_rec.child_position := l_child_position;
3919: x_task_upd_rec.child_sequence_num := l_child_sequence_num;
3920: x_task_upd_rec.location_id := l_location_id;
3921: jtf_tasks_pkg.update_row(p_task_upd_rec => x_task_upd_rec, p_task_audit_id => x_task_audit_id);
3922:
3923: l_owner_status_id := p_owner_status_id;
3924:
3925: -- ------------------------------------------------------------------------