DBA Data[Home] [Help]

APPS.HZ_PERSON_CUST_BO_PUB dependencies on FND_API

Line 27: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

23: --
24: -- ARGUMENTS
25: -- IN:
26: -- p_init_msg_list Initialize message stack if it is set to
27: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
28: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
29: -- the completeness of business object.
30: -- p_person_cust_obj Logical person customer account object.
31: -- p_created_by_module Created by module.

Line 28: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate

24: -- ARGUMENTS
25: -- IN:
26: -- p_init_msg_list Initialize message stack if it is set to
27: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
28: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
29: -- the completeness of business object.
30: -- p_person_cust_obj Logical person customer account object.
31: -- p_created_by_module Created by module.
32: -- OUT:

Line 34: -- be fnd_api.g_ret_sts_success (success),

30: -- p_person_cust_obj Logical person customer account object.
31: -- p_created_by_module Created by module.
32: -- OUT:
33: -- x_return_status Return status after the call. The status can
34: -- be fnd_api.g_ret_sts_success (success),
35: -- fnd_api.g_ret_sts_error (error),
36: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
37: -- x_msg_count Number of messages in message stack.
38: -- x_msg_data Message text if x_msg_count is 1.

Line 35: -- fnd_api.g_ret_sts_error (error),

31: -- p_created_by_module Created by module.
32: -- OUT:
33: -- x_return_status Return status after the call. The status can
34: -- be fnd_api.g_ret_sts_success (success),
35: -- fnd_api.g_ret_sts_error (error),
36: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
37: -- x_msg_count Number of messages in message stack.
38: -- x_msg_data Message text if x_msg_count is 1.
39: -- x_person_id Person ID.

Line 36: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

32: -- OUT:
33: -- x_return_status Return status after the call. The status can
34: -- be fnd_api.g_ret_sts_success (success),
35: -- fnd_api.g_ret_sts_error (error),
36: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
37: -- x_msg_count Number of messages in message stack.
38: -- x_msg_data Message text if x_msg_count is 1.
39: -- x_person_id Person ID.
40: --

Line 49: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

45: -- 14-DEC-2004 Arnold Ng Created.
46:
47:
48: PROCEDURE create_person_cust_bo(
49: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
50: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
51: p_person_cust_obj IN HZ_PERSON_CUST_BO,
52: p_created_by_module IN VARCHAR2,
53: x_return_status OUT NOCOPY VARCHAR2,

Line 50: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,

46:
47:
48: PROCEDURE create_person_cust_bo(
49: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
50: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
51: p_person_cust_obj IN HZ_PERSON_CUST_BO,
52: p_created_by_module IN VARCHAR2,
53: x_return_status OUT NOCOPY VARCHAR2,
54: x_msg_count OUT NOCOPY NUMBER,

Line 82: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,

78: * @rep:doccd 120hztig.pdf Create Person Customer Business Object, Oracle Trading Community Architecture Technical Implementation Guide
79: */
80:
81: PROCEDURE create_person_cust_bo(
82: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
83: p_person_cust_obj IN HZ_PERSON_CUST_BO,
84: p_created_by_module IN VARCHAR2,
85: p_obj_source IN VARCHAR2 := null,
86: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

Line 86: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

82: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
83: p_person_cust_obj IN HZ_PERSON_CUST_BO,
84: p_created_by_module IN VARCHAR2,
85: p_obj_source IN VARCHAR2 := null,
86: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
87: x_return_status OUT NOCOPY VARCHAR2,
88: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
89: x_return_obj OUT NOCOPY HZ_PERSON_CUST_BO,
90: x_person_id OUT NOCOPY NUMBER

Line 103: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

99: --
100: -- ARGUMENTS
101: -- IN:
102: -- p_init_msg_list Initialize message stack if it is set to
103: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
104: -- p_person_cust_obj Logical person customer account object.
105: -- p_created_by_module Created by module.
106: -- OUT:
107: -- x_return_status Return status after the call. The status can

Line 108: -- be fnd_api.g_ret_sts_success (success),

104: -- p_person_cust_obj Logical person customer account object.
105: -- p_created_by_module Created by module.
106: -- OUT:
107: -- x_return_status Return status after the call. The status can
108: -- be fnd_api.g_ret_sts_success (success),
109: -- fnd_api.g_ret_sts_error (error),
110: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
111: -- x_msg_count Number of messages in message stack.
112: -- x_msg_data Message text if x_msg_count is 1.

Line 109: -- fnd_api.g_ret_sts_error (error),

105: -- p_created_by_module Created by module.
106: -- OUT:
107: -- x_return_status Return status after the call. The status can
108: -- be fnd_api.g_ret_sts_success (success),
109: -- fnd_api.g_ret_sts_error (error),
110: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
111: -- x_msg_count Number of messages in message stack.
112: -- x_msg_data Message text if x_msg_count is 1.
113: -- x_person_id Person ID.

Line 110: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

106: -- OUT:
107: -- x_return_status Return status after the call. The status can
108: -- be fnd_api.g_ret_sts_success (success),
109: -- fnd_api.g_ret_sts_error (error),
110: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
111: -- x_msg_count Number of messages in message stack.
112: -- x_msg_data Message text if x_msg_count is 1.
113: -- x_person_id Person ID.
114: --

Line 123: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

119: -- 14-DEC-2004 Arnold Ng Created.
120:
121:
122: PROCEDURE update_person_cust_bo(
123: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
124: p_person_cust_obj IN HZ_PERSON_CUST_BO,
125: p_created_by_module IN VARCHAR2,
126: x_return_status OUT NOCOPY VARCHAR2,
127: x_msg_count OUT NOCOPY NUMBER,

Line 158: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

154: PROCEDURE update_person_cust_bo(
155: p_person_cust_obj IN HZ_PERSON_CUST_BO,
156: p_created_by_module IN VARCHAR2,
157: p_obj_source IN VARCHAR2 := null,
158: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
159: x_return_status OUT NOCOPY VARCHAR2,
160: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
161: x_return_obj OUT NOCOPY HZ_PERSON_CUST_BO,
162: x_person_id OUT NOCOPY NUMBER

Line 175: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

171: --
172: -- ARGUMENTS
173: -- IN:
174: -- p_init_msg_list Initialize message stack if it is set to
175: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
176: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
177: -- the completeness of business object.
178: -- p_person_cust_obj Logical person customer account object.
179: -- p_created_by_module Created by module.

Line 176: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate

172: -- ARGUMENTS
173: -- IN:
174: -- p_init_msg_list Initialize message stack if it is set to
175: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
176: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
177: -- the completeness of business object.
178: -- p_person_cust_obj Logical person customer account object.
179: -- p_created_by_module Created by module.
180: -- OUT:

Line 182: -- be fnd_api.g_ret_sts_success (success),

178: -- p_person_cust_obj Logical person customer account object.
179: -- p_created_by_module Created by module.
180: -- OUT:
181: -- x_return_status Return status after the call. The status can
182: -- be fnd_api.g_ret_sts_success (success),
183: -- fnd_api.g_ret_sts_error (error),
184: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
185: -- x_msg_count Number of messages in message stack.
186: -- x_msg_data Message text if x_msg_count is 1.

Line 183: -- fnd_api.g_ret_sts_error (error),

179: -- p_created_by_module Created by module.
180: -- OUT:
181: -- x_return_status Return status after the call. The status can
182: -- be fnd_api.g_ret_sts_success (success),
183: -- fnd_api.g_ret_sts_error (error),
184: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
185: -- x_msg_count Number of messages in message stack.
186: -- x_msg_data Message text if x_msg_count is 1.
187: -- x_person_id Person ID.

Line 184: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

180: -- OUT:
181: -- x_return_status Return status after the call. The status can
182: -- be fnd_api.g_ret_sts_success (success),
183: -- fnd_api.g_ret_sts_error (error),
184: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
185: -- x_msg_count Number of messages in message stack.
186: -- x_msg_data Message text if x_msg_count is 1.
187: -- x_person_id Person ID.
188: --

Line 197: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

193: -- 14-DEC-2004 Arnold Ng Created.
194:
195:
196: PROCEDURE save_person_cust_bo(
197: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
198: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
199: p_person_cust_obj IN HZ_PERSON_CUST_BO,
200: p_created_by_module IN VARCHAR2,
201: x_return_status OUT NOCOPY VARCHAR2,

Line 198: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,

194:
195:
196: PROCEDURE save_person_cust_bo(
197: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
198: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
199: p_person_cust_obj IN HZ_PERSON_CUST_BO,
200: p_created_by_module IN VARCHAR2,
201: x_return_status OUT NOCOPY VARCHAR2,
202: x_msg_count OUT NOCOPY NUMBER,

Line 234: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,

230: */
231:
232:
233: PROCEDURE save_person_cust_bo(
234: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
235: p_person_cust_obj IN HZ_PERSON_CUST_BO,
236: p_created_by_module IN VARCHAR2,
237: p_obj_source IN VARCHAR2 := null,
238: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

Line 238: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

234: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
235: p_person_cust_obj IN HZ_PERSON_CUST_BO,
236: p_created_by_module IN VARCHAR2,
237: p_obj_source IN VARCHAR2 := null,
238: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
239: x_return_status OUT NOCOPY VARCHAR2,
240: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
241: x_return_obj OUT NOCOPY HZ_PERSON_CUST_BO,
242: x_person_id OUT NOCOPY NUMBER

Line 256: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.

252: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
253: --
254: -- ARGUMENTS
255: -- IN:
256: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.
257: -- p_person_id Person ID.
258: -- p_person_os Person orig system.
259: -- p_person_osr Person orig system reference.
260:

Line 264: -- be fnd_api.g_ret_sts_success (success),

260:
261: -- OUT:
262: -- x_person_cust_obj Logical person customer record.
263: -- x_return_status Return status after the call. The status can
264: -- be fnd_api.g_ret_sts_success (success),
265: -- fnd_api.g_ret_sts_error (error),
266: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
267: -- x_msg_count Number of messages in message stack.
268: -- x_msg_data Message text if x_msg_count is 1.

Line 265: -- fnd_api.g_ret_sts_error (error),

261: -- OUT:
262: -- x_person_cust_obj Logical person customer record.
263: -- x_return_status Return status after the call. The status can
264: -- be fnd_api.g_ret_sts_success (success),
265: -- fnd_api.g_ret_sts_error (error),
266: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
267: -- x_msg_count Number of messages in message stack.
268: -- x_msg_data Message text if x_msg_count is 1.
269: --

Line 266: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

262: -- x_person_cust_obj Logical person customer record.
263: -- x_return_status Return status after the call. The status can
264: -- be fnd_api.g_ret_sts_success (success),
265: -- fnd_api.g_ret_sts_error (error),
266: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
267: -- x_msg_count Number of messages in message stack.
268: -- x_msg_data Message text if x_msg_count is 1.
269: --
270: -- NOTES

Line 298: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

294: */
295:
296:
297: PROCEDURE get_person_cust_bo(
298: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
299: p_person_id IN NUMBER,
300: p_person_os IN VARCHAR2,
301: p_person_osr IN VARCHAR2,
302: x_person_cust_obj OUT NOCOPY HZ_PERSON_CUST_BO,

Line 351: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

347: -- ARGUMENTS
348: -- IN:
349: -- p_init_msg_list Initialize message stack if it is set to
350: -- p_event_id BES Event identifier.
351: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
352: -- OUT:
353: -- x_person_cust_objs One or more created logical person customer.
354: -- x_return_status Return status after the call. The status can
355: -- be fnd_api.g_ret_sts_success (success),

Line 355: -- be fnd_api.g_ret_sts_success (success),

351: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
352: -- OUT:
353: -- x_person_cust_objs One or more created logical person customer.
354: -- x_return_status Return status after the call. The status can
355: -- be fnd_api.g_ret_sts_success (success),
356: -- fnd_api.g_ret_sts_error (error),
357: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
358: -- x_msg_count Number of messages in message stack.
359: -- x_msg_data Message text if x_msg_count is 1.

Line 356: -- fnd_api.g_ret_sts_error (error),

352: -- OUT:
353: -- x_person_cust_objs One or more created logical person customer.
354: -- x_return_status Return status after the call. The status can
355: -- be fnd_api.g_ret_sts_success (success),
356: -- fnd_api.g_ret_sts_error (error),
357: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
358: -- x_msg_count Number of messages in message stack.
359: -- x_msg_data Message text if x_msg_count is 1.
360: --

Line 357: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

353: -- x_person_cust_objs One or more created logical person customer.
354: -- x_return_status Return status after the call. The status can
355: -- be fnd_api.g_ret_sts_success (success),
356: -- fnd_api.g_ret_sts_error (error),
357: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
358: -- x_msg_count Number of messages in message stack.
359: -- x_msg_data Message text if x_msg_count is 1.
360: --
361: -- NOTES

Line 384: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

380: them in a table structure and returns them to the caller.
381: */
382:
383: PROCEDURE get_person_custs_created(
384: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
385: p_event_id IN NUMBER,
386: x_person_cust_objs OUT NOCOPY HZ_PERSON_CUST_BO_TBL,
387: x_return_status OUT NOCOPY VARCHAR2,
388: x_msg_count OUT NOCOPY NUMBER,

Line 433: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

429: -- ARGUMENTS
430: -- IN:
431: -- p_init_msg_list Initialize message stack if it is set to
432: -- p_event_id BES Event identifier.
433: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
434: -- OUT:
435: -- x_person_cust_objs One or more created logical person.
436: -- x_return_status Return status after the call. The status can
437: -- be fnd_api.g_ret_sts_success (success),

Line 437: -- be fnd_api.g_ret_sts_success (success),

433: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
434: -- OUT:
435: -- x_person_cust_objs One or more created logical person.
436: -- x_return_status Return status after the call. The status can
437: -- be fnd_api.g_ret_sts_success (success),
438: -- fnd_api.g_ret_sts_error (error),
439: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
440: -- x_msg_count Number of messages in message stack.
441: -- x_msg_data Message text if x_msg_count is 1.

Line 438: -- fnd_api.g_ret_sts_error (error),

434: -- OUT:
435: -- x_person_cust_objs One or more created logical person.
436: -- x_return_status Return status after the call. The status can
437: -- be fnd_api.g_ret_sts_success (success),
438: -- fnd_api.g_ret_sts_error (error),
439: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
440: -- x_msg_count Number of messages in message stack.
441: -- x_msg_data Message text if x_msg_count is 1.
442: --

Line 439: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

435: -- x_person_cust_objs One or more created logical person.
436: -- x_return_status Return status after the call. The status can
437: -- be fnd_api.g_ret_sts_success (success),
438: -- fnd_api.g_ret_sts_error (error),
439: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
440: -- x_msg_count Number of messages in message stack.
441: -- x_msg_data Message text if x_msg_count is 1.
442: --
443: -- NOTES

Line 463: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

459: them to the caller.
460: */
461:
462: PROCEDURE get_person_custs_updated(
463: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
464: p_event_id IN NUMBER,
465: x_person_cust_objs OUT NOCOPY HZ_PERSON_CUST_BO_TBL,
466: x_return_status OUT NOCOPY VARCHAR2,
467: x_msg_count OUT NOCOPY NUMBER,

Line 534: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

530: -- IN:
531: -- p_init_msg_list Initialize message stack if it is set to
532: -- p_event_id BES Event identifier.
533: -- p_person_cust_id Person customer identifier.
534: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
535: -- OUT:
536: -- x_person_cust_obj One updated logical person.
537: -- x_return_status Return status after the call. The status can
538: -- be fnd_api.g_ret_sts_success (success),

Line 538: -- be fnd_api.g_ret_sts_success (success),

534: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
535: -- OUT:
536: -- x_person_cust_obj One updated logical person.
537: -- x_return_status Return status after the call. The status can
538: -- be fnd_api.g_ret_sts_success (success),
539: -- fnd_api.g_ret_sts_error (error),
540: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
541: -- x_msg_count Number of messages in message stack.
542: -- x_msg_data Message text if x_msg_count is 1.

Line 539: -- fnd_api.g_ret_sts_error (error),

535: -- OUT:
536: -- x_person_cust_obj One updated logical person.
537: -- x_return_status Return status after the call. The status can
538: -- be fnd_api.g_ret_sts_success (success),
539: -- fnd_api.g_ret_sts_error (error),
540: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
541: -- x_msg_count Number of messages in message stack.
542: -- x_msg_data Message text if x_msg_count is 1.
543: --

Line 540: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

536: -- x_person_cust_obj One updated logical person.
537: -- x_return_status Return status after the call. The status can
538: -- be fnd_api.g_ret_sts_success (success),
539: -- fnd_api.g_ret_sts_error (error),
540: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
541: -- x_msg_count Number of messages in message stack.
542: -- x_msg_data Message text if x_msg_count is 1.
543: --
544: -- NOTES

Line 552: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

548: -- 06-JUN-2005 AWU Created.
549: --
550:
551: PROCEDURE get_person_cust_updated(
552: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
553: p_event_id IN NUMBER,
554: p_person_cust_id IN NUMBER,
555: x_person_cust_obj OUT NOCOPY HZ_PERSON_CUST_BO,
556: x_return_status OUT NOCOPY VARCHAR2,

Line 631: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

627: */
628:
629: -- get TCA identifiers for create event
630: PROCEDURE get_ids_person_custs_created (
631: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
632: p_event_id IN NUMBER,
633: x_person_cust_ids OUT NOCOPY HZ_EXTRACT_BO_UTIL_PVT.BO_ID_TBL,
634: x_return_status OUT NOCOPY VARCHAR2,
635: x_msg_count OUT NOCOPY NUMBER,

Line 660: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

656: * @rep:doccd 120hztig.pdf Get Updated Business Object Procedures, Oracle Trading Community Architecture Technical Implementation Guide
657: */
658: -- get TCA identifiers for update event
659: PROCEDURE get_ids_person_custs_updated (
660: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
661: p_event_id IN NUMBER,
662: x_person_cust_ids OUT NOCOPY HZ_EXTRACT_BO_UTIL_PVT.BO_ID_TBL,
663: x_return_status OUT NOCOPY VARCHAR2,
664: x_msg_count OUT NOCOPY NUMBER,

Line 692: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,

688: * @rep:doccd 120hztig.pdf Create Person Customer Business Object, Oracle Trading Community Architecture Technical Implementation Guide
689: */
690:
691: PROCEDURE create_person_cust_v2_bo(
692: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
693: p_person_cust_v2_obj IN HZ_PERSON_CUST_V2_BO,
694: p_created_by_module IN VARCHAR2,
695: p_obj_source IN VARCHAR2 := null,
696: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

Line 696: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

692: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
693: p_person_cust_v2_obj IN HZ_PERSON_CUST_V2_BO,
694: p_created_by_module IN VARCHAR2,
695: p_obj_source IN VARCHAR2 := null,
696: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
697: x_return_status OUT NOCOPY VARCHAR2,
698: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
699: x_return_obj OUT NOCOPY HZ_PERSON_CUST_V2_BO,
700: x_person_id OUT NOCOPY NUMBER

Line 729: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

725: PROCEDURE update_person_cust_v2_bo(
726: p_person_cust_v2_obj IN HZ_PERSON_CUST_V2_BO,
727: p_created_by_module IN VARCHAR2,
728: p_obj_source IN VARCHAR2 := null,
729: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
730: x_return_status OUT NOCOPY VARCHAR2,
731: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
732: x_return_obj OUT NOCOPY HZ_PERSON_CUST_V2_BO,
733: x_person_id OUT NOCOPY NUMBER

Line 763: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,

759: */
760:
761:
762: PROCEDURE save_person_cust_v2_bo(
763: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
764: p_person_cust_v2_obj IN HZ_PERSON_CUST_V2_BO,
765: p_created_by_module IN VARCHAR2,
766: p_obj_source IN VARCHAR2 := null,
767: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

Line 767: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

763: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
764: p_person_cust_v2_obj IN HZ_PERSON_CUST_V2_BO,
765: p_created_by_module IN VARCHAR2,
766: p_obj_source IN VARCHAR2 := null,
767: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
768: x_return_status OUT NOCOPY VARCHAR2,
769: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
770: x_return_obj OUT NOCOPY HZ_PERSON_CUST_V2_BO,
771: x_person_id OUT NOCOPY NUMBER

Line 785: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.

781: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
782: --
783: -- ARGUMENTS
784: -- IN:
785: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.
786: -- p_person_id Person ID.
787: -- p_person_os Person orig system.
788: -- p_person_osr Person orig system reference.
789:

Line 793: -- be fnd_api.g_ret_sts_success (success),

789:
790: -- OUT:
791: -- x_person_cust_v2_obj Logical person customer record.
792: -- x_return_status Return status after the call. The status can
793: -- be fnd_api.g_ret_sts_success (success),
794: -- fnd_api.g_ret_sts_error (error),
795: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
796: -- x_msg_count Number of messages in message stack.
797: -- x_msg_data Message text if x_msg_count is 1.

Line 794: -- fnd_api.g_ret_sts_error (error),

790: -- OUT:
791: -- x_person_cust_v2_obj Logical person customer record.
792: -- x_return_status Return status after the call. The status can
793: -- be fnd_api.g_ret_sts_success (success),
794: -- fnd_api.g_ret_sts_error (error),
795: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
796: -- x_msg_count Number of messages in message stack.
797: -- x_msg_data Message text if x_msg_count is 1.
798: --

Line 795: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

791: -- x_person_cust_v2_obj Logical person customer record.
792: -- x_return_status Return status after the call. The status can
793: -- be fnd_api.g_ret_sts_success (success),
794: -- fnd_api.g_ret_sts_error (error),
795: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
796: -- x_msg_count Number of messages in message stack.
797: -- x_msg_data Message text if x_msg_count is 1.
798: --
799: -- NOTES

Line 827: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

823: */
824:
825:
826: PROCEDURE get_person_cust_v2_bo(
827: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
828: p_person_id IN NUMBER,
829: p_person_os IN VARCHAR2,
830: p_person_osr IN VARCHAR2,
831: x_person_cust_v2_obj OUT NOCOPY HZ_PERSON_CUST_V2_BO,

Line 882: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

878: -- ARGUMENTS
879: -- IN:
880: -- p_init_msg_list Initialize message stack if it is set to
881: -- p_event_id BES Event identifier.
882: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
883: -- OUT:
884: -- x_person_cust_v2_objs One or more created logical person customer.
885: -- x_return_status Return status after the call. The status can
886: -- be fnd_api.g_ret_sts_success (success),

Line 886: -- be fnd_api.g_ret_sts_success (success),

882: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
883: -- OUT:
884: -- x_person_cust_v2_objs One or more created logical person customer.
885: -- x_return_status Return status after the call. The status can
886: -- be fnd_api.g_ret_sts_success (success),
887: -- fnd_api.g_ret_sts_error (error),
888: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
889: -- x_msg_count Number of messages in message stack.
890: -- x_msg_data Message text if x_msg_count is 1.

Line 887: -- fnd_api.g_ret_sts_error (error),

883: -- OUT:
884: -- x_person_cust_v2_objs One or more created logical person customer.
885: -- x_return_status Return status after the call. The status can
886: -- be fnd_api.g_ret_sts_success (success),
887: -- fnd_api.g_ret_sts_error (error),
888: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
889: -- x_msg_count Number of messages in message stack.
890: -- x_msg_data Message text if x_msg_count is 1.
891: --

Line 888: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

884: -- x_person_cust_v2_objs One or more created logical person customer.
885: -- x_return_status Return status after the call. The status can
886: -- be fnd_api.g_ret_sts_success (success),
887: -- fnd_api.g_ret_sts_error (error),
888: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
889: -- x_msg_count Number of messages in message stack.
890: -- x_msg_data Message text if x_msg_count is 1.
891: --
892: -- NOTES

Line 915: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

911: them in a table structure and returns them to the caller.
912: */
913:
914: PROCEDURE get_v2_person_custs_created(
915: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
916: p_event_id IN NUMBER,
917: x_person_cust_v2_objs OUT NOCOPY HZ_PERSON_CUST_V2_BO_TBL,
918: x_return_status OUT NOCOPY VARCHAR2,
919: x_msg_count OUT NOCOPY NUMBER,

Line 964: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

960: -- ARGUMENTS
961: -- IN:
962: -- p_init_msg_list Initialize message stack if it is set to
963: -- p_event_id BES Event identifier.
964: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
965: -- OUT:
966: -- x_person_cust_v2_objs One or more created logical person.
967: -- x_return_status Return status after the call. The status can
968: -- be fnd_api.g_ret_sts_success (success),

Line 968: -- be fnd_api.g_ret_sts_success (success),

964: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
965: -- OUT:
966: -- x_person_cust_v2_objs One or more created logical person.
967: -- x_return_status Return status after the call. The status can
968: -- be fnd_api.g_ret_sts_success (success),
969: -- fnd_api.g_ret_sts_error (error),
970: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
971: -- x_msg_count Number of messages in message stack.
972:

Line 969: -- fnd_api.g_ret_sts_error (error),

965: -- OUT:
966: -- x_person_cust_v2_objs One or more created logical person.
967: -- x_return_status Return status after the call. The status can
968: -- be fnd_api.g_ret_sts_success (success),
969: -- fnd_api.g_ret_sts_error (error),
970: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
971: -- x_msg_count Number of messages in message stack.
972:
973: -- x_msg_data Message text if x_msg_count is 1.

Line 970: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

966: -- x_person_cust_v2_objs One or more created logical person.
967: -- x_return_status Return status after the call. The status can
968: -- be fnd_api.g_ret_sts_success (success),
969: -- fnd_api.g_ret_sts_error (error),
970: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
971: -- x_msg_count Number of messages in message stack.
972:
973: -- x_msg_data Message text if x_msg_count is 1.
974: -- NOTES

Line 994: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

990: them to the caller.
991: */
992:
993: PROCEDURE get_v2_person_custs_updated(
994: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
995: p_event_id IN NUMBER,
996: x_person_cust_v2_objs OUT NOCOPY HZ_PERSON_CUST_V2_BO_TBL,
997: x_return_status OUT NOCOPY VARCHAR2,
998: x_msg_count OUT NOCOPY NUMBER,

Line 1066: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.

1062: -- IN:
1063: -- p_init_msg_list Initialize message stack if it is set to
1064: -- p_event_id BES Event identifier.
1065: -- p_person_cust_id Person customer identifier.
1066: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1067: -- OUT:
1068: -- x_person_cust_v2_obj One updated logical person.
1069: -- x_return_status Return status after the call. The status can
1070: -- be fnd_api.g_ret_sts_success (success),

Line 1070: -- be fnd_api.g_ret_sts_success (success),

1066: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1067: -- OUT:
1068: -- x_person_cust_v2_obj One updated logical person.
1069: -- x_return_status Return status after the call. The status can
1070: -- be fnd_api.g_ret_sts_success (success),
1071: -- fnd_api.g_ret_sts_error (error),
1072: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1073: -- x_msg_count Number of messages in message stack.
1074: -- x_msg_data Message text if x_msg_count is 1.

Line 1071: -- fnd_api.g_ret_sts_error (error),

1067: -- OUT:
1068: -- x_person_cust_v2_obj One updated logical person.
1069: -- x_return_status Return status after the call. The status can
1070: -- be fnd_api.g_ret_sts_success (success),
1071: -- fnd_api.g_ret_sts_error (error),
1072: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1073: -- x_msg_count Number of messages in message stack.
1074: -- x_msg_data Message text if x_msg_count is 1.
1075: --

Line 1072: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

1068: -- x_person_cust_v2_obj One updated logical person.
1069: -- x_return_status Return status after the call. The status can
1070: -- be fnd_api.g_ret_sts_success (success),
1071: -- fnd_api.g_ret_sts_error (error),
1072: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1073: -- x_msg_count Number of messages in message stack.
1074: -- x_msg_data Message text if x_msg_count is 1.
1075: --
1076: -- NOTES

Line 1084: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

1080: -- 04-FEB-2008 VSEGU Created.
1081: --
1082:
1083: PROCEDURE get_v2_person_cust_updated(
1084: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1085: p_event_id IN NUMBER,
1086: p_person_cust_id IN NUMBER,
1087: x_person_cust_v2_obj OUT NOCOPY HZ_PERSON_CUST_V2_BO,
1088: x_return_status OUT NOCOPY VARCHAR2,