DBA Data[Home] [Help]

APPS.AMS_APPROVAL_DETAILS_PVT_W dependencies on JTF_NUMBER_TABLE

Line 21: procedure rosetta_table_copy_in_p1(t OUT NOCOPY ams_approval_details_pvt.t_approval_id_table, a0 JTF_NUMBER_TABLE) as

17: if d = rosetta_g_mistake_date then return fnd_api.g_miss_date; end if;
18: return d;
19: end;
20:
21: procedure rosetta_table_copy_in_p1(t OUT NOCOPY ams_approval_details_pvt.t_approval_id_table, a0 JTF_NUMBER_TABLE) as
22: ddindx binary_integer; indx binary_integer;
23: begin
24: if a0 is not null and a0.count > 0 then
25: if a0.count > 0 then

Line 39: procedure rosetta_table_copy_out_p1(t ams_approval_details_pvt.t_approval_id_table, a0 OUT NOCOPY JTF_NUMBER_TABLE) as

35: end loop;
36: end if;
37: end if;
38: end rosetta_table_copy_in_p1;
39: procedure rosetta_table_copy_out_p1(t ams_approval_details_pvt.t_approval_id_table, a0 OUT NOCOPY JTF_NUMBER_TABLE) as
40: ddindx binary_integer; indx binary_integer;
41: begin
42: if t is null or t.count = 0 then
43: a0 := JTF_NUMBER_TABLE();

Line 43: a0 := JTF_NUMBER_TABLE();

39: procedure rosetta_table_copy_out_p1(t ams_approval_details_pvt.t_approval_id_table, a0 OUT NOCOPY JTF_NUMBER_TABLE) as
40: ddindx binary_integer; indx binary_integer;
41: begin
42: if t is null or t.count = 0 then
43: a0 := JTF_NUMBER_TABLE();
44: else
45: a0 := JTF_NUMBER_TABLE();
46: if t.count > 0 then
47: a0.extend(t.count);

Line 45: a0 := JTF_NUMBER_TABLE();

41: begin
42: if t is null or t.count = 0 then
43: a0 := JTF_NUMBER_TABLE();
44: else
45: a0 := JTF_NUMBER_TABLE();
46: if t.count > 0 then
47: a0.extend(t.count);
48: ddindx := t.first;
49: indx := 1;