DBA Data[Home] [Help]

APPS.JTF_TASK_RECURRENCES_PUB_W dependencies on JTF_DATE_TABLE

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

12: if d < rosetta_g_mistake_date_low then return fnd_api.g_miss_date; end if;
13: return d;
14: end;
15:
16: procedure rosetta_table_copy_in_p1(t out nocopy jtf_task_recurrences_pub.output_dates_rec, a0 JTF_DATE_TABLE) as
17: ddindx binary_integer; indx binary_integer;
18: begin
19: if a0 is not null and a0.count > 0 then
20: if a0.count > 0 then

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

30: end loop;
31: end if;
32: end if;
33: end rosetta_table_copy_in_p1;
34: procedure rosetta_table_copy_out_p1(t jtf_task_recurrences_pub.output_dates_rec, a0 out nocopy JTF_DATE_TABLE) as
35: ddindx binary_integer; indx binary_integer;
36: begin
37: if t is null or t.count = 0 then
38: a0 := JTF_DATE_TABLE();

Line 38: a0 := JTF_DATE_TABLE();

34: procedure rosetta_table_copy_out_p1(t jtf_task_recurrences_pub.output_dates_rec, a0 out nocopy JTF_DATE_TABLE) as
35: ddindx binary_integer; indx binary_integer;
36: begin
37: if t is null or t.count = 0 then
38: a0 := JTF_DATE_TABLE();
39: else
40: a0 := JTF_DATE_TABLE();
41: if t.count > 0 then
42: a0.extend(t.count);

Line 40: a0 := JTF_DATE_TABLE();

36: begin
37: if t is null or t.count = 0 then
38: a0 := JTF_DATE_TABLE();
39: else
40: a0 := JTF_DATE_TABLE();
41: if t.count > 0 then
42: a0.extend(t.count);
43: ddindx := t.first;
44: indx := 1;