DBA Data[Home] [Help]

APPS.AMV_MATCH_PVT_W dependencies on JTF_VARCHAR2_TABLE_4000

Line 63: procedure rosetta_table_copy_in_p4(t out nocopy amv_match_pvt.terr_name_tbl_type, a0 JTF_VARCHAR2_TABLE_4000) as

59: end if;
60: end if;
61: end rosetta_table_copy_out_p3;
62:
63: procedure rosetta_table_copy_in_p4(t out nocopy amv_match_pvt.terr_name_tbl_type, a0 JTF_VARCHAR2_TABLE_4000) as
64: ddindx binary_integer; indx binary_integer;
65: begin
66: if a0 is not null and a0.count > 0 then
67: if a0.count > 0 then

Line 81: procedure rosetta_table_copy_out_p4(t amv_match_pvt.terr_name_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_4000) as

77: end loop;
78: end if;
79: end if;
80: end rosetta_table_copy_in_p4;
81: procedure rosetta_table_copy_out_p4(t amv_match_pvt.terr_name_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_4000) as
82: ddindx binary_integer; indx binary_integer;
83: begin
84: if t is null or t.count = 0 then
85: a0 := JTF_VARCHAR2_TABLE_4000();

Line 85: a0 := JTF_VARCHAR2_TABLE_4000();

81: procedure rosetta_table_copy_out_p4(t amv_match_pvt.terr_name_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_4000) as
82: ddindx binary_integer; indx binary_integer;
83: begin
84: if t is null or t.count = 0 then
85: a0 := JTF_VARCHAR2_TABLE_4000();
86: else
87: a0 := JTF_VARCHAR2_TABLE_4000();
88: if t.count > 0 then
89: a0.extend(t.count);

Line 87: a0 := JTF_VARCHAR2_TABLE_4000();

83: begin
84: if t is null or t.count = 0 then
85: a0 := JTF_VARCHAR2_TABLE_4000();
86: else
87: a0 := JTF_VARCHAR2_TABLE_4000();
88: if t.count > 0 then
89: a0.extend(t.count);
90: ddindx := t.first;
91: indx := 1;

Line 186: , x_terr_name_tbl out nocopy JTF_VARCHAR2_TABLE_4000

182: , p_check_login_user VARCHAR2
183: , p_resource_id NUMBER
184: , p_resource_type VARCHAR2
185: , x_terr_id_tbl out nocopy JTF_NUMBER_TABLE
186: , x_terr_name_tbl out nocopy JTF_VARCHAR2_TABLE_4000
187: )
188:
189: as
190: ddx_terr_id_tbl amv_match_pvt.terr_id_tbl_type;