DBA Data[Home] [Help]

APPS.JTF_TASK_RECURRENCES_PUB_OA_W dependencies on JTF_DATE_TABLE

Line 3: procedure rosetta_table_copy_in_p1(t out nocopy jtf_task_recurrences_pub.output_dates_rec, a0 JTF_DATE_TABLE) as

1: package body jtf_task_recurrences_pub_oa_w as
2: /* $Header: jtfbtkub.pls 115.1 2003/09/23 22:45:26 twan noship $ */
3: procedure rosetta_table_copy_in_p1(t out nocopy jtf_task_recurrences_pub.output_dates_rec, a0 JTF_DATE_TABLE) as
4: ddindx binary_integer; indx binary_integer;
5: begin
6: if a0 is not null and a0.count > 0 then
7: if a0.count > 0 then

Line 21: procedure rosetta_table_copy_out_p1(t jtf_task_recurrences_pub.output_dates_rec, a0 out nocopy JTF_DATE_TABLE) as

17: end loop;
18: end if;
19: end if;
20: end rosetta_table_copy_in_p1;
21: procedure rosetta_table_copy_out_p1(t jtf_task_recurrences_pub.output_dates_rec, a0 out nocopy JTF_DATE_TABLE) as
22: ddindx binary_integer; indx binary_integer;
23: begin
24: if t is null or t.count = 0 then
25: a0 := JTF_DATE_TABLE();

Line 25: a0 := JTF_DATE_TABLE();

21: procedure rosetta_table_copy_out_p1(t jtf_task_recurrences_pub.output_dates_rec, a0 out nocopy JTF_DATE_TABLE) as
22: ddindx binary_integer; indx binary_integer;
23: begin
24: if t is null or t.count = 0 then
25: a0 := JTF_DATE_TABLE();
26: else
27: a0 := JTF_DATE_TABLE();
28: if t.count > 0 then
29: a0.extend(t.count);

Line 27: a0 := JTF_DATE_TABLE();

23: begin
24: if t is null or t.count = 0 then
25: a0 := JTF_DATE_TABLE();
26: else
27: a0 := JTF_DATE_TABLE();
28: if t.count > 0 then
29: a0.extend(t.count);
30: ddindx := t.first;
31: indx := 1;