DBA Data[Home] [Help]

APPS.OKL_POOLCONC_PVT_W dependencies on JTF_VARCHAR2_TABLE_2000

Line 25: procedure rosetta_table_copy_in_p74(t out nocopy okl_poolconc_pvt.error_message_type, a0 JTF_VARCHAR2_TABLE_2000) as

21: if n=b then return a; end if;
22: return n;
23: end;
24:
25: procedure rosetta_table_copy_in_p74(t out nocopy okl_poolconc_pvt.error_message_type, a0 JTF_VARCHAR2_TABLE_2000) as
26: ddindx binary_integer; indx binary_integer;
27: begin
28: if a0 is not null and a0.count > 0 then
29: if a0.count > 0 then

Line 43: procedure rosetta_table_copy_out_p74(t okl_poolconc_pvt.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as

39: end loop;
40: end if;
41: end if;
42: end rosetta_table_copy_in_p74;
43: procedure rosetta_table_copy_out_p74(t okl_poolconc_pvt.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as
44: ddindx binary_integer; indx binary_integer;
45: begin
46: if t is null or t.count = 0 then
47: a0 := JTF_VARCHAR2_TABLE_2000();

Line 47: a0 := JTF_VARCHAR2_TABLE_2000();

43: procedure rosetta_table_copy_out_p74(t okl_poolconc_pvt.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as
44: ddindx binary_integer; indx binary_integer;
45: begin
46: if t is null or t.count = 0 then
47: a0 := JTF_VARCHAR2_TABLE_2000();
48: else
49: a0 := JTF_VARCHAR2_TABLE_2000();
50: if t.count > 0 then
51: a0.extend(t.count);

Line 49: a0 := JTF_VARCHAR2_TABLE_2000();

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