DBA Data[Home] [Help]

APPS.OKL_STREAMS_UTIL_W dependencies on JTF_DATE_TABLE

Line 104: procedure rosetta_table_copy_in_p22(t out nocopy okl_streams_util.datetabtyp, a0 JTF_DATE_TABLE) as

100: end if;
101: end if;
102: end rosetta_table_copy_out_p21;
103:
104: procedure rosetta_table_copy_in_p22(t out nocopy okl_streams_util.datetabtyp, a0 JTF_DATE_TABLE) as
105: ddindx binary_integer; indx binary_integer;
106: begin
107: if a0 is not null and a0.count > 0 then
108: if a0.count > 0 then

Line 122: procedure rosetta_table_copy_out_p22(t okl_streams_util.datetabtyp, a0 out nocopy JTF_DATE_TABLE) as

118: end loop;
119: end if;
120: end if;
121: end rosetta_table_copy_in_p22;
122: procedure rosetta_table_copy_out_p22(t okl_streams_util.datetabtyp, a0 out nocopy JTF_DATE_TABLE) as
123: ddindx binary_integer; indx binary_integer;
124: begin
125: if t is null or t.count = 0 then
126: a0 := JTF_DATE_TABLE();

Line 126: a0 := JTF_DATE_TABLE();

122: procedure rosetta_table_copy_out_p22(t okl_streams_util.datetabtyp, a0 out nocopy JTF_DATE_TABLE) as
123: ddindx binary_integer; indx binary_integer;
124: begin
125: if t is null or t.count = 0 then
126: a0 := JTF_DATE_TABLE();
127: else
128: a0 := JTF_DATE_TABLE();
129: if t.count > 0 then
130: a0.extend(t.count);

Line 128: a0 := JTF_DATE_TABLE();

124: begin
125: if t is null or t.count = 0 then
126: a0 := JTF_DATE_TABLE();
127: else
128: a0 := JTF_DATE_TABLE();
129: if t.count > 0 then
130: a0.extend(t.count);
131: ddindx := t.first;
132: indx := 1;