DBA Data[Home] [Help]

APPS.OKC_CDRL_PVT_W dependencies on JTF_VARCHAR2_TABLE_100

Line 3: procedure rosetta_table_copy_in_p0(t out nocopy okc_cdrl_pvt.exhibit_tbl_type, a0 JTF_VARCHAR2_TABLE_100) as

1: package body okc_cdrl_pvt_w as
2: /* $Header: OKCWCDRLB.pls 120.0.12020000.1 2013/02/19 15:03:07 serukull noship $ */
3: procedure rosetta_table_copy_in_p0(t out nocopy okc_cdrl_pvt.exhibit_tbl_type, a0 JTF_VARCHAR2_TABLE_100) as
4: ddindx binary_integer; indx binary_integer;
5: begin
6: if a0 is not null and a0.count > 0 then
7: if a0.count > 0 then

Line 21: procedure rosetta_table_copy_out_p0(t okc_cdrl_pvt.exhibit_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_100) as

17: end loop;
18: end if;
19: end if;
20: end rosetta_table_copy_in_p0;
21: procedure rosetta_table_copy_out_p0(t okc_cdrl_pvt.exhibit_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_100) as
22: ddindx binary_integer; indx binary_integer;
23: begin
24: if t is null or t.count = 0 then
25: a0 := JTF_VARCHAR2_TABLE_100();

Line 25: a0 := JTF_VARCHAR2_TABLE_100();

21: procedure rosetta_table_copy_out_p0(t okc_cdrl_pvt.exhibit_tbl_type, a0 out nocopy JTF_VARCHAR2_TABLE_100) as
22: ddindx binary_integer; indx binary_integer;
23: begin
24: if t is null or t.count = 0 then
25: a0 := JTF_VARCHAR2_TABLE_100();
26: else
27: a0 := JTF_VARCHAR2_TABLE_100();
28: if t.count > 0 then
29: a0.extend(t.count);

Line 27: a0 := JTF_VARCHAR2_TABLE_100();

23: begin
24: if t is null or t.count = 0 then
25: a0 := JTF_VARCHAR2_TABLE_100();
26: else
27: a0 := JTF_VARCHAR2_TABLE_100();
28: if t.count > 0 then
29: a0.extend(t.count);
30: ddindx := t.first;
31: indx := 1;