DBA Data[Home] [Help]

APPS.AR_CREDIT_MEMO_API_PUB_W dependencies on JTF_VARCHAR2_TABLE_2000

Line 3: procedure rosetta_table_copy_in_p6(t out nocopy ar_credit_memo_api_pub.cm_notes_tbl_type_cover, a0 JTF_VARCHAR2_TABLE_2000

1: package body ar_credit_memo_api_pub_w as
2: /* $Header: ARICMWFB.pls 120.7 2011/11/28 16:16:28 parln ship $ */
3: procedure rosetta_table_copy_in_p6(t out nocopy ar_credit_memo_api_pub.cm_notes_tbl_type_cover, a0 JTF_VARCHAR2_TABLE_2000
4: ) as
5: ddindx binary_integer; indx binary_integer;
6: begin
7: if a0 is not null and a0.count > 0 then

Line 22: procedure rosetta_table_copy_out_p6(t ar_credit_memo_api_pub.cm_notes_tbl_type_cover, a0 out nocopy JTF_VARCHAR2_TABLE_2000

18: end loop;
19: end if;
20: end if;
21: end rosetta_table_copy_in_p6;
22: procedure rosetta_table_copy_out_p6(t ar_credit_memo_api_pub.cm_notes_tbl_type_cover, a0 out nocopy JTF_VARCHAR2_TABLE_2000
23: ) as
24: ddindx binary_integer; indx binary_integer;
25: begin
26: if t is null or t.count = 0 then

Line 27: a0 := JTF_VARCHAR2_TABLE_2000();

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

Line 29: a0 := JTF_VARCHAR2_TABLE_2000();

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