DBA Data[Home] [Help]

APPS.JTA_CAL_ATTENDEES_PVT_W dependencies on JTA_CAL_ATTENDEES_PVT

Line 1: package body jta_cal_attendees_pvt_w as

1: package body jta_cal_attendees_pvt_w as
2: /* $Header: jtacatwb.pls 115.1 2002/12/07 01:28:21 rdespoto ship $ */
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_p1(t out nocopy jta_cal_attendees_pvt.resource_tbl, a0 JTF_NUMBER_TABLE

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_p1(t out nocopy jta_cal_attendees_pvt.resource_tbl, a0 JTF_NUMBER_TABLE
14: , a1 JTF_VARCHAR2_TABLE_100
15: ) as
16: ddindx binary_integer; indx binary_integer;
17: begin

Line 34: procedure rosetta_table_copy_out_p1(t jta_cal_attendees_pvt.resource_tbl, a0 out nocopy JTF_NUMBER_TABLE

30: end loop;
31: end if;
32: end if;
33: end rosetta_table_copy_in_p1;
34: procedure rosetta_table_copy_out_p1(t jta_cal_attendees_pvt.resource_tbl, a0 out nocopy JTF_NUMBER_TABLE
35: , a1 out nocopy JTF_VARCHAR2_TABLE_100
36: ) as
37: ddindx binary_integer; indx binary_integer;
38: begin

Line 63: procedure rosetta_table_copy_in_p3(t out nocopy jta_cal_attendees_pvt.task_assign_tbl, a0 JTF_NUMBER_TABLE

59: end if;
60: end if;
61: end rosetta_table_copy_out_p1;
62:
63: procedure rosetta_table_copy_in_p3(t out nocopy jta_cal_attendees_pvt.task_assign_tbl, a0 JTF_NUMBER_TABLE
64: ) as
65: ddindx binary_integer; indx binary_integer;
66: begin
67: if a0 is not null and a0.count > 0 then

Line 82: procedure rosetta_table_copy_out_p3(t jta_cal_attendees_pvt.task_assign_tbl, a0 out nocopy JTF_NUMBER_TABLE

78: end loop;
79: end if;
80: end if;
81: end rosetta_table_copy_in_p3;
82: procedure rosetta_table_copy_out_p3(t jta_cal_attendees_pvt.task_assign_tbl, a0 out nocopy JTF_NUMBER_TABLE
83: ) as
84: ddindx binary_integer; indx binary_integer;
85: begin
86: if t is null or t.count = 0 then

Line 116: ddp_resources jta_cal_attendees_pvt.resource_tbl;

112: , p5_a0 out nocopy JTF_NUMBER_TABLE
113: )
114:
115: as
116: ddp_resources jta_cal_attendees_pvt.resource_tbl;
117: ddx_task_assignment_ids jta_cal_attendees_pvt.task_assign_tbl;
118: ddindx binary_integer; indx binary_integer;
119: begin
120:

Line 117: ddx_task_assignment_ids jta_cal_attendees_pvt.task_assign_tbl;

113: )
114:
115: as
116: ddp_resources jta_cal_attendees_pvt.resource_tbl;
117: ddx_task_assignment_ids jta_cal_attendees_pvt.task_assign_tbl;
118: ddindx binary_integer; indx binary_integer;
119: begin
120:
121: -- copy data to the local IN or IN-OUT args, if any

Line 123: jta_cal_attendees_pvt_w.rosetta_table_copy_in_p1(ddp_resources, p1_a0

119: begin
120:
121: -- copy data to the local IN or IN-OUT args, if any
122:
123: jta_cal_attendees_pvt_w.rosetta_table_copy_in_p1(ddp_resources, p1_a0
124: , p1_a1
125: );
126:
127:

Line 132: jta_cal_attendees_pvt.create_cal_assignment(p_task_id,

128:
129:
130:
131: -- here's the delegated call to the old PL/SQL routine
132: jta_cal_attendees_pvt.create_cal_assignment(p_task_id,
133: ddp_resources,
134: p_add_option,
135: p_invitor_res_id,
136: x_return_status,

Line 145: jta_cal_attendees_pvt_w.rosetta_table_copy_out_p3(ddx_task_assignment_ids, p5_a0

141:
142:
143:
144:
145: jta_cal_attendees_pvt_w.rosetta_table_copy_out_p3(ddx_task_assignment_ids, p5_a0
146: );
147: end;
148:
149: procedure delete_cal_assignment(p_object_version_number NUMBER

Line 157: ddp_task_assignments jta_cal_attendees_pvt.task_assign_tbl;

153: , x_return_status out nocopy VARCHAR2
154: )
155:
156: as
157: ddp_task_assignments jta_cal_attendees_pvt.task_assign_tbl;
158: ddindx binary_integer; indx binary_integer;
159: begin
160:
161: -- copy data to the local IN or IN-OUT args, if any

Line 163: jta_cal_attendees_pvt_w.rosetta_table_copy_in_p3(ddp_task_assignments, p1_a0

159: begin
160:
161: -- copy data to the local IN or IN-OUT args, if any
162:
163: jta_cal_attendees_pvt_w.rosetta_table_copy_in_p3(ddp_task_assignments, p1_a0
164: );
165:
166:
167:

Line 170: jta_cal_attendees_pvt.delete_cal_assignment(p_object_version_number,

166:
167:
168:
169: -- here's the delegated call to the old PL/SQL routine
170: jta_cal_attendees_pvt.delete_cal_assignment(p_object_version_number,
171: ddp_task_assignments,
172: p_delete_option,
173: p_no_of_attendies,
174: x_return_status);

Line 183: end jta_cal_attendees_pvt_w;

179:
180:
181: end;
182:
183: end jta_cal_attendees_pvt_w;