DBA Data[Home] [Help]

APPS.PV_USER_MGMT_PVT_W dependencies on JTF_VARCHAR2_TABLE_100

Line 22: procedure rosetta_table_copy_in_p5(t out nocopy pv_user_mgmt_pvt.partner_types_tbl_type, a0 JTF_VARCHAR2_TABLE_100

18: if n=b then return a; end if;
19: return n;
20: end;
21:
22: procedure rosetta_table_copy_in_p5(t out nocopy pv_user_mgmt_pvt.partner_types_tbl_type, a0 JTF_VARCHAR2_TABLE_100
23: ) as
24: ddindx binary_integer; indx binary_integer;
25: begin
26: if a0 is not null and a0.count > 0 then

Line 41: procedure rosetta_table_copy_out_p5(t pv_user_mgmt_pvt.partner_types_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_100

37: end loop;
38: end if;
39: end if;
40: end rosetta_table_copy_in_p5;
41: procedure rosetta_table_copy_out_p5(t pv_user_mgmt_pvt.partner_types_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_100
42: ) as
43: ddindx binary_integer; indx binary_integer;
44: begin
45: if t is null or t.count = 0 then

Line 46: a0 := JTF_VARCHAR2_TABLE_100();

42: ) as
43: ddindx binary_integer; indx binary_integer;
44: begin
45: if t is null or t.count = 0 then
46: a0 := JTF_VARCHAR2_TABLE_100();
47: else
48: a0 := JTF_VARCHAR2_TABLE_100();
49: if t.count > 0 then
50: a0.extend(t.count);

Line 48: a0 := JTF_VARCHAR2_TABLE_100();

44: begin
45: if t is null or t.count = 0 then
46: a0 := JTF_VARCHAR2_TABLE_100();
47: else
48: a0 := JTF_VARCHAR2_TABLE_100();
49: if t.count > 0 then
50: a0.extend(t.count);
51: ddindx := t.first;
52: indx := 1;