DBA Data[Home] [Help]

APPS.HZ_EXTRACT_PERSON_BO_PVT dependencies on HZ_PERSON_BO

Line 87: x_person_obj OUT NOCOPY HZ_PERSON_BO,

83: PROCEDURE get_person_bo(
84: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
85: p_person_id IN NUMBER,
86: p_action_type IN VARCHAR2 := NULL,
87: x_person_obj OUT NOCOPY HZ_PERSON_BO,
88: x_return_status OUT NOCOPY VARCHAR2,
89: x_msg_count OUT NOCOPY NUMBER,
90: x_msg_data OUT NOCOPY VARCHAR2
91: );

Line 99: --the procedure returns database objects of the type HZ_PERSON_BO for all of

95: -- PROCEDURE get_persons_created
96: --
97: -- DESCRIPTION
98: --The caller provides an identifier for the Persons created business event and
99: --the procedure returns database objects of the type HZ_PERSON_BO for all of
100: --the Person business objects from the business event.
101:
102: --
103: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED

Line 135: HZ_PERSON_BO_PVT.get_person_bo

131: business event signifies that one or more Person business objects have been created.
132: The caller provides an identifier for the Persons Created business event and the procedure
133: returns all of the Person business objects from the business event. For each business object
134: creation captured in the business event, the procedure calls the generic Get operation:
135: HZ_PERSON_BO_PVT.get_person_bo
136:
137: Gathering all of the returned business objects from those API calls, the procedure packages
138: them in a table structure and returns them to the caller.
139: */

Line 145: x_person_objs OUT NOCOPY HZ_PERSON_BO_TBL,

141:
142: PROCEDURE get_persons_created(
143: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
144: p_event_id IN NUMBER,
145: x_person_objs OUT NOCOPY HZ_PERSON_BO_TBL,
146: x_return_status OUT NOCOPY VARCHAR2,
147: x_msg_count OUT NOCOPY NUMBER,
148: x_msg_data OUT NOCOPY VARCHAR2
149: );

Line 159: --the procedure returns database objects of the type HZ_PERSON_BO for all of

155: -- PROCEDURE get_persons_updated
156: --
157: -- DESCRIPTION
158: --The caller provides an identifier for the Persons update business event and
159: --the procedure returns database objects of the type HZ_PERSON_BO for all of
160: --the Person business objects from the business event.
161:
162: --
163: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED

Line 193: the type HZ_PERSON_BO for all of the Person business objects from the business event.

189: The Get Persons Updated procedure is a service to retrieve all of the Person business objects whose updates have been
190: captured by the logical business event. Each Persons Updated business event signifies that one or more Person business
191: objects have been updated.
192: The caller provides an identifier for the Persons Update business event and the procedure returns database objects of
193: the type HZ_PERSON_BO for all of the Person business objects from the business event.
194: Gathering all of the returned database objects from those API calls, the procedure packages them in a table structure
195: and returns them to the caller.
196: */
197:

Line 201: x_person_objs OUT NOCOPY HZ_PERSON_BO_TBL,

197:
198: PROCEDURE get_persons_updated(
199: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
200: p_event_id IN NUMBER,
201: x_person_objs OUT NOCOPY HZ_PERSON_BO_TBL,
202: x_return_status OUT NOCOPY VARCHAR2,
203: x_msg_count OUT NOCOPY NUMBER,
204: x_msg_data OUT NOCOPY VARCHAR2
205: );

Line 213: --the procedure returns one database object of the type HZ_PERSON_BO

209: -- PROCEDURE get_person_updated
210: --
211: -- DESCRIPTION
212: --The caller provides an identifier for the Persons update business event and person_id
213: --the procedure returns one database object of the type HZ_PERSON_BO
214:
215: --
216: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
217: --

Line 248: x_person_obj OUT NOCOPY HZ_PERSON_BO,

244: PROCEDURE get_person_updated(
245: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
246: p_event_id IN NUMBER,
247: p_person_id IN NUMBER,
248: x_person_obj OUT NOCOPY HZ_PERSON_BO,
249: x_return_status OUT NOCOPY VARCHAR2,
250: x_msg_count OUT NOCOPY NUMBER,
251: x_msg_data OUT NOCOPY VARCHAR2
252: );

Line 257: px_person_obj IN OUT NOCOPY HZ_PERSON_BO,

253:
254: -- called in hz_extract_person_cust_bo_pvt
255: procedure set_person_bo_action_type(p_event_id IN NUMBER,
256: p_root_id IN NUMBER,
257: px_person_obj IN OUT NOCOPY HZ_PERSON_BO,
258: x_return_status OUT NOCOPY VARCHAR2);
259:
260:
261: END HZ_EXTRACT_PERSON_BO_PVT;