DBA Data[Home] [Help]

APPS.JTF_TASK_RECURRENCES_PVT dependencies on JTF_TASK_RECURRENCES_PUB

Line 2210: x_task_rec OUT NOCOPY jtf_task_recurrences_pub.task_details_rec,

2206: x_return_status OUT NOCOPY VARCHAR2,
2207: x_msg_count OUT NOCOPY NUMBER,
2208: x_msg_data OUT NOCOPY VARCHAR2,
2209: x_recurrence_rule_id OUT NOCOPY NUMBER,
2210: x_task_rec OUT NOCOPY jtf_task_recurrences_pub.task_details_rec,
2211: x_output_dates_counter OUT NOCOPY INTEGER,
2212: p_attribute1 IN VARCHAR2 DEFAULT null ,
2213: p_attribute2 IN VARCHAR2 DEFAULT null ,
2214: p_attribute3 IN VARCHAR2 DEFAULT null ,

Line 2315: IF jtf_task_recurrences_pub.creating_recurrences

2311:
2312: l_task_details c_task_details%rowtype;
2313:
2314: BEGIN
2315: IF jtf_task_recurrences_pub.creating_recurrences
2316: THEN
2317: RETURN;
2318: END IF;
2319:

Line 2320: jtf_task_recurrences_pub.creating_recurrences := TRUE;

2316: THEN
2317: RETURN;
2318: END IF;
2319:
2320: jtf_task_recurrences_pub.creating_recurrences := TRUE;
2321:
2322: SAVEPOINT create_task_recur_pvt;
2323: x_return_status := fnd_api.g_ret_sts_success;
2324:

Line 3111: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3107:
3108: END IF;
3109: ---------------------------------------------------
3110:
3111: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3112: i := i + 1;
3113: END LOOP;
3114: END IF;
3115: close c_task_details;

Line 3116: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3112: i := i + 1;
3113: END LOOP;
3114: END IF;
3115: close c_task_details;
3116: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3117: IF not jtf_task_utl.to_boolean (p_template_flag) AND -- Fix bug 2395216
3118: NOT original_date_meets_criteria(p_output_dates_tbl => l_output_dates_tbl ,
3119: p_start_date_active => p_start_date_active) and
3120: p_occurs_uom <> 'DAY'

Line 3168: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3164:
3165: EXCEPTION
3166: WHEN fnd_api.g_exc_unexpected_error
3167: THEN
3168: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3169:
3170:
3171: ROLLBACK TO create_task_recur_pvt;
3172: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 3176: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3172: x_return_status := fnd_api.g_ret_sts_unexp_error;
3173: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
3174: WHEN OTHERS
3175: THEN
3176: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3177: ROLLBACK TO create_task_recur_pvt;
3178: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');
3179: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);
3180: fnd_msg_pub.add;

Line 3276: l_task_details_rec jtf_task_recurrences_pub.task_details_rec;

3272:
3273: l_new_task_id NUMBER;
3274: l_first_task BOOLEAN := FALSE;
3275: l_delete_future_recurrences VARCHAR2(1);
3276: l_task_details_rec jtf_task_recurrences_pub.task_details_rec;
3277: l_output_dates_counter INTEGER;
3278: l_object_version_number NUMBER;
3279: i NUMBER;
3280: -- To fix bug 2721278