DBA Data[Home] [Help]

APPS.JTA_SYNC_TASK_COMMON dependencies on JTA_CAL_APPOINTMENT_PVT

Line 152: | This is coded by the package jta_cal_appointment_pvt.

148: | No default parameter values in package body|
149: | 09-Oct-2002 cjang Fixed bug 2467021 |
150: | Modified convert_dates(),create_new_data(),update_existing_data():
151: | If it is APPOINTMENT, pass Y for show_on_calendar and pass P for date_selected.
152: | This is coded by the package jta_cal_appointment_pvt.
153: | If it is TASK for creation, pass show_on_calendar and date_selected as NULL
154: | if it is TASK for update, pass show_on_calendar and date_selected as g_miss_char
155: | 22-Oct-2002 cjang Fixed bug 2635512, Removed debug_pkg.add |
156: | 01-Nov-2002 cjang Fixed bug 2540722 |

Line 2571: jta_cal_appointment_pvt.create_appointment (

2567: l_subject := get_subject( p_subject => p_task_rec.subject
2568: , p_type => 'ORACLE');
2569:
2570: IF p_task_rec.objectcode = G_APPOINTMENT THEN
2571: jta_cal_appointment_pvt.create_appointment (
2572: p_task_name => l_subject,
2573: p_task_type_id => get_default_task_type,
2574: p_description => p_task_rec.description,
2575: p_task_priority_id => p_task_rec.priorityid,

Line 2953: jta_cal_appointment_pvt.update_appointment (

2949: l_ovn := get_ovn (p_task_id => l_task_id);
2950:
2951: IF p_task_rec.objectcode = G_APPOINTMENT
2952: THEN
2953: jta_cal_appointment_pvt.update_appointment (
2954: p_object_version_number => l_ovn ,
2955: p_task_id => l_task_id,
2956: p_task_name => NVL (l_task_name, ' '),
2957: p_description => p_task_rec.description,

Line 3079: jta_cal_appointment_pvt.delete_appointment (

3075: l_ovn := get_ovn (p_task_id => p_repeating_task_id);
3076:
3077: IF x_task_rec.objectcode = G_APPOINTMENT
3078: THEN
3079: jta_cal_appointment_pvt.delete_appointment (
3080: p_object_version_number => l_ovn,
3081: p_task_id => p_repeating_task_id,
3082: p_delete_future_recurrences => fnd_api.g_false,
3083: x_return_status => l_return_status

Line 3134: jta_cal_appointment_pvt.delete_appointment (

3130: l_task_id := get_task_id (p_sync_id => p_task_rec.syncid);
3131: l_ovn := get_ovn (p_task_id => l_task_id);
3132:
3133: IF p_task_rec.objectcode = G_APPOINTMENT THEN
3134: jta_cal_appointment_pvt.delete_appointment (
3135: p_object_version_number => l_ovn,
3136: p_task_id => l_task_id,
3137: p_delete_future_recurrences => 'A',
3138: x_return_status => l_return_status