DBA Data[Home] [Help]

APPS.CN_IMPORT_PVT_W dependencies on CN_IMPORT_PVT

Line 1: package body cn_import_pvt_w as

1: package body cn_import_pvt_w as
2: /* $Header: cnwimps.pls 120.3 2005/09/14 03:39 vensrini noship $ */
3: rosetta_g_mistake_date date := to_date('01/01/+4713', 'MM/DD/SYYYY');
4: rosetta_g_miss_date date := to_date('01/01/-4712', 'MM/DD/SYYYY');
5:

Line 13: procedure rosetta_table_copy_in_p0(t out nocopy cn_import_pvt.char_data_set_type, a0 JTF_VARCHAR2_TABLE_2000) as

9: if d = rosetta_g_mistake_date then return fnd_api.g_miss_date; end if;
10: return d;
11: end;
12:
13: procedure rosetta_table_copy_in_p0(t out nocopy cn_import_pvt.char_data_set_type, a0 JTF_VARCHAR2_TABLE_2000) as
14: ddindx binary_integer; indx binary_integer;
15: begin
16: if a0 is not null and a0.count > 0 then
17: if a0.count > 0 then

Line 31: procedure rosetta_table_copy_out_p0(t cn_import_pvt.char_data_set_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as

27: end loop;
28: end if;
29: end if;
30: end rosetta_table_copy_in_p0;
31: procedure rosetta_table_copy_out_p0(t cn_import_pvt.char_data_set_type, a0 out nocopy JTF_VARCHAR2_TABLE_2000) as
32: ddindx binary_integer; indx binary_integer;
33: begin
34: if t is null or t.count = 0 then
35: a0 := JTF_VARCHAR2_TABLE_2000();

Line 54: procedure rosetta_table_copy_in_p1(t out nocopy cn_import_pvt.num_data_set_type, a0 JTF_NUMBER_TABLE) as

50: end if;
51: end if;
52: end rosetta_table_copy_out_p0;
53:
54: procedure rosetta_table_copy_in_p1(t out nocopy cn_import_pvt.num_data_set_type, a0 JTF_NUMBER_TABLE) as
55: ddindx binary_integer; indx binary_integer;
56: begin
57: if a0 is not null and a0.count > 0 then
58: if a0.count > 0 then

Line 72: procedure rosetta_table_copy_out_p1(t cn_import_pvt.num_data_set_type, a0 out nocopy JTF_NUMBER_TABLE) as

68: end loop;
69: end if;
70: end if;
71: end rosetta_table_copy_in_p1;
72: procedure rosetta_table_copy_out_p1(t cn_import_pvt.num_data_set_type, a0 out nocopy JTF_NUMBER_TABLE) as
73: ddindx binary_integer; indx binary_integer;
74: begin
75: if t is null or t.count = 0 then
76: a0 := JTF_NUMBER_TABLE();

Line 110: ddp_data cn_import_pvt.char_data_set_type;

106: , p_org_id NUMBER
107: )
108:
109: as
110: ddp_data cn_import_pvt.char_data_set_type;
111: ddindx binary_integer; indx binary_integer;
112: begin
113:
114: -- copy data to the local IN or IN-OUT args, if any

Line 123: cn_import_pvt_w.rosetta_table_copy_in_p0(ddp_data, p_data);

119:
120:
121:
122:
123: cn_import_pvt_w.rosetta_table_copy_in_p0(ddp_data, p_data);
124:
125:
126:
127:

Line 129: cn_import_pvt.client_stage_data(p_api_version,

125:
126:
127:
128: -- here's the delegated call to the old PL/SQL routine
129: cn_import_pvt.client_stage_data(p_api_version,
130: p_init_msg_list,
131: p_commit,
132: p_validation_level,
133: x_return_status,

Line 156: end cn_import_pvt_w;

152:
153:
154: end;
155:
156: end cn_import_pvt_w;