DBA Data[Home] [Help]

APPS.JTF_AMV_ITEM_PUB_W dependencies on JTF_NUMBER_TABLE

Line 25: procedure rosetta_table_copy_in_p1(t out nocopy jtf_amv_item_pub.number_tab_type, a0 JTF_NUMBER_TABLE) as

21: if n=b then return a; end if;
22: return n;
23: end;
24:
25: procedure rosetta_table_copy_in_p1(t out nocopy jtf_amv_item_pub.number_tab_type, a0 JTF_NUMBER_TABLE) as
26: ddindx binary_integer; indx binary_integer;
27: begin
28: if a0 is null then
29: t := null;

Line 49: procedure rosetta_table_copy_out_p1(t jtf_amv_item_pub.number_tab_type, a0 out nocopy JTF_NUMBER_TABLE) as

45: end loop;
46: end if;
47: end if;
48: end rosetta_table_copy_in_p1;
49: procedure rosetta_table_copy_out_p1(t jtf_amv_item_pub.number_tab_type, a0 out nocopy JTF_NUMBER_TABLE) as
50: ddindx binary_integer; indx binary_integer;
51: begin
52: if t is null then
53: a0 := null;

Line 55: a0 := JTF_NUMBER_TABLE();

51: begin
52: if t is null then
53: a0 := null;
54: elsif t.count = 0 then
55: a0 := JTF_NUMBER_TABLE();
56: else
57: a0 := JTF_NUMBER_TABLE();
58: if t.count > 0 then
59: a0.extend(t.count);

Line 57: a0 := JTF_NUMBER_TABLE();

53: a0 := null;
54: elsif t.count = 0 then
55: a0 := JTF_NUMBER_TABLE();
56: else
57: a0 := JTF_NUMBER_TABLE();
58: if t.count > 0 then
59: a0.extend(t.count);
60: ddindx := t.first;
61: indx := 1;