DBA Data[Home] [Help]

APPS.AMV_CATEGORY_PVT_W dependencies on JTF_VARCHAR2_TABLE_4000

Line 22: procedure rosetta_table_copy_in_p2(t out nocopy amv_category_pvt.amv_char_varray_type, a0 JTF_VARCHAR2_TABLE_4000) as

18: if n=b then return a; end if;
19: return n;
20: end;
21:
22: procedure rosetta_table_copy_in_p2(t out nocopy amv_category_pvt.amv_char_varray_type, a0 JTF_VARCHAR2_TABLE_4000) as
23: ddindx binary_integer; indx binary_integer;
24: begin
25: if a0 is null then
26: t := null;

Line 46: procedure rosetta_table_copy_out_p2(t amv_category_pvt.amv_char_varray_type, a0 out nocopy JTF_VARCHAR2_TABLE_4000) as

42: end loop;
43: end if;
44: end if;
45: end rosetta_table_copy_in_p2;
46: procedure rosetta_table_copy_out_p2(t amv_category_pvt.amv_char_varray_type, a0 out nocopy JTF_VARCHAR2_TABLE_4000) as
47: ddindx binary_integer; indx binary_integer;
48: begin
49: if t is null then
50: a0 := null;

Line 52: a0 := JTF_VARCHAR2_TABLE_4000();

48: begin
49: if t is null then
50: a0 := null;
51: elsif t.count = 0 then
52: a0 := JTF_VARCHAR2_TABLE_4000();
53: else
54: a0 := JTF_VARCHAR2_TABLE_4000();
55: if t.count > 0 then
56: a0.extend(t.count);

Line 54: a0 := JTF_VARCHAR2_TABLE_4000();

50: a0 := null;
51: elsif t.count = 0 then
52: a0 := JTF_VARCHAR2_TABLE_4000();
53: else
54: a0 := JTF_VARCHAR2_TABLE_4000();
55: if t.count > 0 then
56: a0.extend(t.count);
57: ddindx := t.first;
58: indx := 1;