DBA Data[Home] [Help]

APPS.HZ_CONTACT_POINT_V2PUB dependencies on FND_API

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

124: --
125: -- ARGUMENTS
126: -- IN:
127: -- p_init_msg_list Initialize message stack if it is set to
128: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
129: -- p_contact_point_rec Contact point record.
130: -- p_edi_rec EDI record.
131: -- p_email_rec Email record.
132: -- p_phone_rec Phone record.

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

135: -- IN/OUT:
136: -- OUT:
137: -- x_contact_point_id Contact point ID.
138: -- x_return_status Return status after the call. The status can
139: -- be fnd_api.g_ret_sts_success (success),
140: -- fnd_api.g_ret_sts_error (error),
141: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
142: -- x_msg_count Number of messages in message stack.
143: -- x_msg_data Message text if x_msg_count is 1.

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

136: -- OUT:
137: -- x_contact_point_id Contact point ID.
138: -- x_return_status Return status after the call. The status can
139: -- be fnd_api.g_ret_sts_success (success),
140: -- fnd_api.g_ret_sts_error (error),
141: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
142: -- x_msg_count Number of messages in message stack.
143: -- x_msg_data Message text if x_msg_count is 1.
144: --

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

137: -- x_contact_point_id Contact point ID.
138: -- x_return_status Return status after the call. The status can
139: -- be fnd_api.g_ret_sts_success (success),
140: -- fnd_api.g_ret_sts_error (error),
141: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
142: -- x_msg_count Number of messages in message stack.
143: -- x_msg_data Message text if x_msg_count is 1.
144: --
145: -- NOTES

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

172: * @rep:businessevent oracle.apps.ar.hz.ContactPoint.create
173: * @rep:doccd 120hztig.pdf Contact Point APIs, Oracle Trading Community Architecture Technical Implementation Guide
174: */
175: PROCEDURE create_contact_point (
176: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
177: p_contact_point_rec IN contact_point_rec_type,
178: p_edi_rec IN edi_rec_type := g_miss_edi_rec,
179: p_email_rec IN email_rec_type := g_miss_email_rec,
180: p_phone_rec IN phone_rec_type := g_miss_phone_rec,

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

196: --
197: -- ARGUMENTS
198: -- IN:
199: -- p_init_msg_list Initialize message stack if it is set to
200: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
201: -- p_contact_point_rec Contact point record.
202: -- p_edi_rec EDI record.
203: -- IN/OUT:
204: -- OUT:

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

203: -- IN/OUT:
204: -- OUT:
205: -- x_contact_point_id Contact point ID.
206: -- x_return_status Return status after the call. The status can
207: -- be fnd_api.g_ret_sts_success (success),
208: -- fnd_api.g_ret_sts_error (error),
209: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
210: -- x_msg_count Number of messages in message stack.
211: -- x_msg_data Message text if x_msg_count is 1.

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

204: -- OUT:
205: -- x_contact_point_id Contact point ID.
206: -- x_return_status Return status after the call. The status can
207: -- be fnd_api.g_ret_sts_success (success),
208: -- fnd_api.g_ret_sts_error (error),
209: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
210: -- x_msg_count Number of messages in message stack.
211: -- x_msg_data Message text if x_msg_count is 1.
212: --

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

205: -- x_contact_point_id Contact point ID.
206: -- x_return_status Return status after the call. The status can
207: -- be fnd_api.g_ret_sts_success (success),
208: -- fnd_api.g_ret_sts_error (error),
209: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
210: -- x_msg_count Number of messages in message stack.
211: -- x_msg_data Message text if x_msg_count is 1.
212: --
213: -- NOTES

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

218: -- enhanced backward compatibility.
219: --
220:
221: PROCEDURE create_edi_contact_point (
222: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
223: p_contact_point_rec IN contact_point_rec_type,
224: p_edi_rec IN edi_rec_type := g_miss_edi_rec,
225: x_contact_point_id OUT NOCOPY NUMBER,
226: x_return_status OUT NOCOPY VARCHAR2,

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

238: --
239: -- ARGUMENTS
240: -- IN:
241: -- p_init_msg_list Initialize message stack if it is set to
242: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
243: -- p_contact_point_rec Contact point record.
244: -- p_web_rec Web record.
245: -- IN/OUT:
246: -- OUT:

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

245: -- IN/OUT:
246: -- OUT:
247: -- x_contact_point_id Contact point ID.
248: -- x_return_status Return status after the call. The status can
249: -- be fnd_api.g_ret_sts_success (success),
250: -- fnd_api.g_ret_sts_error (error),
251: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
252: -- x_msg_count Number of messages in message stack.
253: -- x_msg_data Message text if x_msg_count is 1.

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

246: -- OUT:
247: -- x_contact_point_id Contact point ID.
248: -- x_return_status Return status after the call. The status can
249: -- be fnd_api.g_ret_sts_success (success),
250: -- fnd_api.g_ret_sts_error (error),
251: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
252: -- x_msg_count Number of messages in message stack.
253: -- x_msg_data Message text if x_msg_count is 1.
254: --

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

247: -- x_contact_point_id Contact point ID.
248: -- x_return_status Return status after the call. The status can
249: -- be fnd_api.g_ret_sts_success (success),
250: -- fnd_api.g_ret_sts_error (error),
251: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
252: -- x_msg_count Number of messages in message stack.
253: -- x_msg_data Message text if x_msg_count is 1.
254: --
255: -- NOTES

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

260: -- enhanced backward compatibility.
261: --
262:
263: PROCEDURE create_web_contact_point (
264: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
265: p_contact_point_rec IN contact_point_rec_type,
266: p_web_rec IN web_rec_type := g_miss_web_rec,
267: x_contact_point_id OUT NOCOPY NUMBER,
268: x_return_status OUT NOCOPY VARCHAR2,

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

280: --
281: -- ARGUMENTS
282: -- IN:
283: -- p_init_msg_list Initialize message stack if it is set to
284: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
285: -- p_contact_point_rec Contact point record.
286: -- p_eft_rec EFT record.
287: -- IN/OUT:
288: -- OUT:

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

287: -- IN/OUT:
288: -- OUT:
289: -- x_contact_point_id Contact point ID.
290: -- x_return_status Return status after the call. The status can
291: -- be fnd_api.g_ret_sts_success (success),
292: -- fnd_api.g_ret_sts_error (error),
293: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
294: -- x_msg_count Number of messages in message stack.
295: -- x_msg_data Message text if x_msg_count is 1.

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

288: -- OUT:
289: -- x_contact_point_id Contact point ID.
290: -- x_return_status Return status after the call. The status can
291: -- be fnd_api.g_ret_sts_success (success),
292: -- fnd_api.g_ret_sts_error (error),
293: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
294: -- x_msg_count Number of messages in message stack.
295: -- x_msg_data Message text if x_msg_count is 1.
296: --

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

289: -- x_contact_point_id Contact point ID.
290: -- x_return_status Return status after the call. The status can
291: -- be fnd_api.g_ret_sts_success (success),
292: -- fnd_api.g_ret_sts_error (error),
293: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
294: -- x_msg_count Number of messages in message stack.
295: -- x_msg_data Message text if x_msg_count is 1.
296: --
297: -- NOTES

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

304: -- consolidation support.
305: --
306:
307: PROCEDURE create_eft_contact_point (
308: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
309: p_contact_point_rec IN contact_point_rec_type,
310: p_eft_rec IN eft_rec_type := g_miss_eft_rec,
311: x_contact_point_id OUT NOCOPY NUMBER,
312: x_return_status OUT NOCOPY VARCHAR2,

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

324: --
325: -- ARGUMENTS
326: -- IN:
327: -- p_init_msg_list Initialize message stack if it is set to
328: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
329: -- p_contact_point_rec Contact point record.
330: -- p_phone_rec Phone record.
331: -- IN/OUT:
332: -- OUT:

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

331: -- IN/OUT:
332: -- OUT:
333: -- x_contact_point_id Contact point ID.
334: -- x_return_status Return status after the call. The status can
335: -- be fnd_api.g_ret_sts_success (success),
336: -- fnd_api.g_ret_sts_error (error),
337: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
338: -- x_msg_count Number of messages in message stack.
339: -- x_msg_data Message text if x_msg_count is 1.

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

332: -- OUT:
333: -- x_contact_point_id Contact point ID.
334: -- x_return_status Return status after the call. The status can
335: -- be fnd_api.g_ret_sts_success (success),
336: -- fnd_api.g_ret_sts_error (error),
337: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
338: -- x_msg_count Number of messages in message stack.
339: -- x_msg_data Message text if x_msg_count is 1.
340: --

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

333: -- x_contact_point_id Contact point ID.
334: -- x_return_status Return status after the call. The status can
335: -- be fnd_api.g_ret_sts_success (success),
336: -- fnd_api.g_ret_sts_error (error),
337: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
338: -- x_msg_count Number of messages in message stack.
339: -- x_msg_data Message text if x_msg_count is 1.
340: --
341: -- NOTES

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

346: -- enhanced backward compatibility.
347: --
348:
349: PROCEDURE create_phone_contact_point (
350: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
351: p_contact_point_rec IN contact_point_rec_type,
352: p_phone_rec IN phone_rec_type := g_miss_phone_rec,
353: x_contact_point_id OUT NOCOPY NUMBER,
354: x_return_status OUT NOCOPY VARCHAR2,

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

366: --
367: -- ARGUMENTS
368: -- IN:
369: -- p_init_msg_list Initialize message stack if it is set to
370: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
371: -- p_contact_point_rec Contact point record.
372: -- p_telex_rec Telex record.
373: -- IN/OUT:
374: -- OUT:

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

373: -- IN/OUT:
374: -- OUT:
375: -- x_contact_point_id Contact point ID.
376: -- x_return_status Return status after the call. The status can
377: -- be fnd_api.g_ret_sts_success (success),
378: -- fnd_api.g_ret_sts_error (error),
379: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
380: -- x_msg_count Number of messages in message stack.
381: -- x_msg_data Message text if x_msg_count is 1.

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

374: -- OUT:
375: -- x_contact_point_id Contact point ID.
376: -- x_return_status Return status after the call. The status can
377: -- be fnd_api.g_ret_sts_success (success),
378: -- fnd_api.g_ret_sts_error (error),
379: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
380: -- x_msg_count Number of messages in message stack.
381: -- x_msg_data Message text if x_msg_count is 1.
382: --

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

375: -- x_contact_point_id Contact point ID.
376: -- x_return_status Return status after the call. The status can
377: -- be fnd_api.g_ret_sts_success (success),
378: -- fnd_api.g_ret_sts_error (error),
379: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
380: -- x_msg_count Number of messages in message stack.
381: -- x_msg_data Message text if x_msg_count is 1.
382: --
383: -- NOTES

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

388: -- enhanced backward compatibility.
389: --
390:
391: PROCEDURE create_telex_contact_point (
392: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
393: p_contact_point_rec IN contact_point_rec_type,
394: p_telex_rec IN telex_rec_type := g_miss_telex_rec,
395: x_contact_point_id OUT NOCOPY NUMBER,
396: x_return_status OUT NOCOPY VARCHAR2,

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

408: --
409: -- ARGUMENTS
410: -- IN:
411: -- p_init_msg_list Initialize message stack if it is set to
412: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
413: -- p_contact_point_rec Contact point record.
414: -- p_email_rec Email record.
415: -- IN/OUT:
416: -- OUT:

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

415: -- IN/OUT:
416: -- OUT:
417: -- x_contact_point_id Contact point ID.
418: -- x_return_status Return status after the call. The status can
419: -- be fnd_api.g_ret_sts_success (success),
420: -- fnd_api.g_ret_sts_error (error),
421: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
422: -- x_msg_count Number of messages in message stack.
423: -- x_msg_data Message text if x_msg_count is 1.

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

416: -- OUT:
417: -- x_contact_point_id Contact point ID.
418: -- x_return_status Return status after the call. The status can
419: -- be fnd_api.g_ret_sts_success (success),
420: -- fnd_api.g_ret_sts_error (error),
421: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
422: -- x_msg_count Number of messages in message stack.
423: -- x_msg_data Message text if x_msg_count is 1.
424: --

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

417: -- x_contact_point_id Contact point ID.
418: -- x_return_status Return status after the call. The status can
419: -- be fnd_api.g_ret_sts_success (success),
420: -- fnd_api.g_ret_sts_error (error),
421: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
422: -- x_msg_count Number of messages in message stack.
423: -- x_msg_data Message text if x_msg_count is 1.
424: --
425: -- NOTES

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

430: -- enhanced backward compatibility.
431: --
432:
433: PROCEDURE create_email_contact_point (
434: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
435: p_contact_point_rec IN contact_point_rec_type,
436: p_email_rec IN email_rec_type := g_miss_email_rec,
437: x_contact_point_id OUT NOCOPY NUMBER,
438: x_return_status OUT NOCOPY VARCHAR2,

Line 454: -- FND_API.G_TRUE. Default is fnd_api.g_false.

450: --
451: -- ARGUMENTS
452: -- IN:
453: -- p_init_msg_list Initialize message stack if it is set to
454: -- FND_API.G_TRUE. Default is fnd_api.g_false.
455: -- p_contact_point_rec Contact point record.
456: -- p_edi_rec EDI record.
457: -- p_email_rec Email record.
458: -- p_phone_rec Phone record.

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

461: -- IN/OUT:
462: -- p_object_version_number Used for locking the being updated record.
463: -- OUT:
464: -- x_return_status Return status after the call. The status can
465: -- be fnd_api.g_ret_sts_success (success),
466: -- fnd_api.g_ret_sts_error (error),
467: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
468: -- x_msg_count Number of messages in message stack.
469: -- x_msg_data Message text if x_msg_count is 1.

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

462: -- p_object_version_number Used for locking the being updated record.
463: -- OUT:
464: -- x_return_status Return status after the call. The status can
465: -- be fnd_api.g_ret_sts_success (success),
466: -- fnd_api.g_ret_sts_error (error),
467: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
468: -- x_msg_count Number of messages in message stack.
469: -- x_msg_data Message text if x_msg_count is 1.
470: --

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

463: -- OUT:
464: -- x_return_status Return status after the call. The status can
465: -- be fnd_api.g_ret_sts_success (success),
466: -- fnd_api.g_ret_sts_error (error),
467: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
468: -- x_msg_count Number of messages in message stack.
469: -- x_msg_data Message text if x_msg_count is 1.
470: --
471: -- NOTES

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

499: * @rep:businessevent oracle.apps.ar.hz.ContactPoint.update
500: * @rep:doccd 120hztig.pdf Contact Point APIs, Oracle Trading Community Architecture Technical Implementation Guide
501: */
502: PROCEDURE update_contact_point (
503: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
504: p_contact_point_rec IN contact_point_rec_type,
505: p_edi_rec IN edi_rec_type := g_miss_edi_rec,
506: p_email_rec IN email_rec_type := g_miss_email_rec,
507: p_phone_rec IN phone_rec_type := g_miss_phone_rec,

Line 527: -- FND_API.G_TRUE. Default is fnd_api.g_false.

523: --
524: -- ARGUMENTS
525: -- IN:
526: -- p_init_msg_list Initialize message stack if it is set to
527: -- FND_API.G_TRUE. Default is fnd_api.g_false.
528: -- p_contact_point_rec Contact point record.
529: -- p_edi_rec EDI record.
530: -- IN/OUT:
531: -- p_object_version_number Used for locking the being updated record.

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

530: -- IN/OUT:
531: -- p_object_version_number Used for locking the being updated record.
532: -- OUT:
533: -- x_return_status Return status after the call. The status can
534: -- be fnd_api.g_ret_sts_success (success),
535: -- fnd_api.g_ret_sts_error (error),
536: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
537: -- x_msg_count Number of messages in message stack.
538: -- x_msg_data Message text if x_msg_count is 1.

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

531: -- p_object_version_number Used for locking the being updated record.
532: -- OUT:
533: -- x_return_status Return status after the call. The status can
534: -- be fnd_api.g_ret_sts_success (success),
535: -- fnd_api.g_ret_sts_error (error),
536: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
537: -- x_msg_count Number of messages in message stack.
538: -- x_msg_data Message text if x_msg_count is 1.
539: --

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

532: -- OUT:
533: -- x_return_status Return status after the call. The status can
534: -- be fnd_api.g_ret_sts_success (success),
535: -- fnd_api.g_ret_sts_error (error),
536: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
537: -- x_msg_count Number of messages in message stack.
538: -- x_msg_data Message text if x_msg_count is 1.
539: --
540: -- NOTES

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

545: -- enhanced backward compatibility.
546: --
547:
548: PROCEDURE update_edi_contact_point (
549: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
550: p_contact_point_rec IN contact_point_rec_type,
551: p_edi_rec IN edi_rec_type := g_miss_edi_rec,
552: p_object_version_number IN OUT NOCOPY NUMBER,
553: x_return_status OUT NOCOPY VARCHAR2,

Line 569: -- FND_API.G_TRUE. Default is fnd_api.g_false.

565: --
566: -- ARGUMENTS
567: -- IN:
568: -- p_init_msg_list Initialize message stack if it is set to
569: -- FND_API.G_TRUE. Default is fnd_api.g_false.
570: -- p_contact_point_rec Contact point record.
571: -- p_web_rec WEB record.
572: -- IN/OUT:
573: -- p_object_version_number Used for locking the being updated record.

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

572: -- IN/OUT:
573: -- p_object_version_number Used for locking the being updated record.
574: -- OUT:
575: -- x_return_status Return status after the call. The status can
576: -- be fnd_api.g_ret_sts_success (success),
577: -- fnd_api.g_ret_sts_error (error),
578: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
579: -- x_msg_count Number of messages in message stack.
580: -- x_msg_data Message text if x_msg_count is 1.

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

573: -- p_object_version_number Used for locking the being updated record.
574: -- OUT:
575: -- x_return_status Return status after the call. The status can
576: -- be fnd_api.g_ret_sts_success (success),
577: -- fnd_api.g_ret_sts_error (error),
578: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
579: -- x_msg_count Number of messages in message stack.
580: -- x_msg_data Message text if x_msg_count is 1.
581: --

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

574: -- OUT:
575: -- x_return_status Return status after the call. The status can
576: -- be fnd_api.g_ret_sts_success (success),
577: -- fnd_api.g_ret_sts_error (error),
578: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
579: -- x_msg_count Number of messages in message stack.
580: -- x_msg_data Message text if x_msg_count is 1.
581: --
582: -- NOTES

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

587: -- enhanced backward compatibility.
588: --
589:
590: PROCEDURE update_web_contact_point (
591: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
592: p_contact_point_rec IN contact_point_rec_type,
593: p_web_rec IN web_rec_type := g_miss_web_rec,
594: p_object_version_number IN OUT NOCOPY NUMBER,
595: x_return_status OUT NOCOPY VARCHAR2,

Line 611: -- FND_API.G_TRUE. Default is fnd_api.g_false.

607: --
608: -- ARGUMENTS
609: -- IN:
610: -- p_init_msg_list Initialize message stack if it is set to
611: -- FND_API.G_TRUE. Default is fnd_api.g_false.
612: -- p_contact_point_rec Contact point record.
613: -- p_eft_rec EFT record.
614: -- IN/OUT:
615: -- p_object_version_number Used for locking the being updated record.

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

614: -- IN/OUT:
615: -- p_object_version_number Used for locking the being updated record.
616: -- OUT:
617: -- x_return_status Return status after the call. The status can
618: -- be fnd_api.g_ret_sts_success (success),
619: -- fnd_api.g_ret_sts_error (error),
620: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
621: -- x_msg_count Number of messages in message stack.
622: -- x_msg_data Message text if x_msg_count is 1.

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

615: -- p_object_version_number Used for locking the being updated record.
616: -- OUT:
617: -- x_return_status Return status after the call. The status can
618: -- be fnd_api.g_ret_sts_success (success),
619: -- fnd_api.g_ret_sts_error (error),
620: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
621: -- x_msg_count Number of messages in message stack.
622: -- x_msg_data Message text if x_msg_count is 1.
623: --

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

616: -- OUT:
617: -- x_return_status Return status after the call. The status can
618: -- be fnd_api.g_ret_sts_success (success),
619: -- fnd_api.g_ret_sts_error (error),
620: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
621: -- x_msg_count Number of messages in message stack.
622: -- x_msg_data Message text if x_msg_count is 1.
623: --
624: -- NOTES

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

631: -- enhanced backward compatibility.
632: --
633:
634: PROCEDURE update_eft_contact_point (
635: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
636: p_contact_point_rec IN contact_point_rec_type,
637: p_eft_rec IN eft_rec_type := g_miss_eft_rec,
638: p_object_version_number IN OUT NOCOPY NUMBER,
639: x_return_status OUT NOCOPY VARCHAR2,

Line 655: -- FND_API.G_TRUE. Default is fnd_api.g_false.

651: --
652: -- ARGUMENTS
653: -- IN:
654: -- p_init_msg_list Initialize message stack if it is set to
655: -- FND_API.G_TRUE. Default is fnd_api.g_false.
656: -- p_contact_point_rec Contact point record.
657: -- p_phone_rec Phone record.
658: -- IN/OUT:
659: -- p_object_version_number Used for locking the being updated record.

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

658: -- IN/OUT:
659: -- p_object_version_number Used for locking the being updated record.
660: -- OUT:
661: -- x_return_status Return status after the call. The status can
662: -- be fnd_api.g_ret_sts_success (success),
663: -- fnd_api.g_ret_sts_error (error),
664: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
665: -- x_msg_count Number of messages in message stack.
666: -- x_msg_data Message text if x_msg_count is 1.

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

659: -- p_object_version_number Used for locking the being updated record.
660: -- OUT:
661: -- x_return_status Return status after the call. The status can
662: -- be fnd_api.g_ret_sts_success (success),
663: -- fnd_api.g_ret_sts_error (error),
664: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
665: -- x_msg_count Number of messages in message stack.
666: -- x_msg_data Message text if x_msg_count is 1.
667: --

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

660: -- OUT:
661: -- x_return_status Return status after the call. The status can
662: -- be fnd_api.g_ret_sts_success (success),
663: -- fnd_api.g_ret_sts_error (error),
664: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
665: -- x_msg_count Number of messages in message stack.
666: -- x_msg_data Message text if x_msg_count is 1.
667: --
668: -- NOTES

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

673: -- enhanced backward compatibility.
674: --
675:
676: PROCEDURE update_phone_contact_point (
677: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
678: p_contact_point_rec IN contact_point_rec_type,
679: p_phone_rec IN phone_rec_type := g_miss_phone_rec,
680: p_object_version_number IN OUT NOCOPY NUMBER,
681: x_return_status OUT NOCOPY VARCHAR2,

Line 697: -- FND_API.G_TRUE. Default is fnd_api.g_false.

693: --
694: -- ARGUMENTS
695: -- IN:
696: -- p_init_msg_list Initialize message stack if it is set to
697: -- FND_API.G_TRUE. Default is fnd_api.g_false.
698: -- p_contact_point_rec Contact point record.
699: -- p_telex_rec Telex record.
700: -- IN/OUT:
701: -- p_object_version_number Used for locking the being updated record.

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

700: -- IN/OUT:
701: -- p_object_version_number Used for locking the being updated record.
702: -- OUT:
703: -- x_return_status Return status after the call. The status can
704: -- be fnd_api.g_ret_sts_success (success),
705: -- fnd_api.g_ret_sts_error (error),
706: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
707: -- x_msg_count Number of messages in message stack.
708: -- x_msg_data Message text if x_msg_count is 1.

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

701: -- p_object_version_number Used for locking the being updated record.
702: -- OUT:
703: -- x_return_status Return status after the call. The status can
704: -- be fnd_api.g_ret_sts_success (success),
705: -- fnd_api.g_ret_sts_error (error),
706: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
707: -- x_msg_count Number of messages in message stack.
708: -- x_msg_data Message text if x_msg_count is 1.
709: --

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

702: -- OUT:
703: -- x_return_status Return status after the call. The status can
704: -- be fnd_api.g_ret_sts_success (success),
705: -- fnd_api.g_ret_sts_error (error),
706: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
707: -- x_msg_count Number of messages in message stack.
708: -- x_msg_data Message text if x_msg_count is 1.
709: --
710: -- NOTES

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

715: -- enhanced backward compatibility.
716: --
717:
718: PROCEDURE update_telex_contact_point (
719: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
720: p_contact_point_rec IN contact_point_rec_type,
721: p_telex_rec IN telex_rec_type := g_miss_telex_rec,
722: p_object_version_number IN OUT NOCOPY NUMBER,
723: x_return_status OUT NOCOPY VARCHAR2,

Line 739: -- FND_API.G_TRUE. Default is fnd_api.g_false.

735: --
736: -- ARGUMENTS
737: -- IN:
738: -- p_init_msg_list Initialize message stack if it is set to
739: -- FND_API.G_TRUE. Default is fnd_api.g_false.
740: -- p_contact_point_rec Contact point record.
741: -- p_email_rec Email record.
742: -- IN/OUT:
743: -- p_object_version_number Used for locking the being updated record.

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

742: -- IN/OUT:
743: -- p_object_version_number Used for locking the being updated record.
744: -- OUT:
745: -- x_return_status Return status after the call. The status can
746: -- be fnd_api.g_ret_sts_success (success),
747: -- fnd_api.g_ret_sts_error (error),
748: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
749: -- x_msg_count Number of messages in message stack.
750: -- x_msg_data Message text if x_msg_count is 1.

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

743: -- p_object_version_number Used for locking the being updated record.
744: -- OUT:
745: -- x_return_status Return status after the call. The status can
746: -- be fnd_api.g_ret_sts_success (success),
747: -- fnd_api.g_ret_sts_error (error),
748: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
749: -- x_msg_count Number of messages in message stack.
750: -- x_msg_data Message text if x_msg_count is 1.
751: --

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

744: -- OUT:
745: -- x_return_status Return status after the call. The status can
746: -- be fnd_api.g_ret_sts_success (success),
747: -- fnd_api.g_ret_sts_error (error),
748: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
749: -- x_msg_count Number of messages in message stack.
750: -- x_msg_data Message text if x_msg_count is 1.
751: --
752: -- NOTES

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

757: -- enhanced backward compatibility.
758: --
759:
760: PROCEDURE update_email_contact_point (
761: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
762: p_contact_point_rec IN contact_point_rec_type,
763: p_email_rec IN email_rec_type := g_miss_email_rec,
764: p_object_version_number IN OUT NOCOPY NUMBER,
765: x_return_status OUT NOCOPY VARCHAR2,

Line 781: -- fnd_api.g_true. Default is fnd_api.g_false.

777: --
778: -- ARGUMENTS
779: -- IN:
780: -- p_init_msg_list Initialize message stack if it is set to
781: -- fnd_api.g_true. Default is fnd_api.g_false.
782: -- p_contact_point_id Contact point ID.
783: -- IN/OUT:
784: -- OUT:
785: -- x_contact_point_rec Returned contact point record.

Line 792: -- be FND_API.G_RET_STS_SUCCESS (success),

788: -- x_phone_rec Returned phone record.
789: -- x_telex_rec Returned telex record.
790: -- x_web_rec Returned web record.
791: -- x_return_status Return status after the call. The status can
792: -- be FND_API.G_RET_STS_SUCCESS (success),
793: -- FND_API.G_RET_STS_ERROR (error),
794: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected
795: -- error).
796: -- x_msg_count Number of messages in message stack.

Line 793: -- FND_API.G_RET_STS_ERROR (error),

789: -- x_telex_rec Returned telex record.
790: -- x_web_rec Returned web record.
791: -- x_return_status Return status after the call. The status can
792: -- be FND_API.G_RET_STS_SUCCESS (success),
793: -- FND_API.G_RET_STS_ERROR (error),
794: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected
795: -- 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_UNEXP_ERROR (unexpected

790: -- x_web_rec Returned web record.
791: -- x_return_status Return status after the call. The status can
792: -- be FND_API.G_RET_STS_SUCCESS (success),
793: -- FND_API.G_RET_STS_ERROR (error),
794: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected
795: -- 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 810: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

806: --
807: --
808:
809: PROCEDURE get_contact_point_rec (
810: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
811: p_contact_point_id IN NUMBER,
812: x_contact_point_rec OUT NOCOPY contact_point_rec_type,
813: x_edi_rec OUT NOCOPY edi_rec_type,
814: x_email_rec OUT NOCOPY email_rec_type,

Line 834: -- FND_API.G_TRUE. Default is fnd_api.g_false.

830: --
831: -- ARGUMENTS
832: -- IN:
833: -- p_init_msg_list Initialize message stack if it is set to
834: -- FND_API.G_TRUE. Default is fnd_api.g_false.
835: -- p_contact_point_id Contact point ID.
836: -- IN/OUT:
837: -- OUT:
838: -- x_contact_point_rec Returned contact point record.

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

837: -- OUT:
838: -- x_contact_point_rec Returned contact point record.
839: -- x_edi_rec Returned EDI record.
840: -- x_return_status Return status after the call. The status can
841: -- be fnd_api.g_ret_sts_success (success),
842: -- fnd_api.g_ret_sts_error (error),
843: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
844: -- x_msg_count Number of messages in message stack.
845: -- x_msg_data Message text if x_msg_count is 1.

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

838: -- x_contact_point_rec Returned contact point record.
839: -- x_edi_rec Returned EDI record.
840: -- x_return_status Return status after the call. The status can
841: -- be fnd_api.g_ret_sts_success (success),
842: -- fnd_api.g_ret_sts_error (error),
843: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
844: -- x_msg_count Number of messages in message stack.
845: -- x_msg_data Message text if x_msg_count is 1.
846: --

Line 843: -- fnd_api.g_ret_sts_unexp_error (unexpected error).

839: -- x_edi_rec Returned EDI record.
840: -- x_return_status Return status after the call. The status can
841: -- be fnd_api.g_ret_sts_success (success),
842: -- fnd_api.g_ret_sts_error (error),
843: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
844: -- x_msg_count Number of messages in message stack.
845: -- x_msg_data Message text if x_msg_count is 1.
846: --
847: -- NOTES

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

853: -- enhanced backward compatibility.
854: --
855:
856: PROCEDURE get_edi_contact_point (
857: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
858: p_contact_point_id IN NUMBER,
859: x_contact_point_rec OUT NOCOPY contact_point_rec_type,
860: x_edi_rec OUT NOCOPY edi_rec_type,
861: x_return_status OUT NOCOPY VARCHAR2,

Line 877: -- FND_API.G_TRUE. Default is fnd_api.g_false.

873: --
874: -- ARGUMENTS
875: -- IN:
876: -- p_init_msg_list Initialize message stack if it is set to
877: -- FND_API.G_TRUE. Default is fnd_api.g_false.
878: -- p_contact_point_id Contact point ID.
879: -- IN/OUT:
880: -- OUT:
881: -- x_contact_point_rec Returned contact point record.

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

880: -- OUT:
881: -- x_contact_point_rec Returned contact point record.
882: -- x_eft_rec Returned EFT record.
883: -- x_return_status Return status after the call. The status can
884: -- be fnd_api.g_ret_sts_success (success),
885: -- fnd_api.g_ret_sts_error (error),
886: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
887: -- x_msg_count Number of messages in message stack.
888: -- x_msg_data Message text if x_msg_count is 1.

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

881: -- x_contact_point_rec Returned contact point record.
882: -- x_eft_rec Returned EFT record.
883: -- x_return_status Return status after the call. The status can
884: -- be fnd_api.g_ret_sts_success (success),
885: -- fnd_api.g_ret_sts_error (error),
886: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
887: -- x_msg_count Number of messages in message stack.
888: -- x_msg_data Message text if x_msg_count is 1.
889: --

Line 886: -- fnd_api.g_ret_sts_unexp_error (unexpected error).

882: -- x_eft_rec Returned EFT record.
883: -- x_return_status Return status after the call. The status can
884: -- be fnd_api.g_ret_sts_success (success),
885: -- fnd_api.g_ret_sts_error (error),
886: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
887: -- x_msg_count Number of messages in message stack.
888: -- x_msg_data Message text if x_msg_count is 1.
889: --
890: -- NOTES

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

896: -- enhanced backward compatibility.
897: --
898:
899: PROCEDURE get_eft_contact_point (
900: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
901: p_contact_point_id IN NUMBER,
902: x_contact_point_rec OUT NOCOPY contact_point_rec_type,
903: x_eft_rec OUT NOCOPY eft_rec_type,
904: x_return_status OUT NOCOPY VARCHAR2,

Line 920: -- FND_API.G_TRUE. Default is fnd_api.g_false.

916: --
917: -- ARGUMENTS
918: -- IN:
919: -- p_init_msg_list Initialize message stack if it is set to
920: -- FND_API.G_TRUE. Default is fnd_api.g_false.
921: -- p_contact_point_id Contact point ID.
922: -- IN/OUT:
923: -- OUT:
924: -- x_contact_point_rec Returned contact point record.

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

923: -- OUT:
924: -- x_contact_point_rec Returned contact point record.
925: -- x_web_rec Returned Web record.
926: -- x_return_status Return status after the call. The status can
927: -- be fnd_api.g_ret_sts_success (success),
928: -- fnd_api.g_ret_sts_error (error),
929: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
930: -- x_msg_count Number of messages in message stack.
931: -- x_msg_data Message text if x_msg_count is 1.

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

924: -- x_contact_point_rec Returned contact point record.
925: -- x_web_rec Returned Web record.
926: -- x_return_status Return status after the call. The status can
927: -- be fnd_api.g_ret_sts_success (success),
928: -- fnd_api.g_ret_sts_error (error),
929: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
930: -- x_msg_count Number of messages in message stack.
931: -- x_msg_data Message text if x_msg_count is 1.
932: --

Line 929: -- fnd_api.g_ret_sts_unexp_error (unexpected error).

925: -- x_web_rec Returned Web record.
926: -- x_return_status Return status after the call. The status can
927: -- be fnd_api.g_ret_sts_success (success),
928: -- fnd_api.g_ret_sts_error (error),
929: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
930: -- x_msg_count Number of messages in message stack.
931: -- x_msg_data Message text if x_msg_count is 1.
932: --
933: -- NOTES

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

939: -- enhanced backward compatibility.
940: --
941:
942: PROCEDURE get_web_contact_point (
943: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
944: p_contact_point_id IN NUMBER,
945: x_contact_point_rec OUT NOCOPY contact_point_rec_type,
946: x_web_rec OUT NOCOPY web_rec_type,
947: x_return_status OUT NOCOPY VARCHAR2,

Line 963: -- FND_API.G_TRUE. Default is fnd_api.g_false.

959: --
960: -- ARGUMENTS
961: -- IN:
962: -- p_init_msg_list Initialize message stack if it is set to
963: -- FND_API.G_TRUE. Default is fnd_api.g_false.
964: -- p_contact_point_id Contact point ID.
965: -- IN/OUT:
966: -- OUT:
967: -- x_contact_point_rec Returned contact point record.

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

966: -- OUT:
967: -- x_contact_point_rec Returned contact point record.
968: -- x_phone_rec Returned phone record.
969: -- x_return_status Return status after the call. The status can
970: -- be fnd_api.g_ret_sts_success (success),
971: -- fnd_api.g_ret_sts_error (error),
972: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
973: -- x_msg_count Number of messages in message stack.
974: -- x_msg_data Message text if x_msg_count is 1.

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

967: -- x_contact_point_rec Returned contact point record.
968: -- x_phone_rec Returned phone record.
969: -- x_return_status Return status after the call. The status can
970: -- be fnd_api.g_ret_sts_success (success),
971: -- fnd_api.g_ret_sts_error (error),
972: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
973: -- x_msg_count Number of messages in message stack.
974: -- x_msg_data Message text if x_msg_count is 1.
975: --

Line 972: -- fnd_api.g_ret_sts_unexp_error (unexpected error).

968: -- x_phone_rec Returned phone record.
969: -- x_return_status Return status after the call. The status can
970: -- be fnd_api.g_ret_sts_success (success),
971: -- fnd_api.g_ret_sts_error (error),
972: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
973: -- x_msg_count Number of messages in message stack.
974: -- x_msg_data Message text if x_msg_count is 1.
975: --
976: -- NOTES

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

982: -- enhanced backward compatibility.
983: --
984:
985: PROCEDURE get_phone_contact_point (
986: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
987: p_contact_point_id IN NUMBER,
988: x_contact_point_rec OUT NOCOPY contact_point_rec_type,
989: x_phone_rec OUT NOCOPY phone_rec_type,
990: x_return_status OUT NOCOPY VARCHAR2,

Line 1006: -- FND_API.G_TRUE. Default is fnd_api.g_false.

1002: --
1003: -- ARGUMENTS
1004: -- IN:
1005: -- p_init_msg_list Initialize message stack if it is set to
1006: -- FND_API.G_TRUE. Default is fnd_api.g_false.
1007: -- p_contact_point_id Contact point ID.
1008: -- IN/OUT:
1009: -- OUT:
1010: -- x_contact_point_rec Returned contact point record.

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

1009: -- OUT:
1010: -- x_contact_point_rec Returned contact point record.
1011: -- x_telex_rec Returned telex record.
1012: -- x_return_status Return status after the call. The status can
1013: -- be fnd_api.g_ret_sts_success (success),
1014: -- fnd_api.g_ret_sts_error (error),
1015: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
1016: -- x_msg_count Number of messages in message stack.
1017: -- x_msg_data Message text if x_msg_count is 1.

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

1010: -- x_contact_point_rec Returned contact point record.
1011: -- x_telex_rec Returned telex record.
1012: -- x_return_status Return status after the call. The status can
1013: -- be fnd_api.g_ret_sts_success (success),
1014: -- fnd_api.g_ret_sts_error (error),
1015: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
1016: -- x_msg_count Number of messages in message stack.
1017: -- x_msg_data Message text if x_msg_count is 1.
1018: --

Line 1015: -- fnd_api.g_ret_sts_unexp_error (unexpected error).

1011: -- x_telex_rec Returned telex record.
1012: -- x_return_status Return status after the call. The status can
1013: -- be fnd_api.g_ret_sts_success (success),
1014: -- fnd_api.g_ret_sts_error (error),
1015: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
1016: -- x_msg_count Number of messages in message stack.
1017: -- x_msg_data Message text if x_msg_count is 1.
1018: --
1019: -- NOTES

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

1025: -- enhanced backward compatibility.
1026: --
1027:
1028: PROCEDURE get_telex_contact_point (
1029: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1030: p_contact_point_id IN NUMBER,
1031: x_contact_point_rec OUT NOCOPY contact_point_rec_type,
1032: x_telex_rec OUT NOCOPY telex_rec_type,
1033: x_return_status OUT NOCOPY VARCHAR2,

Line 1049: -- FND_API.G_TRUE. Default is fnd_api.g_false.

1045: --
1046: -- ARGUMENTS
1047: -- IN:
1048: -- p_init_msg_list Initialize message stack if it is set to
1049: -- FND_API.G_TRUE. Default is fnd_api.g_false.
1050: -- p_contact_point_id Contact point ID.
1051: -- IN/OUT:
1052: -- OUT:
1053: -- x_contact_point_rec Returned contact point record.

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

1052: -- OUT:
1053: -- x_contact_point_rec Returned contact point record.
1054: -- x_email_rec Returned email record.
1055: -- x_return_status Return status after the call. The status can
1056: -- be fnd_api.g_ret_sts_success (success),
1057: -- fnd_api.g_ret_sts_error (error),
1058: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
1059: -- x_msg_count Number of messages in message stack.
1060: -- x_msg_data Message text if x_msg_count is 1.

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

1053: -- x_contact_point_rec Returned contact point record.
1054: -- x_email_rec Returned email record.
1055: -- x_return_status Return status after the call. The status can
1056: -- be fnd_api.g_ret_sts_success (success),
1057: -- fnd_api.g_ret_sts_error (error),
1058: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
1059: -- x_msg_count Number of messages in message stack.
1060: -- x_msg_data Message text if x_msg_count is 1.
1061: --

Line 1058: -- fnd_api.g_ret_sts_unexp_error (unexpected error).

1054: -- x_email_rec Returned email record.
1055: -- x_return_status Return status after the call. The status can
1056: -- be fnd_api.g_ret_sts_success (success),
1057: -- fnd_api.g_ret_sts_error (error),
1058: -- fnd_api.g_ret_sts_unexp_error (unexpected error).
1059: -- x_msg_count Number of messages in message stack.
1060: -- x_msg_data Message text if x_msg_count is 1.
1061: --
1062: -- NOTES

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

1068: -- enhanced backward compatibility.
1069: --
1070:
1071: PROCEDURE get_email_contact_point (
1072: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1073: p_contact_point_id IN NUMBER,
1074: x_contact_point_rec OUT NOCOPY contact_point_rec_type,
1075: x_email_rec OUT NOCOPY email_rec_type,
1076: x_return_status OUT NOCOPY VARCHAR2,

Line 1092: -- fnd_api.g_true. Default is fnd_api.g_false.

1088: --
1089: -- ARGUMENTS
1090: -- IN:
1091: -- p_init_msg_list Initialize message stack if it is set to
1092: -- fnd_api.g_true. Default is fnd_api.g_false.
1093: -- p_raw_phone_number Raw phone number.
1094: -- p_territory_code Territory code.
1095: -- IN/OUT:
1096: -- x_phone_country_code Phone country code.

Line 1102: -- be FND_API.G_RET_STS_SUCCESS (success),

1098: -- x_phone_number Phone number.
1099: -- OUT:
1100: -- x_formatted_phone_number Formatted phone number.
1101: -- x_return_status Return status after the call. The status can
1102: -- be FND_API.G_RET_STS_SUCCESS (success),
1103: -- FND_API.G_RET_STS_ERROR (error),
1104: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected
1105: -- error).
1106: -- x_msg_count Number of messages in message stack.

Line 1103: -- FND_API.G_RET_STS_ERROR (error),

1099: -- OUT:
1100: -- x_formatted_phone_number Formatted phone number.
1101: -- x_return_status Return status after the call. The status can
1102: -- be FND_API.G_RET_STS_SUCCESS (success),
1103: -- FND_API.G_RET_STS_ERROR (error),
1104: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected
1105: -- error).
1106: -- x_msg_count Number of messages in message stack.
1107: -- x_msg_data Message text if x_msg_count is 1.

Line 1104: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected

1100: -- x_formatted_phone_number Formatted phone number.
1101: -- x_return_status Return status after the call. The status can
1102: -- be FND_API.G_RET_STS_SUCCESS (success),
1103: -- FND_API.G_RET_STS_ERROR (error),
1104: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected
1105: -- error).
1106: -- x_msg_count Number of messages in message stack.
1107: -- x_msg_data Message text if x_msg_count is 1.
1108: --

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

1113: -- 07-23-2001 Jianying Huang o Created.
1114: --
1115:
1116: PROCEDURE phone_format (
1117: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1118: p_raw_phone_number IN VARCHAR2 := fnd_api.g_miss_char,
1119: p_territory_code IN VARCHAR2 := fnd_api.g_miss_char,
1120: x_formatted_phone_number OUT NOCOPY VARCHAR2,
1121: x_phone_country_code IN OUT NOCOPY VARCHAR2,

Line 1118: p_raw_phone_number IN VARCHAR2 := fnd_api.g_miss_char,

1114: --
1115:
1116: PROCEDURE phone_format (
1117: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1118: p_raw_phone_number IN VARCHAR2 := fnd_api.g_miss_char,
1119: p_territory_code IN VARCHAR2 := fnd_api.g_miss_char,
1120: x_formatted_phone_number OUT NOCOPY VARCHAR2,
1121: x_phone_country_code IN OUT NOCOPY VARCHAR2,
1122: x_phone_area_code IN OUT NOCOPY VARCHAR2,

Line 1119: p_territory_code IN VARCHAR2 := fnd_api.g_miss_char,

1115:
1116: PROCEDURE phone_format (
1117: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1118: p_raw_phone_number IN VARCHAR2 := fnd_api.g_miss_char,
1119: p_territory_code IN VARCHAR2 := fnd_api.g_miss_char,
1120: x_formatted_phone_number OUT NOCOPY VARCHAR2,
1121: x_phone_country_code IN OUT NOCOPY VARCHAR2,
1122: x_phone_area_code IN OUT NOCOPY VARCHAR2,
1123: x_phone_number IN OUT NOCOPY VARCHAR2,