DBA Data[Home] [Help]

APPS.OKL_SEC_CONCURRENT_PVT_W dependencies on JTF_VARCHAR2_TABLE_2000

Line 22: procedure rosetta_table_copy_in_p22(t out nocopy okl_sec_concurrent_pvt.error_message_type, a0 JTF_VARCHAR2_TABLE_2000) as

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

Line 40: procedure rosetta_table_copy_out_p22(t okl_sec_concurrent_pvt.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as

36: end loop;
37: end if;
38: end if;
39: end rosetta_table_copy_in_p22;
40: procedure rosetta_table_copy_out_p22(t okl_sec_concurrent_pvt.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as
41: ddindx binary_integer; indx binary_integer;
42: begin
43: if t is null or t.count = 0 then
44: a0 := JTF_VARCHAR2_TABLE_2000();

Line 44: a0 := JTF_VARCHAR2_TABLE_2000();

40: procedure rosetta_table_copy_out_p22(t okl_sec_concurrent_pvt.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as
41: ddindx binary_integer; indx binary_integer;
42: begin
43: if t is null or t.count = 0 then
44: a0 := JTF_VARCHAR2_TABLE_2000();
45: else
46: a0 := JTF_VARCHAR2_TABLE_2000();
47: if t.count > 0 then
48: a0.extend(t.count);

Line 46: a0 := JTF_VARCHAR2_TABLE_2000();

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