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 2321: IF jtf_task_recurrences_pub.creating_recurrences

2317: l_date VARCHAR2(200);
2318: l_availability VARCHAR2(1) := 'F';
2319:
2320: BEGIN
2321: IF jtf_task_recurrences_pub.creating_recurrences
2322: THEN
2323: RETURN;
2324: END IF;
2325:

Line 2326: jtf_task_recurrences_pub.creating_recurrences := TRUE;

2322: THEN
2323: RETURN;
2324: END IF;
2325:
2326: jtf_task_recurrences_pub.creating_recurrences := TRUE;
2327:
2328: SAVEPOINT create_task_recur_pvt;
2329: x_return_status := fnd_api.g_ret_sts_success;
2330:

Line 3165: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3161:
3162: END IF;
3163: ---------------------------------------------------
3164:
3165: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3166: i := i + 1;
3167: END LOOP;
3168: END IF;
3169: close c_task_details;

Line 3170: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3166: i := i + 1;
3167: END LOOP;
3168: END IF;
3169: close c_task_details;
3170: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3171: IF not jtf_task_utl.to_boolean (p_template_flag) AND -- Fix bug 2395216
3172: NOT original_date_meets_criteria(p_output_dates_tbl => l_output_dates_tbl ,
3173: p_start_date_active => p_start_date_active) and
3174: p_occurs_uom <> 'DAY'

Line 3222: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3218:
3219: EXCEPTION
3220: WHEN fnd_api.g_exc_unexpected_error
3221: THEN
3222: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3223:
3224:
3225: ROLLBACK TO create_task_recur_pvt;
3226: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 3230: jtf_task_recurrences_pub.creating_recurrences := FALSE;

3226: x_return_status := fnd_api.g_ret_sts_unexp_error;
3227: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
3228: WHEN OTHERS
3229: THEN
3230: jtf_task_recurrences_pub.creating_recurrences := FALSE;
3231: ROLLBACK TO create_task_recur_pvt;
3232: fnd_message.set_name ('JTF', 'JTF_TASK_UNKNOWN_ERROR');
3233: fnd_message.set_token ('P_TEXT', SQLCODE || SQLERRM);
3234: fnd_msg_pub.add;

Line 3330: l_task_details_rec jtf_task_recurrences_pub.task_details_rec;

3326:
3327: l_new_task_id NUMBER;
3328: l_first_task BOOLEAN := FALSE;
3329: l_delete_future_recurrences VARCHAR2(1);
3330: l_task_details_rec jtf_task_recurrences_pub.task_details_rec;
3331: l_output_dates_counter INTEGER;
3332: l_object_version_number NUMBER;
3333: i NUMBER;
3334: -- To fix bug 2721278