DBA Data[Home] [Help]

APPS.AMS_CPYUTILITY_PVT_W dependencies on JTF_NUMBER_TABLE

Line 217: procedure rosetta_table_copy_in_p6(t out nocopy ams_cpyutility_pvt.log_act_used_id_table, a0 JTF_NUMBER_TABLE) as

213: end if;
214: end if;
215: end rosetta_table_copy_out_p5;
216:
217: procedure rosetta_table_copy_in_p6(t out nocopy ams_cpyutility_pvt.log_act_used_id_table, a0 JTF_NUMBER_TABLE) as
218: ddindx binary_integer; indx binary_integer;
219: begin
220: if a0 is not null and a0.count > 0 then
221: if a0.count > 0 then

Line 235: procedure rosetta_table_copy_out_p6(t ams_cpyutility_pvt.log_act_used_id_table, a0 out nocopy JTF_NUMBER_TABLE) as

231: end loop;
232: end if;
233: end if;
234: end rosetta_table_copy_in_p6;
235: procedure rosetta_table_copy_out_p6(t ams_cpyutility_pvt.log_act_used_id_table, a0 out nocopy JTF_NUMBER_TABLE) as
236: ddindx binary_integer; indx binary_integer;
237: begin
238: if t is null or t.count = 0 then
239: a0 := JTF_NUMBER_TABLE();

Line 239: a0 := JTF_NUMBER_TABLE();

235: procedure rosetta_table_copy_out_p6(t ams_cpyutility_pvt.log_act_used_id_table, a0 out nocopy JTF_NUMBER_TABLE) as
236: ddindx binary_integer; indx binary_integer;
237: begin
238: if t is null or t.count = 0 then
239: a0 := JTF_NUMBER_TABLE();
240: else
241: a0 := JTF_NUMBER_TABLE();
242: if t.count > 0 then
243: a0.extend(t.count);

Line 241: a0 := JTF_NUMBER_TABLE();

237: begin
238: if t is null or t.count = 0 then
239: a0 := JTF_NUMBER_TABLE();
240: else
241: a0 := JTF_NUMBER_TABLE();
242: if t.count > 0 then
243: a0.extend(t.count);
244: ddindx := t.first;
245: indx := 1;