DBA Data[Home] [Help]

APPS.OKL_ACCOUNTING_UTIL_W dependencies on JTF_VARCHAR2_TABLE_2000

Line 148: procedure rosetta_table_copy_in_p3(t out nocopy okl_accounting_util.error_message_type, a0 JTF_VARCHAR2_TABLE_2000) as

144: end if;
145: end if;
146: end rosetta_table_copy_out_p2;
147:
148: procedure rosetta_table_copy_in_p3(t out nocopy okl_accounting_util.error_message_type, a0 JTF_VARCHAR2_TABLE_2000) as
149: ddindx binary_integer; indx binary_integer;
150: begin
151: if a0 is not null and a0.count > 0 then
152: if a0.count > 0 then

Line 166: procedure rosetta_table_copy_out_p3(t okl_accounting_util.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as

162: end loop;
163: end if;
164: end if;
165: end rosetta_table_copy_in_p3;
166: procedure rosetta_table_copy_out_p3(t okl_accounting_util.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as
167: ddindx binary_integer; indx binary_integer;
168: begin
169: if t is null or t.count = 0 then
170: a0 := JTF_VARCHAR2_TABLE_2000();

Line 170: a0 := JTF_VARCHAR2_TABLE_2000();

166: procedure rosetta_table_copy_out_p3(t okl_accounting_util.error_message_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as
167: ddindx binary_integer; indx binary_integer;
168: begin
169: if t is null or t.count = 0 then
170: a0 := JTF_VARCHAR2_TABLE_2000();
171: else
172: a0 := JTF_VARCHAR2_TABLE_2000();
173: if t.count > 0 then
174: a0.extend(t.count);

Line 172: a0 := JTF_VARCHAR2_TABLE_2000();

168: begin
169: if t is null or t.count = 0 then
170: a0 := JTF_VARCHAR2_TABLE_2000();
171: else
172: a0 := JTF_VARCHAR2_TABLE_2000();
173: if t.count > 0 then
174: a0.extend(t.count);
175: ddindx := t.first;
176: indx := 1;

Line 271: procedure get_error_message(p_all_message out nocopy JTF_VARCHAR2_TABLE_2000

267:
268: okl_accounting_util_w.rosetta_table_copy_out_p1(ddp_seg_array_type, p_seg_array_type);
269: end;
270:
271: procedure get_error_message(p_all_message out nocopy JTF_VARCHAR2_TABLE_2000
272: )
273:
274: as
275: ddp_all_message okl_accounting_util.error_message_type;

Line 288: procedure get_error_msg(p_all_message out nocopy JTF_VARCHAR2_TABLE_2000

284: -- copy data back from the local variables to OUT or IN-OUT args, if any
285: okl_accounting_util_w.rosetta_table_copy_out_p3(ddp_all_message, p_all_message);
286: end;
287:
288: procedure get_error_msg(p_all_message out nocopy JTF_VARCHAR2_TABLE_2000
289: )
290:
291: as
292: ddp_all_message okl_accounting_util.error_message_type;