DBA Data[Home] [Help]

APPS.HZ_CONTACT_POINT_BO_PUB dependencies on FND_API

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

21: --
22: -- ARGUMENTS
23: -- IN:
24: -- p_init_msg_list Initialize message stack if it is set to
25: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
26: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
27: -- the completeness of business object.
28: -- p_phone_obj Phone business object.
29: -- p_created_by_module Created by module.

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

22: -- ARGUMENTS
23: -- IN:
24: -- p_init_msg_list Initialize message stack if it is set to
25: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
26: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
27: -- the completeness of business object.
28: -- p_phone_obj Phone business object.
29: -- p_created_by_module Created by module.
30: -- IN/OUT:

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

33: -- px_parent_osr Parent orig system reference.
34: -- px_parent_obj_type Parent object type.
35: -- OUT:
36: -- x_return_status Return status after the call. The status can
37: -- be fnd_api.g_ret_sts_success (success),
38: -- fnd_api.g_ret_sts_error (error),
39: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
40: -- x_msg_count Number of messages in message stack.
41: -- x_msg_data Message text if x_msg_count is 1.

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

34: -- px_parent_obj_type Parent object type.
35: -- OUT:
36: -- x_return_status Return status after the call. The status can
37: -- be fnd_api.g_ret_sts_success (success),
38: -- fnd_api.g_ret_sts_error (error),
39: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
40: -- x_msg_count Number of messages in message stack.
41: -- x_msg_data Message text if x_msg_count is 1.
42: -- x_phone_id Contact point ID.

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

35: -- OUT:
36: -- x_return_status Return status after the call. The status can
37: -- be fnd_api.g_ret_sts_success (success),
38: -- fnd_api.g_ret_sts_error (error),
39: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
40: -- x_msg_count Number of messages in message stack.
41: -- x_msg_data Message text if x_msg_count is 1.
42: -- x_phone_id Contact point ID.
43: -- x_phone_os Contact point orig system.

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

49: --
50: -- 14-DEC-2004 Arnold Ng Created.
51:
52: PROCEDURE create_phone_bo(
53: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
54: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
55: p_phone_obj IN HZ_PHONE_CP_BO,
56: p_created_by_module IN VARCHAR2,
57: x_return_status OUT NOCOPY VARCHAR2,

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

50: -- 14-DEC-2004 Arnold Ng Created.
51:
52: PROCEDURE create_phone_bo(
53: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
54: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
55: p_phone_obj IN HZ_PHONE_CP_BO,
56: p_created_by_module IN VARCHAR2,
57: x_return_status OUT NOCOPY VARCHAR2,
58: x_msg_count OUT NOCOPY NUMBER,

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

93: * @rep:displayname Create Phone Business Object
94: * @rep:doccd 120hztig.pdf Create Phone Business Object, Oracle Trading Community Architecture Technical Implementation Guide
95: */
96: PROCEDURE create_phone_bo(
97: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
98: p_phone_obj IN HZ_PHONE_CP_BO,
99: p_created_by_module IN VARCHAR2,
100: p_obj_source IN VARCHAR2 := null,
101: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

97: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
98: p_phone_obj IN HZ_PHONE_CP_BO,
99: p_created_by_module IN VARCHAR2,
100: p_obj_source IN VARCHAR2 := null,
101: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
102: x_return_status OUT NOCOPY VARCHAR2,
103: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
104: x_return_obj OUT NOCOPY HZ_PHONE_CP_BO,
105: x_phone_id OUT NOCOPY NUMBER,

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

118: --
119: -- ARGUMENTS
120: -- IN:
121: -- p_init_msg_list Initialize message stack if it is set to
122: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
123: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
124: -- the completeness of business object.
125: -- p_telex_obj Telex business object.
126: -- p_created_by_module Created by module.

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

119: -- ARGUMENTS
120: -- IN:
121: -- p_init_msg_list Initialize message stack if it is set to
122: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
123: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
124: -- the completeness of business object.
125: -- p_telex_obj Telex business object.
126: -- p_created_by_module Created by module.
127: -- IN/OUT:

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

130: -- px_parent_osr Parent orig system reference.
131: -- px_parent_obj_type Parent object type.
132: -- OUT:
133: -- x_return_status Return status after the call. The status can
134: -- be fnd_api.g_ret_sts_success (success),
135: -- fnd_api.g_ret_sts_error (error),
136: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
137: -- x_msg_count Number of messages in message stack.
138: -- x_msg_data Message text if x_msg_count is 1.

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

131: -- px_parent_obj_type Parent object type.
132: -- OUT:
133: -- x_return_status Return status after the call. The status can
134: -- be fnd_api.g_ret_sts_success (success),
135: -- fnd_api.g_ret_sts_error (error),
136: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
137: -- x_msg_count Number of messages in message stack.
138: -- x_msg_data Message text if x_msg_count is 1.
139: -- x_telex_id Contact point ID.

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

132: -- OUT:
133: -- x_return_status Return status after the call. The status can
134: -- be fnd_api.g_ret_sts_success (success),
135: -- fnd_api.g_ret_sts_error (error),
136: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
137: -- x_msg_count Number of messages in message stack.
138: -- x_msg_data Message text if x_msg_count is 1.
139: -- x_telex_id Contact point ID.
140: -- x_telex_os Contact point orig system.

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

146: --
147: -- 14-DEC-2004 Arnold Ng Created.
148:
149: PROCEDURE create_telex_bo(
150: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
151: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
152: p_telex_obj IN HZ_TELEX_CP_BO,
153: p_created_by_module IN VARCHAR2,
154: x_return_status OUT NOCOPY VARCHAR2,

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

147: -- 14-DEC-2004 Arnold Ng Created.
148:
149: PROCEDURE create_telex_bo(
150: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
151: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
152: p_telex_obj IN HZ_TELEX_CP_BO,
153: p_created_by_module IN VARCHAR2,
154: x_return_status OUT NOCOPY VARCHAR2,
155: x_msg_count OUT NOCOPY NUMBER,

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

190: * @rep:displayname Create Telex Business Object
191: * @rep:doccd 120hztig.pdf Create Telex Business Object, Oracle Trading Community Architecture Technical Implementation Guide
192: */
193: PROCEDURE create_telex_bo(
194: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
195: p_telex_obj IN HZ_TELEX_CP_BO,
196: p_created_by_module IN VARCHAR2,
197: p_obj_source IN VARCHAR2 := null,
198: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

194: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
195: p_telex_obj IN HZ_TELEX_CP_BO,
196: p_created_by_module IN VARCHAR2,
197: p_obj_source IN VARCHAR2 := null,
198: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
199: x_return_status OUT NOCOPY VARCHAR2,
200: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
201: x_return_obj OUT NOCOPY HZ_TELEX_CP_BO,
202: x_telex_id OUT NOCOPY NUMBER,

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

215: --
216: -- ARGUMENTS
217: -- IN:
218: -- p_init_msg_list Initialize message stack if it is set to
219: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
220: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
221: -- the completeness of business object.
222: -- p_email_obj Email business object.
223: -- p_created_by_module Created by module.

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

216: -- ARGUMENTS
217: -- IN:
218: -- p_init_msg_list Initialize message stack if it is set to
219: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
220: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
221: -- the completeness of business object.
222: -- p_email_obj Email business object.
223: -- p_created_by_module Created by module.
224: -- IN/OUT:

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

227: -- px_parent_osr Parent orig system reference.
228: -- px_parent_obj_type Parent object type.
229: -- OUT:
230: -- x_return_status Return status after the call. The status can
231: -- be fnd_api.g_ret_sts_success (success),
232: -- fnd_api.g_ret_sts_error (error),
233: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
234: -- x_msg_count Number of messages in message stack.
235: -- x_msg_data Message text if x_msg_count is 1.

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

228: -- px_parent_obj_type Parent object type.
229: -- OUT:
230: -- x_return_status Return status after the call. The status can
231: -- be fnd_api.g_ret_sts_success (success),
232: -- fnd_api.g_ret_sts_error (error),
233: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
234: -- x_msg_count Number of messages in message stack.
235: -- x_msg_data Message text if x_msg_count is 1.
236: -- x_email_id Contact point ID.

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

229: -- OUT:
230: -- x_return_status Return status after the call. The status can
231: -- be fnd_api.g_ret_sts_success (success),
232: -- fnd_api.g_ret_sts_error (error),
233: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
234: -- x_msg_count Number of messages in message stack.
235: -- x_msg_data Message text if x_msg_count is 1.
236: -- x_email_id Contact point ID.
237: -- x_email_os Contact point orig system.

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

243: --
244: -- 14-DEC-2004 Arnold Ng Created.
245:
246: PROCEDURE create_email_bo(
247: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
248: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
249: p_email_obj IN HZ_EMAIL_CP_BO,
250: p_created_by_module IN VARCHAR2,
251: x_return_status OUT NOCOPY VARCHAR2,

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

244: -- 14-DEC-2004 Arnold Ng Created.
245:
246: PROCEDURE create_email_bo(
247: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
248: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
249: p_email_obj IN HZ_EMAIL_CP_BO,
250: p_created_by_module IN VARCHAR2,
251: x_return_status OUT NOCOPY VARCHAR2,
252: x_msg_count OUT NOCOPY NUMBER,

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

287: * @rep:displayname Create Email Business Object
288: * @rep:doccd 120hztig.pdf Create Email Business Object, Oracle Trading Community Architecture Technical Implementation Guide
289: */
290: PROCEDURE create_email_bo(
291: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
292: p_email_obj IN HZ_EMAIL_CP_BO,
293: p_created_by_module IN VARCHAR2,
294: p_obj_source IN VARCHAR2 := null,
295: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

291: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
292: p_email_obj IN HZ_EMAIL_CP_BO,
293: p_created_by_module IN VARCHAR2,
294: p_obj_source IN VARCHAR2 := null,
295: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
296: x_return_status OUT NOCOPY VARCHAR2,
297: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
298: x_return_obj OUT NOCOPY HZ_EMAIL_CP_BO,
299: x_email_id OUT NOCOPY NUMBER,

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

312: --
313: -- ARGUMENTS
314: -- IN:
315: -- p_init_msg_list Initialize message stack if it is set to
316: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
317: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
318: -- the completeness of business object.
319: -- p_web_obj Web business object.
320: -- p_created_by_module Created by module.

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

313: -- ARGUMENTS
314: -- IN:
315: -- p_init_msg_list Initialize message stack if it is set to
316: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
317: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
318: -- the completeness of business object.
319: -- p_web_obj Web business object.
320: -- p_created_by_module Created by module.
321: -- IN/OUT:

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

324: -- px_parent_osr Parent orig system reference.
325: -- px_parent_obj_type Parent object type.
326: -- OUT:
327: -- x_return_status Return status after the call. The status can
328: -- be fnd_api.g_ret_sts_success (success),
329: -- fnd_api.g_ret_sts_error (error),
330: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
331: -- x_msg_count Number of messages in message stack.
332: -- x_msg_data Message text if x_msg_count is 1.

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

325: -- px_parent_obj_type Parent object type.
326: -- OUT:
327: -- x_return_status Return status after the call. The status can
328: -- be fnd_api.g_ret_sts_success (success),
329: -- fnd_api.g_ret_sts_error (error),
330: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
331: -- x_msg_count Number of messages in message stack.
332: -- x_msg_data Message text if x_msg_count is 1.
333: -- x_web_id Contact point ID.

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

326: -- OUT:
327: -- x_return_status Return status after the call. The status can
328: -- be fnd_api.g_ret_sts_success (success),
329: -- fnd_api.g_ret_sts_error (error),
330: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
331: -- x_msg_count Number of messages in message stack.
332: -- x_msg_data Message text if x_msg_count is 1.
333: -- x_web_id Contact point ID.
334: -- x_web_os Contact point orig system.

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

340: --
341: -- 14-DEC-2004 Arnold Ng Created.
342:
343: PROCEDURE create_web_bo(
344: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
345: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
346: p_web_obj IN HZ_WEB_CP_BO,
347: p_created_by_module IN VARCHAR2,
348: x_return_status OUT NOCOPY VARCHAR2,

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

341: -- 14-DEC-2004 Arnold Ng Created.
342:
343: PROCEDURE create_web_bo(
344: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
345: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
346: p_web_obj IN HZ_WEB_CP_BO,
347: p_created_by_module IN VARCHAR2,
348: x_return_status OUT NOCOPY VARCHAR2,
349: x_msg_count OUT NOCOPY NUMBER,

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

384: * @rep:displayname Create Web Business Object
385: * @rep:doccd 120hztig.pdf Create Web Business Object, Oracle Trading Community Architecture Technical Implementation Guide
386: */
387: PROCEDURE create_web_bo(
388: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
389: p_web_obj IN HZ_WEB_CP_BO,
390: p_created_by_module IN VARCHAR2,
391: p_obj_source IN VARCHAR2 := null,
392: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

388: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
389: p_web_obj IN HZ_WEB_CP_BO,
390: p_created_by_module IN VARCHAR2,
391: p_obj_source IN VARCHAR2 := null,
392: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
393: x_return_status OUT NOCOPY VARCHAR2,
394: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
395: x_return_obj OUT NOCOPY HZ_WEB_CP_BO,
396: x_web_id OUT NOCOPY NUMBER,

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

409: --
410: -- ARGUMENTS
411: -- IN:
412: -- p_init_msg_list Initialize message stack if it is set to
413: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
414: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
415: -- the completeness of business object.
416: -- p_edi_obj EDI business object.
417: -- p_created_by_module Created by module.

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

410: -- ARGUMENTS
411: -- IN:
412: -- p_init_msg_list Initialize message stack if it is set to
413: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
414: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
415: -- the completeness of business object.
416: -- p_edi_obj EDI business object.
417: -- p_created_by_module Created by module.
418: -- IN/OUT:

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

421: -- px_parent_osr Parent orig system reference.
422: -- px_parent_obj_type Parent object type.
423: -- OUT:
424: -- x_return_status Return status after the call. The status can
425: -- be fnd_api.g_ret_sts_success (success),
426: -- fnd_api.g_ret_sts_error (error),
427: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
428: -- x_msg_count Number of messages in message stack.
429: -- x_msg_data Message text if x_msg_count is 1.

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

422: -- px_parent_obj_type Parent object type.
423: -- OUT:
424: -- x_return_status Return status after the call. The status can
425: -- be fnd_api.g_ret_sts_success (success),
426: -- fnd_api.g_ret_sts_error (error),
427: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
428: -- x_msg_count Number of messages in message stack.
429: -- x_msg_data Message text if x_msg_count is 1.
430: -- x_edi_id Contact point ID.

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

423: -- OUT:
424: -- x_return_status Return status after the call. The status can
425: -- be fnd_api.g_ret_sts_success (success),
426: -- fnd_api.g_ret_sts_error (error),
427: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
428: -- x_msg_count Number of messages in message stack.
429: -- x_msg_data Message text if x_msg_count is 1.
430: -- x_edi_id Contact point ID.
431: -- x_edi_os Contact point orig system.

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

437: --
438: -- 14-DEC-2004 Arnold Ng Created.
439:
440: PROCEDURE create_edi_bo(
441: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
442: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
443: p_edi_obj IN HZ_EDI_CP_BO,
444: p_created_by_module IN VARCHAR2,
445: x_return_status OUT NOCOPY VARCHAR2,

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

438: -- 14-DEC-2004 Arnold Ng Created.
439:
440: PROCEDURE create_edi_bo(
441: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
442: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
443: p_edi_obj IN HZ_EDI_CP_BO,
444: p_created_by_module IN VARCHAR2,
445: x_return_status OUT NOCOPY VARCHAR2,
446: x_msg_count OUT NOCOPY NUMBER,

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

481: * @rep:displayname Create EDI Business Object
482: * @rep:doccd 120hztig.pdf Create EDI Business Object, Oracle Trading Community Architecture Technical Implementation Guide
483: */
484: PROCEDURE create_edi_bo(
485: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
486: p_edi_obj IN HZ_EDI_CP_BO,
487: p_created_by_module IN VARCHAR2,
488: p_obj_source IN VARCHAR2 := null,
489: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

485: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
486: p_edi_obj IN HZ_EDI_CP_BO,
487: p_created_by_module IN VARCHAR2,
488: p_obj_source IN VARCHAR2 := null,
489: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
490: x_return_status OUT NOCOPY VARCHAR2,
491: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
492: x_return_obj OUT NOCOPY HZ_EDI_CP_BO,
493: x_edi_id OUT NOCOPY NUMBER,

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

506: --
507: -- ARGUMENTS
508: -- IN:
509: -- p_init_msg_list Initialize message stack if it is set to
510: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
511: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
512: -- the completeness of business object.
513: -- p_eft_obj EFT business object.
514: -- p_created_by_module Created by module.

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

507: -- ARGUMENTS
508: -- IN:
509: -- p_init_msg_list Initialize message stack if it is set to
510: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
511: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
512: -- the completeness of business object.
513: -- p_eft_obj EFT business object.
514: -- p_created_by_module Created by module.
515: -- IN/OUT:

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

518: -- px_parent_osr Parent orig system reference.
519: -- px_parent_obj_type Parent object type.
520: -- OUT:
521: -- x_return_status Return status after the call. The status can
522: -- be fnd_api.g_ret_sts_success (success),
523: -- fnd_api.g_ret_sts_error (error),
524: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
525: -- x_msg_count Number of messages in message stack.
526: -- x_msg_data Message text if x_msg_count is 1.

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

519: -- px_parent_obj_type Parent object type.
520: -- OUT:
521: -- x_return_status Return status after the call. The status can
522: -- be fnd_api.g_ret_sts_success (success),
523: -- fnd_api.g_ret_sts_error (error),
524: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
525: -- x_msg_count Number of messages in message stack.
526: -- x_msg_data Message text if x_msg_count is 1.
527: -- x_eft_id Contact point ID.

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

520: -- OUT:
521: -- x_return_status Return status after the call. The status can
522: -- be fnd_api.g_ret_sts_success (success),
523: -- fnd_api.g_ret_sts_error (error),
524: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
525: -- x_msg_count Number of messages in message stack.
526: -- x_msg_data Message text if x_msg_count is 1.
527: -- x_eft_id Contact point ID.
528: -- x_eft_os Contact point orig system.

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

534: --
535: -- 14-DEC-2004 Arnold Ng Created.
536:
537: PROCEDURE create_eft_bo(
538: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
539: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
540: p_eft_obj IN HZ_EFT_CP_BO,
541: p_created_by_module IN VARCHAR2,
542: x_return_status OUT NOCOPY VARCHAR2,

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

535: -- 14-DEC-2004 Arnold Ng Created.
536:
537: PROCEDURE create_eft_bo(
538: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
539: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
540: p_eft_obj IN HZ_EFT_CP_BO,
541: p_created_by_module IN VARCHAR2,
542: x_return_status OUT NOCOPY VARCHAR2,
543: x_msg_count OUT NOCOPY NUMBER,

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

578: * @rep:displayname Create EFT Business Object
579: * @rep:doccd 120hztig.pdf Create EFT Business Object, Oracle Trading Community Architecture Technical Implementation Guide
580: */
581: PROCEDURE create_eft_bo(
582: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
583: p_eft_obj IN HZ_EFT_CP_BO,
584: p_created_by_module IN VARCHAR2,
585: p_obj_source IN VARCHAR2 := null,
586: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

582: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
583: p_eft_obj IN HZ_EFT_CP_BO,
584: p_created_by_module IN VARCHAR2,
585: p_obj_source IN VARCHAR2 := null,
586: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
587: x_return_status OUT NOCOPY VARCHAR2,
588: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
589: x_return_obj OUT NOCOPY HZ_EFT_CP_BO,
590: x_eft_id OUT NOCOPY NUMBER,

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

603: --
604: -- ARGUMENTS
605: -- IN:
606: -- p_init_msg_list Initialize message stack if it is set to
607: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
608: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
609: -- the completeness of business object.
610: -- p_sms_obj SMS business object.
611: -- p_created_by_module Created by module.

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

604: -- ARGUMENTS
605: -- IN:
606: -- p_init_msg_list Initialize message stack if it is set to
607: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
608: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
609: -- the completeness of business object.
610: -- p_sms_obj SMS business object.
611: -- p_created_by_module Created by module.
612: -- IN/OUT:

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

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

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

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

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

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

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

631: --
632: -- 14-DEC-2004 Arnold Ng Created.
633:
634: PROCEDURE create_sms_bo(
635: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
636: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
637: p_sms_obj IN HZ_SMS_CP_BO,
638: p_created_by_module IN VARCHAR2,
639: x_return_status OUT NOCOPY VARCHAR2,

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

632: -- 14-DEC-2004 Arnold Ng Created.
633:
634: PROCEDURE create_sms_bo(
635: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
636: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
637: p_sms_obj IN HZ_SMS_CP_BO,
638: p_created_by_module IN VARCHAR2,
639: x_return_status OUT NOCOPY VARCHAR2,
640: x_msg_count OUT NOCOPY NUMBER,

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

675: * @rep:displayname Create SMS Business Object
676: * @rep:doccd 120hztig.pdf Create SMS Business Object, Oracle Trading Community Architecture Technical Implementation Guide
677: */
678: PROCEDURE create_sms_bo(
679: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
680: p_sms_obj IN HZ_SMS_CP_BO,
681: p_created_by_module IN VARCHAR2,
682: p_obj_source IN VARCHAR2 := null,
683: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

679: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
680: p_sms_obj IN HZ_SMS_CP_BO,
681: p_created_by_module IN VARCHAR2,
682: p_obj_source IN VARCHAR2 := null,
683: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
684: x_return_status OUT NOCOPY VARCHAR2,
685: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
686: x_return_obj OUT NOCOPY HZ_SMS_CP_BO,
687: x_sms_id OUT NOCOPY NUMBER,

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

700: --
701: -- ARGUMENTS
702: -- IN:
703: -- p_init_msg_list Initialize message stack if it is set to
704: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
705: -- p_phone_obj Phone business object.
706: -- p_created_by_module Created by module.
707: -- OUT:
708: -- x_return_status Return status after the call. The status can

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

705: -- p_phone_obj Phone business object.
706: -- p_created_by_module Created by module.
707: -- OUT:
708: -- x_return_status Return status after the call. The status can
709: -- be fnd_api.g_ret_sts_success (success),
710: -- fnd_api.g_ret_sts_error (error),
711: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
712: -- x_msg_count Number of messages in message stack.
713: -- x_msg_data Message text if x_msg_count is 1.

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

706: -- p_created_by_module Created by module.
707: -- OUT:
708: -- x_return_status Return status after the call. The status can
709: -- be fnd_api.g_ret_sts_success (success),
710: -- fnd_api.g_ret_sts_error (error),
711: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
712: -- x_msg_count Number of messages in message stack.
713: -- x_msg_data Message text if x_msg_count is 1.
714: -- x_phone_id Contact point ID.

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

707: -- OUT:
708: -- x_return_status Return status after the call. The status can
709: -- be fnd_api.g_ret_sts_success (success),
710: -- fnd_api.g_ret_sts_error (error),
711: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
712: -- x_msg_count Number of messages in message stack.
713: -- x_msg_data Message text if x_msg_count is 1.
714: -- x_phone_id Contact point ID.
715: -- x_phone_os Contact point orig system.

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

721: --
722: -- 14-DEC-2004 Arnold Ng Created.
723:
724: PROCEDURE update_phone_bo(
725: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
726: p_phone_obj IN HZ_PHONE_CP_BO,
727: p_created_by_module IN VARCHAR2,
728: x_return_status OUT NOCOPY VARCHAR2,
729: x_msg_count OUT NOCOPY NUMBER,

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

758: PROCEDURE update_phone_bo(
759: p_phone_obj IN HZ_PHONE_CP_BO,
760: p_created_by_module IN VARCHAR2,
761: p_obj_source IN VARCHAR2 := null,
762: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
763: x_return_status OUT NOCOPY VARCHAR2,
764: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
765: x_return_obj OUT NOCOPY HZ_PHONE_CP_BO,
766: x_phone_id OUT NOCOPY NUMBER,

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

775: --
776: -- ARGUMENTS
777: -- IN:
778: -- p_init_msg_list Initialize message stack if it is set to
779: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
780: -- p_telex_obj Telex business object.
781: -- p_created_by_module Created by module.
782: -- OUT:
783: -- x_return_status Return status after the call. The status can

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

780: -- p_telex_obj Telex business object.
781: -- p_created_by_module Created by module.
782: -- OUT:
783: -- x_return_status Return status after the call. The status can
784: -- be fnd_api.g_ret_sts_success (success),
785: -- fnd_api.g_ret_sts_error (error),
786: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
787: -- x_msg_count Number of messages in message stack.
788: -- x_msg_data Message text if x_msg_count is 1.

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

781: -- p_created_by_module Created by module.
782: -- OUT:
783: -- x_return_status Return status after the call. The status can
784: -- be fnd_api.g_ret_sts_success (success),
785: -- fnd_api.g_ret_sts_error (error),
786: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
787: -- x_msg_count Number of messages in message stack.
788: -- x_msg_data Message text if x_msg_count is 1.
789: -- x_telex_id Contact point ID.

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

782: -- OUT:
783: -- x_return_status Return status after the call. The status can
784: -- be fnd_api.g_ret_sts_success (success),
785: -- fnd_api.g_ret_sts_error (error),
786: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
787: -- x_msg_count Number of messages in message stack.
788: -- x_msg_data Message text if x_msg_count is 1.
789: -- x_telex_id Contact point ID.
790: -- x_telex_os Contact point orig system.

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

796: --
797: -- 14-DEC-2004 Arnold Ng Created.
798:
799: PROCEDURE update_telex_bo(
800: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
801: p_telex_obj IN HZ_TELEX_CP_BO,
802: p_created_by_module IN VARCHAR2,
803: x_return_status OUT NOCOPY VARCHAR2,
804: x_msg_count OUT NOCOPY NUMBER,

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

833: PROCEDURE update_telex_bo(
834: p_telex_obj IN HZ_TELEX_CP_BO,
835: p_created_by_module IN VARCHAR2,
836: p_obj_source IN VARCHAR2 := null,
837: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
838: x_return_status OUT NOCOPY VARCHAR2,
839: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
840: x_return_obj OUT NOCOPY HZ_TELEX_CP_BO,
841: x_telex_id OUT NOCOPY NUMBER,

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

850: --
851: -- ARGUMENTS
852: -- IN:
853: -- p_init_msg_list Initialize message stack if it is set to
854: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
855: -- p_email_obj Email business object.
856: -- p_created_by_module Created by module.
857: -- OUT:
858: -- x_return_status Return status after the call. The status can

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

855: -- p_email_obj Email business object.
856: -- p_created_by_module Created by module.
857: -- OUT:
858: -- x_return_status Return status after the call. The status can
859: -- be fnd_api.g_ret_sts_success (success),
860: -- fnd_api.g_ret_sts_error (error),
861: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
862: -- x_msg_count Number of messages in message stack.
863: -- x_msg_data Message text if x_msg_count is 1.

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

856: -- p_created_by_module Created by module.
857: -- OUT:
858: -- x_return_status Return status after the call. The status can
859: -- be fnd_api.g_ret_sts_success (success),
860: -- fnd_api.g_ret_sts_error (error),
861: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
862: -- x_msg_count Number of messages in message stack.
863: -- x_msg_data Message text if x_msg_count is 1.
864: -- x_email_id Contact point ID.

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

857: -- OUT:
858: -- x_return_status Return status after the call. The status can
859: -- be fnd_api.g_ret_sts_success (success),
860: -- fnd_api.g_ret_sts_error (error),
861: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
862: -- x_msg_count Number of messages in message stack.
863: -- x_msg_data Message text if x_msg_count is 1.
864: -- x_email_id Contact point ID.
865: -- x_email_os Contact point orig system.

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

871: --
872: -- 14-DEC-2004 Arnold Ng Created.
873:
874: PROCEDURE update_email_bo(
875: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
876: p_email_obj IN HZ_EMAIL_CP_BO,
877: p_created_by_module IN VARCHAR2,
878: x_return_status OUT NOCOPY VARCHAR2,
879: x_msg_count OUT NOCOPY NUMBER,

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

908: PROCEDURE update_email_bo(
909: p_email_obj IN HZ_EMAIL_CP_BO,
910: p_created_by_module IN VARCHAR2,
911: p_obj_source IN VARCHAR2 := null,
912: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
913: x_return_status OUT NOCOPY VARCHAR2,
914: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
915: x_return_obj OUT NOCOPY HZ_EMAIL_CP_BO,
916: x_email_id OUT NOCOPY NUMBER,

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

925: --
926: -- ARGUMENTS
927: -- IN:
928: -- p_init_msg_list Initialize message stack if it is set to
929: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
930: -- p_web_obj Web business object.
931: -- p_created_by_module Created by module.
932: -- IN/OUT:
933: -- px_parent_id Parent record ID.

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

935: -- px_parent_osr Parent orig system reference.
936: -- px_parent_obj_type Parent object type.
937: -- OUT:
938: -- x_return_status Return status after the call. The status can
939: -- be fnd_api.g_ret_sts_success (success),
940: -- fnd_api.g_ret_sts_error (error),
941: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
942: -- x_msg_count Number of messages in message stack.
943: -- x_msg_data Message text if x_msg_count is 1.

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

936: -- px_parent_obj_type Parent object type.
937: -- OUT:
938: -- x_return_status Return status after the call. The status can
939: -- be fnd_api.g_ret_sts_success (success),
940: -- fnd_api.g_ret_sts_error (error),
941: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
942: -- x_msg_count Number of messages in message stack.
943: -- x_msg_data Message text if x_msg_count is 1.
944: -- x_web_id Contact point ID.

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

937: -- OUT:
938: -- x_return_status Return status after the call. The status can
939: -- be fnd_api.g_ret_sts_success (success),
940: -- fnd_api.g_ret_sts_error (error),
941: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
942: -- x_msg_count Number of messages in message stack.
943: -- x_msg_data Message text if x_msg_count is 1.
944: -- x_web_id Contact point ID.
945: -- x_web_os Contact point orig system.

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

951: --
952: -- 14-DEC-2004 Arnold Ng Created.
953:
954: PROCEDURE update_web_bo(
955: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
956: p_web_obj IN HZ_WEB_CP_BO,
957: p_created_by_module IN VARCHAR2,
958: x_return_status OUT NOCOPY VARCHAR2,
959: x_msg_count OUT NOCOPY NUMBER,

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

988: PROCEDURE update_web_bo(
989: p_web_obj IN HZ_WEB_CP_BO,
990: p_created_by_module IN VARCHAR2,
991: p_obj_source IN VARCHAR2 := null,
992: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
993: x_return_status OUT NOCOPY VARCHAR2,
994: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
995: x_return_obj OUT NOCOPY HZ_WEB_CP_BO,
996: x_web_id OUT NOCOPY NUMBER,

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

1005: --
1006: -- ARGUMENTS
1007: -- IN:
1008: -- p_init_msg_list Initialize message stack if it is set to
1009: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1010: -- p_edi_obj EDI business object.
1011: -- p_created_by_module Created by module.
1012: -- IN/OUT:
1013: -- px_parent_id Parent record ID.

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

1015: -- px_parent_osr Parent orig system reference.
1016: -- px_parent_obj_type Parent object type.
1017: -- OUT:
1018: -- x_return_status Return status after the call. The status can
1019: -- be fnd_api.g_ret_sts_success (success),
1020: -- fnd_api.g_ret_sts_error (error),
1021: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1022: -- x_msg_count Number of messages in message stack.
1023: -- x_msg_data Message text if x_msg_count is 1.

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

1016: -- px_parent_obj_type Parent object type.
1017: -- OUT:
1018: -- x_return_status Return status after the call. The status can
1019: -- be fnd_api.g_ret_sts_success (success),
1020: -- fnd_api.g_ret_sts_error (error),
1021: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1022: -- x_msg_count Number of messages in message stack.
1023: -- x_msg_data Message text if x_msg_count is 1.
1024: -- x_edi_id Contact point ID.

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

1017: -- OUT:
1018: -- x_return_status Return status after the call. The status can
1019: -- be fnd_api.g_ret_sts_success (success),
1020: -- fnd_api.g_ret_sts_error (error),
1021: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1022: -- x_msg_count Number of messages in message stack.
1023: -- x_msg_data Message text if x_msg_count is 1.
1024: -- x_edi_id Contact point ID.
1025: -- x_edi_os Contact point orig system.

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

1031: --
1032: -- 14-DEC-2004 Arnold Ng Created.
1033:
1034: PROCEDURE update_edi_bo(
1035: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1036: p_edi_obj IN HZ_EDI_CP_BO,
1037: p_created_by_module IN VARCHAR2,
1038: x_return_status OUT NOCOPY VARCHAR2,
1039: x_msg_count OUT NOCOPY NUMBER,

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

1068: PROCEDURE update_edi_bo(
1069: p_edi_obj IN HZ_EDI_CP_BO,
1070: p_created_by_module IN VARCHAR2,
1071: p_obj_source IN VARCHAR2 := null,
1072: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1073: x_return_status OUT NOCOPY VARCHAR2,
1074: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1075: x_return_obj OUT NOCOPY HZ_EDI_CP_BO,
1076: x_edi_id OUT NOCOPY NUMBER,

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

1085: --
1086: -- ARGUMENTS
1087: -- IN:
1088: -- p_init_msg_list Initialize message stack if it is set to
1089: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1090: -- p_eft_obj EFT business object.
1091: -- p_created_by_module Created by module.
1092: -- IN/OUT:
1093: -- px_parent_id Parent record ID.

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

1095: -- px_parent_osr Parent orig system reference.
1096: -- px_parent_obj_type Parent object type.
1097: -- OUT:
1098: -- x_return_status Return status after the call. The status can
1099: -- be fnd_api.g_ret_sts_success (success),
1100: -- fnd_api.g_ret_sts_error (error),
1101: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1102: -- x_msg_count Number of messages in message stack.
1103: -- x_msg_data Message text if x_msg_count is 1.

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

1096: -- px_parent_obj_type Parent object type.
1097: -- OUT:
1098: -- x_return_status Return status after the call. The status can
1099: -- be fnd_api.g_ret_sts_success (success),
1100: -- fnd_api.g_ret_sts_error (error),
1101: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1102: -- x_msg_count Number of messages in message stack.
1103: -- x_msg_data Message text if x_msg_count is 1.
1104: -- x_eft_id Contact point ID.

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

1097: -- OUT:
1098: -- x_return_status Return status after the call. The status can
1099: -- be fnd_api.g_ret_sts_success (success),
1100: -- fnd_api.g_ret_sts_error (error),
1101: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1102: -- x_msg_count Number of messages in message stack.
1103: -- x_msg_data Message text if x_msg_count is 1.
1104: -- x_eft_id Contact point ID.
1105: -- x_eft_os Contact point orig system.

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

1111: --
1112: -- 14-DEC-2004 Arnold Ng Created.
1113:
1114: PROCEDURE update_eft_bo(
1115: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1116: p_eft_obj IN HZ_EFT_CP_BO,
1117: p_created_by_module IN VARCHAR2,
1118: x_return_status OUT NOCOPY VARCHAR2,
1119: x_msg_count OUT NOCOPY NUMBER,

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

1148: PROCEDURE update_eft_bo(
1149: p_eft_obj IN HZ_EFT_CP_BO,
1150: p_created_by_module IN VARCHAR2,
1151: p_obj_source IN VARCHAR2 := null,
1152: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1153: x_return_status OUT NOCOPY VARCHAR2,
1154: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1155: x_return_obj OUT NOCOPY HZ_EFT_CP_BO,
1156: x_eft_id OUT NOCOPY NUMBER,

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

1165: --
1166: -- ARGUMENTS
1167: -- IN:
1168: -- p_init_msg_list Initialize message stack if it is set to
1169: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1170: -- p_sms_obj SMS business object.
1171: -- p_created_by_module Created by module.
1172: -- IN/OUT:
1173: -- px_parent_id Parent record ID.

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

1175: -- px_parent_osr Parent orig system reference.
1176: -- px_parent_obj_type Parent object type.
1177: -- OUT:
1178: -- x_return_status Return status after the call. The status can
1179: -- be fnd_api.g_ret_sts_success (success),
1180: -- fnd_api.g_ret_sts_error (error),
1181: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1182: -- x_msg_count Number of messages in message stack.
1183: -- x_msg_data Message text if x_msg_count is 1.

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

1176: -- px_parent_obj_type Parent object type.
1177: -- OUT:
1178: -- x_return_status Return status after the call. The status can
1179: -- be fnd_api.g_ret_sts_success (success),
1180: -- fnd_api.g_ret_sts_error (error),
1181: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1182: -- x_msg_count Number of messages in message stack.
1183: -- x_msg_data Message text if x_msg_count is 1.
1184: -- x_sms_id Contact point ID.

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

1177: -- OUT:
1178: -- x_return_status Return status after the call. The status can
1179: -- be fnd_api.g_ret_sts_success (success),
1180: -- fnd_api.g_ret_sts_error (error),
1181: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1182: -- x_msg_count Number of messages in message stack.
1183: -- x_msg_data Message text if x_msg_count is 1.
1184: -- x_sms_id Contact point ID.
1185: -- x_sms_os Contact point orig system.

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

1191: --
1192: -- 14-DEC-2004 Arnold Ng Created.
1193:
1194: PROCEDURE update_sms_bo(
1195: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1196: p_sms_obj IN HZ_SMS_CP_BO,
1197: p_created_by_module IN VARCHAR2,
1198: x_return_status OUT NOCOPY VARCHAR2,
1199: x_msg_count OUT NOCOPY NUMBER,

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

1228: PROCEDURE update_sms_bo(
1229: p_sms_obj IN HZ_SMS_CP_BO,
1230: p_created_by_module IN VARCHAR2,
1231: p_obj_source IN VARCHAR2 := null,
1232: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1233: x_return_status OUT NOCOPY VARCHAR2,
1234: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1235: x_return_obj OUT NOCOPY HZ_SMS_CP_BO,
1236: x_sms_id OUT NOCOPY NUMBER,

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

1245: --
1246: -- ARGUMENTS
1247: -- IN:
1248: -- p_init_msg_list Initialize message stack if it is set to
1249: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1250: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1251: -- the completeness of business object.
1252: -- p_phone_obj Phone business object.
1253: -- p_created_by_module Created by module.

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

1246: -- ARGUMENTS
1247: -- IN:
1248: -- p_init_msg_list Initialize message stack if it is set to
1249: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1250: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1251: -- the completeness of business object.
1252: -- p_phone_obj Phone business object.
1253: -- p_created_by_module Created by module.
1254: -- IN/OUT:

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

1257: -- px_parent_osr Parent orig system reference.
1258: -- px_parent_obj_type Parent object type.
1259: -- OUT:
1260: -- x_return_status Return status after the call. The status can
1261: -- be fnd_api.g_ret_sts_success (success),
1262: -- fnd_api.g_ret_sts_error (error),
1263: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1264: -- x_msg_count Number of messages in message stack.
1265: -- x_msg_data Message text if x_msg_count is 1.

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

1258: -- px_parent_obj_type Parent object type.
1259: -- OUT:
1260: -- x_return_status Return status after the call. The status can
1261: -- be fnd_api.g_ret_sts_success (success),
1262: -- fnd_api.g_ret_sts_error (error),
1263: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1264: -- x_msg_count Number of messages in message stack.
1265: -- x_msg_data Message text if x_msg_count is 1.
1266: -- x_phone_id Contact point ID.

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

1259: -- OUT:
1260: -- x_return_status Return status after the call. The status can
1261: -- be fnd_api.g_ret_sts_success (success),
1262: -- fnd_api.g_ret_sts_error (error),
1263: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1264: -- x_msg_count Number of messages in message stack.
1265: -- x_msg_data Message text if x_msg_count is 1.
1266: -- x_phone_id Contact point ID.
1267: -- x_phone_os Contact point orig system.

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

1273: --
1274: -- 14-DEC-2004 Arnold Ng Created.
1275:
1276: PROCEDURE save_phone_bo(
1277: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1278: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1279: p_phone_obj IN HZ_PHONE_CP_BO,
1280: p_created_by_module IN VARCHAR2,
1281: x_return_status OUT NOCOPY VARCHAR2,

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

1274: -- 14-DEC-2004 Arnold Ng Created.
1275:
1276: PROCEDURE save_phone_bo(
1277: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1278: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1279: p_phone_obj IN HZ_PHONE_CP_BO,
1280: p_created_by_module IN VARCHAR2,
1281: x_return_status OUT NOCOPY VARCHAR2,
1282: x_msg_count OUT NOCOPY NUMBER,

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

1320: * @rep:displayname Save Phone Business Object
1321: * @rep:doccd 120hztig.pdf Save Phone Business Object, Oracle Trading Community Architecture Technical Implementation Guide
1322: */
1323: PROCEDURE save_phone_bo(
1324: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1325: p_phone_obj IN HZ_PHONE_CP_BO,
1326: p_created_by_module IN VARCHAR2,
1327: p_obj_source IN VARCHAR2 := null,
1328: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

1324: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1325: p_phone_obj IN HZ_PHONE_CP_BO,
1326: p_created_by_module IN VARCHAR2,
1327: p_obj_source IN VARCHAR2 := null,
1328: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1329: x_return_status OUT NOCOPY VARCHAR2,
1330: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1331: x_return_obj OUT NOCOPY HZ_PHONE_CP_BO,
1332: x_phone_id OUT NOCOPY NUMBER,

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

1346: --
1347: -- ARGUMENTS
1348: -- IN:
1349: -- p_init_msg_list Initialize message stack if it is set to
1350: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1351: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1352: -- the completeness of business object.
1353: -- p_telex_obj Telex business object.
1354: -- p_created_by_module Created by module.

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

1347: -- ARGUMENTS
1348: -- IN:
1349: -- p_init_msg_list Initialize message stack if it is set to
1350: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1351: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1352: -- the completeness of business object.
1353: -- p_telex_obj Telex business object.
1354: -- p_created_by_module Created by module.
1355: -- IN/OUT:

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

1358: -- px_parent_osr Parent orig system reference.
1359: -- px_parent_obj_type Parent object type.
1360: -- OUT:
1361: -- x_return_status Return status after the call. The status can
1362: -- be fnd_api.g_ret_sts_success (success),
1363: -- fnd_api.g_ret_sts_error (error),
1364: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1365: -- x_msg_count Number of messages in message stack.
1366: -- x_msg_data Message text if x_msg_count is 1.

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

1359: -- px_parent_obj_type Parent object type.
1360: -- OUT:
1361: -- x_return_status Return status after the call. The status can
1362: -- be fnd_api.g_ret_sts_success (success),
1363: -- fnd_api.g_ret_sts_error (error),
1364: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1365: -- x_msg_count Number of messages in message stack.
1366: -- x_msg_data Message text if x_msg_count is 1.
1367: -- x_telex_id Contact point ID.

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

1360: -- OUT:
1361: -- x_return_status Return status after the call. The status can
1362: -- be fnd_api.g_ret_sts_success (success),
1363: -- fnd_api.g_ret_sts_error (error),
1364: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1365: -- x_msg_count Number of messages in message stack.
1366: -- x_msg_data Message text if x_msg_count is 1.
1367: -- x_telex_id Contact point ID.
1368: -- x_telex_os Contact point orig system.

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

1374: --
1375: -- 14-DEC-2004 Arnold Ng Created.
1376:
1377: PROCEDURE save_telex_bo(
1378: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1379: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1380: p_telex_obj IN HZ_TELEX_CP_BO,
1381: p_created_by_module IN VARCHAR2,
1382: x_return_status OUT NOCOPY VARCHAR2,

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

1375: -- 14-DEC-2004 Arnold Ng Created.
1376:
1377: PROCEDURE save_telex_bo(
1378: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1379: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1380: p_telex_obj IN HZ_TELEX_CP_BO,
1381: p_created_by_module IN VARCHAR2,
1382: x_return_status OUT NOCOPY VARCHAR2,
1383: x_msg_count OUT NOCOPY NUMBER,

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

1421: * @rep:displayname Save Telex Business Object
1422: * @rep:doccd 120hztig.pdf Save Telex Business Object, Oracle Trading Community Architecture Technical Implementation Guide
1423: */
1424: PROCEDURE save_telex_bo(
1425: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1426: p_telex_obj IN HZ_TELEX_CP_BO,
1427: p_created_by_module IN VARCHAR2,
1428: p_obj_source IN VARCHAR2 := null,
1429: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

1425: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1426: p_telex_obj IN HZ_TELEX_CP_BO,
1427: p_created_by_module IN VARCHAR2,
1428: p_obj_source IN VARCHAR2 := null,
1429: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1430: x_return_status OUT NOCOPY VARCHAR2,
1431: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1432: x_return_obj OUT NOCOPY HZ_TELEX_CP_BO,
1433: x_telex_id OUT NOCOPY NUMBER,

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

1446: --
1447: -- ARGUMENTS
1448: -- IN:
1449: -- p_init_msg_list Initialize message stack if it is set to
1450: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1451: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1452: -- the completeness of business object.
1453: -- p_email_obj Email business object.
1454: -- p_created_by_module Created by module.

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

1447: -- ARGUMENTS
1448: -- IN:
1449: -- p_init_msg_list Initialize message stack if it is set to
1450: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1451: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1452: -- the completeness of business object.
1453: -- p_email_obj Email business object.
1454: -- p_created_by_module Created by module.
1455: -- IN/OUT:

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

1458: -- px_parent_osr Parent orig system reference.
1459: -- px_parent_obj_type Parent object type.
1460: -- OUT:
1461: -- x_return_status Return status after the call. The status can
1462: -- be fnd_api.g_ret_sts_success (success),
1463: -- fnd_api.g_ret_sts_error (error),
1464: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1465: -- x_msg_count Number of messages in message stack.
1466: -- x_msg_data Message text if x_msg_count is 1.

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

1459: -- px_parent_obj_type Parent object type.
1460: -- OUT:
1461: -- x_return_status Return status after the call. The status can
1462: -- be fnd_api.g_ret_sts_success (success),
1463: -- fnd_api.g_ret_sts_error (error),
1464: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1465: -- x_msg_count Number of messages in message stack.
1466: -- x_msg_data Message text if x_msg_count is 1.
1467: -- x_email_id Contact point ID.

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

1460: -- OUT:
1461: -- x_return_status Return status after the call. The status can
1462: -- be fnd_api.g_ret_sts_success (success),
1463: -- fnd_api.g_ret_sts_error (error),
1464: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1465: -- x_msg_count Number of messages in message stack.
1466: -- x_msg_data Message text if x_msg_count is 1.
1467: -- x_email_id Contact point ID.
1468: -- x_email_os Contact point orig system.

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

1474: --
1475: -- 14-DEC-2004 Arnold Ng Created.
1476:
1477: PROCEDURE save_email_bo(
1478: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1479: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1480: p_email_obj IN HZ_EMAIL_CP_BO,
1481: p_created_by_module IN VARCHAR2,
1482: x_return_status OUT NOCOPY VARCHAR2,

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

1475: -- 14-DEC-2004 Arnold Ng Created.
1476:
1477: PROCEDURE save_email_bo(
1478: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1479: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1480: p_email_obj IN HZ_EMAIL_CP_BO,
1481: p_created_by_module IN VARCHAR2,
1482: x_return_status OUT NOCOPY VARCHAR2,
1483: x_msg_count OUT NOCOPY NUMBER,

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

1521: * @rep:displayname Save Email Business Object
1522: * @rep:doccd 120hztig.pdf Save Email Business Object, Oracle Trading Community Architecture Technical Implementation Guide
1523: */
1524: PROCEDURE save_email_bo(
1525: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1526: p_email_obj IN HZ_EMAIL_CP_BO,
1527: p_created_by_module IN VARCHAR2,
1528: p_obj_source IN VARCHAR2 := null,
1529: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

1525: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1526: p_email_obj IN HZ_EMAIL_CP_BO,
1527: p_created_by_module IN VARCHAR2,
1528: p_obj_source IN VARCHAR2 := null,
1529: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1530: x_return_status OUT NOCOPY VARCHAR2,
1531: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1532: x_return_obj OUT NOCOPY HZ_EMAIL_CP_BO,
1533: x_email_id OUT NOCOPY NUMBER,

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

1546: --
1547: -- ARGUMENTS
1548: -- IN:
1549: -- p_init_msg_list Initialize message stack if it is set to
1550: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1551: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1552: -- the completeness of business object.
1553: -- p_web_obj Web business object.
1554: -- p_created_by_module Created by module.

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

1547: -- ARGUMENTS
1548: -- IN:
1549: -- p_init_msg_list Initialize message stack if it is set to
1550: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1551: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1552: -- the completeness of business object.
1553: -- p_web_obj Web business object.
1554: -- p_created_by_module Created by module.
1555: -- IN/OUT:

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

1558: -- px_parent_osr Parent orig system reference.
1559: -- px_parent_obj_type Parent object type.
1560: -- OUT:
1561: -- x_return_status Return status after the call. The status can
1562: -- be fnd_api.g_ret_sts_success (success),
1563: -- fnd_api.g_ret_sts_error (error),
1564: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1565: -- x_msg_count Number of messages in message stack.
1566: -- x_msg_data Message text if x_msg_count is 1.

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

1559: -- px_parent_obj_type Parent object type.
1560: -- OUT:
1561: -- x_return_status Return status after the call. The status can
1562: -- be fnd_api.g_ret_sts_success (success),
1563: -- fnd_api.g_ret_sts_error (error),
1564: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1565: -- x_msg_count Number of messages in message stack.
1566: -- x_msg_data Message text if x_msg_count is 1.
1567: -- x_web_id Contact point ID.

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

1560: -- OUT:
1561: -- x_return_status Return status after the call. The status can
1562: -- be fnd_api.g_ret_sts_success (success),
1563: -- fnd_api.g_ret_sts_error (error),
1564: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1565: -- x_msg_count Number of messages in message stack.
1566: -- x_msg_data Message text if x_msg_count is 1.
1567: -- x_web_id Contact point ID.
1568: -- x_web_os Contact point orig system.

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

1574: --
1575: -- 14-DEC-2004 Arnold Ng Created.
1576:
1577: PROCEDURE save_web_bo(
1578: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1579: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1580: p_web_obj IN HZ_WEB_CP_BO,
1581: p_created_by_module IN VARCHAR2,
1582: x_return_status OUT NOCOPY VARCHAR2,

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

1575: -- 14-DEC-2004 Arnold Ng Created.
1576:
1577: PROCEDURE save_web_bo(
1578: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1579: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1580: p_web_obj IN HZ_WEB_CP_BO,
1581: p_created_by_module IN VARCHAR2,
1582: x_return_status OUT NOCOPY VARCHAR2,
1583: x_msg_count OUT NOCOPY NUMBER,

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

1621: * @rep:displayname Save Web Business Object
1622: * @rep:doccd 120hztig.pdf Save Web Business Object, Oracle Trading Community Architecture Technical Implementation Guide
1623: */
1624: PROCEDURE save_web_bo(
1625: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1626: p_web_obj IN HZ_WEB_CP_BO,
1627: p_created_by_module IN VARCHAR2,
1628: p_obj_source IN VARCHAR2 := null,
1629: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

1625: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1626: p_web_obj IN HZ_WEB_CP_BO,
1627: p_created_by_module IN VARCHAR2,
1628: p_obj_source IN VARCHAR2 := null,
1629: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1630: x_return_status OUT NOCOPY VARCHAR2,
1631: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1632: x_return_obj OUT NOCOPY HZ_WEB_CP_BO,
1633: x_web_id OUT NOCOPY NUMBER,

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

1646: --
1647: -- ARGUMENTS
1648: -- IN:
1649: -- p_init_msg_list Initialize message stack if it is set to
1650: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1651: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1652: -- the completeness of business object.
1653: -- p_edi_obj EDI business object.
1654: -- p_created_by_module Created by module.

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

1647: -- ARGUMENTS
1648: -- IN:
1649: -- p_init_msg_list Initialize message stack if it is set to
1650: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1651: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1652: -- the completeness of business object.
1653: -- p_edi_obj EDI business object.
1654: -- p_created_by_module Created by module.
1655: -- IN/OUT:

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

1658: -- px_parent_osr Parent orig system reference.
1659: -- px_parent_obj_type Parent object type.
1660: -- OUT:
1661: -- x_return_status Return status after the call. The status can
1662: -- be fnd_api.g_ret_sts_success (success),
1663: -- fnd_api.g_ret_sts_error (error),
1664: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1665: -- x_msg_count Number of messages in message stack.
1666: -- x_msg_data Message text if x_msg_count is 1.

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

1659: -- px_parent_obj_type Parent object type.
1660: -- OUT:
1661: -- x_return_status Return status after the call. The status can
1662: -- be fnd_api.g_ret_sts_success (success),
1663: -- fnd_api.g_ret_sts_error (error),
1664: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1665: -- x_msg_count Number of messages in message stack.
1666: -- x_msg_data Message text if x_msg_count is 1.
1667: -- x_edi_id Contact point ID.

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

1660: -- OUT:
1661: -- x_return_status Return status after the call. The status can
1662: -- be fnd_api.g_ret_sts_success (success),
1663: -- fnd_api.g_ret_sts_error (error),
1664: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1665: -- x_msg_count Number of messages in message stack.
1666: -- x_msg_data Message text if x_msg_count is 1.
1667: -- x_edi_id Contact point ID.
1668: -- x_edi_os Contact point orig system.

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

1674: --
1675: -- 14-DEC-2004 Arnold Ng Created.
1676:
1677: PROCEDURE save_edi_bo(
1678: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1679: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1680: p_edi_obj IN HZ_EDI_CP_BO,
1681: p_created_by_module IN VARCHAR2,
1682: x_return_status OUT NOCOPY VARCHAR2,

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

1675: -- 14-DEC-2004 Arnold Ng Created.
1676:
1677: PROCEDURE save_edi_bo(
1678: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1679: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1680: p_edi_obj IN HZ_EDI_CP_BO,
1681: p_created_by_module IN VARCHAR2,
1682: x_return_status OUT NOCOPY VARCHAR2,
1683: x_msg_count OUT NOCOPY NUMBER,

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

1721: * @rep:displayname Save EDI Business Object
1722: * @rep:doccd 120hztig.pdf Save EDI Business Object, Oracle Trading Community Architecture Technical Implementation Guide
1723: */
1724: PROCEDURE save_edi_bo(
1725: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1726: p_edi_obj IN HZ_EDI_CP_BO,
1727: p_created_by_module IN VARCHAR2,
1728: p_obj_source IN VARCHAR2 := null,
1729: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

1725: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1726: p_edi_obj IN HZ_EDI_CP_BO,
1727: p_created_by_module IN VARCHAR2,
1728: p_obj_source IN VARCHAR2 := null,
1729: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1730: x_return_status OUT NOCOPY VARCHAR2,
1731: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1732: x_return_obj OUT NOCOPY HZ_EDI_CP_BO,
1733: x_edi_id OUT NOCOPY NUMBER,

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

1746: --
1747: -- ARGUMENTS
1748: -- IN:
1749: -- p_init_msg_list Initialize message stack if it is set to
1750: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1751: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1752: -- the completeness of business object.
1753: -- p_eft_obj EFT business object.
1754: -- p_created_by_module Created by module.

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

1747: -- ARGUMENTS
1748: -- IN:
1749: -- p_init_msg_list Initialize message stack if it is set to
1750: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1751: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1752: -- the completeness of business object.
1753: -- p_eft_obj EFT business object.
1754: -- p_created_by_module Created by module.
1755: -- IN/OUT:

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

1758: -- px_parent_osr Parent orig system reference.
1759: -- px_parent_obj_type Parent object type.
1760: -- OUT:
1761: -- x_return_status Return status after the call. The status can
1762: -- be fnd_api.g_ret_sts_success (success),
1763: -- fnd_api.g_ret_sts_error (error),
1764: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1765: -- x_msg_count Number of messages in message stack.
1766: -- x_msg_data Message text if x_msg_count is 1.

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

1759: -- px_parent_obj_type Parent object type.
1760: -- OUT:
1761: -- x_return_status Return status after the call. The status can
1762: -- be fnd_api.g_ret_sts_success (success),
1763: -- fnd_api.g_ret_sts_error (error),
1764: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1765: -- x_msg_count Number of messages in message stack.
1766: -- x_msg_data Message text if x_msg_count is 1.
1767: -- x_eft_id Contact point ID.

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

1760: -- OUT:
1761: -- x_return_status Return status after the call. The status can
1762: -- be fnd_api.g_ret_sts_success (success),
1763: -- fnd_api.g_ret_sts_error (error),
1764: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1765: -- x_msg_count Number of messages in message stack.
1766: -- x_msg_data Message text if x_msg_count is 1.
1767: -- x_eft_id Contact point ID.
1768: -- x_eft_os Contact point orig system.

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

1774: --
1775: -- 14-DEC-2004 Arnold Ng Created.
1776:
1777: PROCEDURE save_eft_bo(
1778: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1779: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1780: p_eft_obj IN HZ_EFT_CP_BO,
1781: p_created_by_module IN VARCHAR2,
1782: x_return_status OUT NOCOPY VARCHAR2,

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

1775: -- 14-DEC-2004 Arnold Ng Created.
1776:
1777: PROCEDURE save_eft_bo(
1778: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1779: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1780: p_eft_obj IN HZ_EFT_CP_BO,
1781: p_created_by_module IN VARCHAR2,
1782: x_return_status OUT NOCOPY VARCHAR2,
1783: x_msg_count OUT NOCOPY NUMBER,

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

1821: * @rep:displayname Save EFT Business Object
1822: * @rep:doccd 120hztig.pdf Save EFT Business Object, Oracle Trading Community Architecture Technical Implementation Guide
1823: */
1824: PROCEDURE save_eft_bo(
1825: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1826: p_eft_obj IN HZ_EFT_CP_BO,
1827: p_created_by_module IN VARCHAR2,
1828: p_obj_source IN VARCHAR2 := null,
1829: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

1825: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1826: p_eft_obj IN HZ_EFT_CP_BO,
1827: p_created_by_module IN VARCHAR2,
1828: p_obj_source IN VARCHAR2 := null,
1829: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1830: x_return_status OUT NOCOPY VARCHAR2,
1831: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1832: x_return_obj OUT NOCOPY HZ_EFT_CP_BO,
1833: x_eft_id OUT NOCOPY NUMBER,

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

1846: --
1847: -- ARGUMENTS
1848: -- IN:
1849: -- p_init_msg_list Initialize message stack if it is set to
1850: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1851: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1852: -- the completeness of business object.
1853: -- p_sms_obj SMS business object.
1854: -- p_created_by_module Created by module.

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

1847: -- ARGUMENTS
1848: -- IN:
1849: -- p_init_msg_list Initialize message stack if it is set to
1850: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1851: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
1852: -- the completeness of business object.
1853: -- p_sms_obj SMS business object.
1854: -- p_created_by_module Created by module.
1855: -- IN/OUT:

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

1858: -- px_parent_osr Parent orig system reference.
1859: -- px_parent_obj_type Parent object type.
1860: -- OUT:
1861: -- x_return_status Return status after the call. The status can
1862: -- be fnd_api.g_ret_sts_success (success),
1863: -- fnd_api.g_ret_sts_error (error),
1864: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1865: -- x_msg_count Number of messages in message stack.
1866: -- x_msg_data Message text if x_msg_count is 1.

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

1859: -- px_parent_obj_type Parent object type.
1860: -- OUT:
1861: -- x_return_status Return status after the call. The status can
1862: -- be fnd_api.g_ret_sts_success (success),
1863: -- fnd_api.g_ret_sts_error (error),
1864: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1865: -- x_msg_count Number of messages in message stack.
1866: -- x_msg_data Message text if x_msg_count is 1.
1867: -- x_sms_id Contact point ID.

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

1860: -- OUT:
1861: -- x_return_status Return status after the call. The status can
1862: -- be fnd_api.g_ret_sts_success (success),
1863: -- fnd_api.g_ret_sts_error (error),
1864: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1865: -- x_msg_count Number of messages in message stack.
1866: -- x_msg_data Message text if x_msg_count is 1.
1867: -- x_sms_id Contact point ID.
1868: -- x_sms_os Contact point orig system.

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

1874: --
1875: -- 14-DEC-2004 Arnold Ng Created.
1876:
1877: PROCEDURE save_sms_bo(
1878: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1879: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1880: p_sms_obj IN HZ_SMS_CP_BO,
1881: p_created_by_module IN VARCHAR2,
1882: x_return_status OUT NOCOPY VARCHAR2,

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

1875: -- 14-DEC-2004 Arnold Ng Created.
1876:
1877: PROCEDURE save_sms_bo(
1878: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1879: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1880: p_sms_obj IN HZ_SMS_CP_BO,
1881: p_created_by_module IN VARCHAR2,
1882: x_return_status OUT NOCOPY VARCHAR2,
1883: x_msg_count OUT NOCOPY NUMBER,

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

1921: * @rep:displayname Save SMS Business Object
1922: * @rep:doccd 120hztig.pdf Save SMS Business Object, Oracle Trading Community Architecture Technical Implementation Guide
1923: */
1924: PROCEDURE save_sms_bo(
1925: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1926: p_sms_obj IN HZ_SMS_CP_BO,
1927: p_created_by_module IN VARCHAR2,
1928: p_obj_source IN VARCHAR2 := null,
1929: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

1925: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
1926: p_sms_obj IN HZ_SMS_CP_BO,
1927: p_created_by_module IN VARCHAR2,
1928: p_obj_source IN VARCHAR2 := null,
1929: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
1930: x_return_status OUT NOCOPY VARCHAR2,
1931: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
1932: x_return_obj OUT NOCOPY HZ_SMS_CP_BO,
1933: x_sms_id OUT NOCOPY NUMBER,

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

1971: -- p_init_msg_list Initialize message stack if it is set to
1972: -- p_phone_id phone ID.If this id passed in, return only one phone obj.
1973: -- p_phone_os phone orig system.
1974: -- p_phone_osr phone orig system reference.
1975: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1976: -- OUT:
1977: -- x_phone_obj Logical phone record.
1978: -- x_return_status Return status after the call. The status can
1979: -- be fnd_api.g_ret_sts_success (success),

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

1975: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
1976: -- OUT:
1977: -- x_phone_obj Logical phone record.
1978: -- x_return_status Return status after the call. The status can
1979: -- be fnd_api.g_ret_sts_success (success),
1980: -- fnd_api.g_ret_sts_error (error),
1981: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1982: -- x_msg_count Number of messages in message stack.
1983: -- x_msg_data Message text if x_msg_count is 1.

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

1976: -- OUT:
1977: -- x_phone_obj Logical phone record.
1978: -- x_return_status Return status after the call. The status can
1979: -- be fnd_api.g_ret_sts_success (success),
1980: -- fnd_api.g_ret_sts_error (error),
1981: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1982: -- x_msg_count Number of messages in message stack.
1983: -- x_msg_data Message text if x_msg_count is 1.
1984: --

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

1977: -- x_phone_obj Logical phone record.
1978: -- x_return_status Return status after the call. The status can
1979: -- be fnd_api.g_ret_sts_success (success),
1980: -- fnd_api.g_ret_sts_error (error),
1981: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
1982: -- x_msg_count Number of messages in message stack.
1983: -- x_msg_data Message text if x_msg_count is 1.
1984: --
1985: -- NOTES

Line 1995: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

1991: --
1992:
1993:
1994: PROCEDURE get_phone_bo (
1995: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1996: p_phone_id IN NUMBER,
1997: p_phone_os IN VARCHAR2,
1998: p_phone_osr IN VARCHAR2,
1999: x_phone_obj OUT NOCOPY HZ_PHONE_CP_BO,

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

2040: -- p_init_msg_list Initialize message stack if it is set to
2041: -- p_telex_id telex ID.If this id passed in, return only one telex obj.
2042: -- p_telex_os telex orig system.
2043: -- p_telex_osr telex orig system reference.
2044: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2045: -- OUT:
2046: -- x_telex_obj Logical telex record.
2047: -- x_return_status Return status after the call. The status can
2048: -- be fnd_api.g_ret_sts_success (success),

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

2044: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2045: -- OUT:
2046: -- x_telex_obj Logical telex record.
2047: -- x_return_status Return status after the call. The status can
2048: -- be fnd_api.g_ret_sts_success (success),
2049: -- fnd_api.g_ret_sts_error (error),
2050: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2051: -- x_msg_count Number of messages in message stack.
2052: -- x_msg_data Message text if x_msg_count is 1.

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

2045: -- OUT:
2046: -- x_telex_obj Logical telex record.
2047: -- x_return_status Return status after the call. The status can
2048: -- be fnd_api.g_ret_sts_success (success),
2049: -- fnd_api.g_ret_sts_error (error),
2050: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2051: -- x_msg_count Number of messages in message stack.
2052: -- x_msg_data Message text if x_msg_count is 1.
2053: --

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

2046: -- x_telex_obj Logical telex record.
2047: -- x_return_status Return status after the call. The status can
2048: -- be fnd_api.g_ret_sts_success (success),
2049: -- fnd_api.g_ret_sts_error (error),
2050: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2051: -- x_msg_count Number of messages in message stack.
2052: -- x_msg_data Message text if x_msg_count is 1.
2053: --
2054: -- NOTES

Line 2064: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

2060: --
2061:
2062:
2063: PROCEDURE get_telex_bo (
2064: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2065: p_telex_id IN NUMBER,
2066: p_telex_os IN VARCHAR2,
2067: p_telex_osr IN VARCHAR2,
2068: x_telex_obj OUT NOCOPY HZ_TELEX_CP_BO,

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

2109: -- p_init_msg_list Initialize message stack if it is set to
2110: -- p_email_id email ID.If this id passed in, return only one email obj.
2111: -- p_email_os email orig system.
2112: -- p_email_osr email orig system reference.
2113: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2114: -- OUT:
2115: -- x_email_obj Logical email record.
2116: -- x_return_status Return status after the call. The status can
2117: -- be fnd_api.g_ret_sts_success (success),

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

2113: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2114: -- OUT:
2115: -- x_email_obj Logical email record.
2116: -- x_return_status Return status after the call. The status can
2117: -- be fnd_api.g_ret_sts_success (success),
2118: -- fnd_api.g_ret_sts_error (error),
2119: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2120: -- x_msg_count Number of messages in message stack.
2121: -- x_msg_data Message text if x_msg_count is 1.

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

2114: -- OUT:
2115: -- x_email_obj Logical email record.
2116: -- x_return_status Return status after the call. The status can
2117: -- be fnd_api.g_ret_sts_success (success),
2118: -- fnd_api.g_ret_sts_error (error),
2119: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2120: -- x_msg_count Number of messages in message stack.
2121: -- x_msg_data Message text if x_msg_count is 1.
2122: --

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

2115: -- x_email_obj Logical email record.
2116: -- x_return_status Return status after the call. The status can
2117: -- be fnd_api.g_ret_sts_success (success),
2118: -- fnd_api.g_ret_sts_error (error),
2119: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2120: -- x_msg_count Number of messages in message stack.
2121: -- x_msg_data Message text if x_msg_count is 1.
2122: --
2123: -- NOTES

Line 2133: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

2129: --
2130:
2131:
2132: PROCEDURE get_email_bo (
2133: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2134: p_email_id IN NUMBER,
2135: p_email_os IN VARCHAR2,
2136: p_email_osr IN VARCHAR2,
2137: x_email_obj OUT NOCOPY HZ_EMAIL_CP_BO,

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

2178: -- p_init_msg_list Initialize message stack if it is set to
2179: -- p_web_id web ID.If this id passed in, return only one web obj.
2180: -- p_web_os web orig system.
2181: -- p_web_osr web orig system reference.
2182: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2183: -- OUT:
2184: -- x_web_obj Logical web record.
2185: -- x_return_status Return status after the call. The status can
2186: -- be fnd_api.g_ret_sts_success (success),

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

2182: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2183: -- OUT:
2184: -- x_web_obj Logical web record.
2185: -- x_return_status Return status after the call. The status can
2186: -- be fnd_api.g_ret_sts_success (success),
2187: -- fnd_api.g_ret_sts_error (error),
2188: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2189: -- x_msg_count Number of messages in message stack.
2190: -- x_msg_data Message text if x_msg_count is 1.

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

2183: -- OUT:
2184: -- x_web_obj Logical web record.
2185: -- x_return_status Return status after the call. The status can
2186: -- be fnd_api.g_ret_sts_success (success),
2187: -- fnd_api.g_ret_sts_error (error),
2188: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2189: -- x_msg_count Number of messages in message stack.
2190: -- x_msg_data Message text if x_msg_count is 1.
2191: --

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

2184: -- x_web_obj Logical web record.
2185: -- x_return_status Return status after the call. The status can
2186: -- be fnd_api.g_ret_sts_success (success),
2187: -- fnd_api.g_ret_sts_error (error),
2188: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2189: -- x_msg_count Number of messages in message stack.
2190: -- x_msg_data Message text if x_msg_count is 1.
2191: --
2192: -- NOTES

Line 2202: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

2198: --
2199:
2200:
2201: PROCEDURE get_web_bo (
2202: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2203: p_web_id IN NUMBER,
2204: p_web_os IN VARCHAR2,
2205: p_web_osr IN VARCHAR2,
2206: x_web_obj OUT NOCOPY HZ_WEB_CP_BO,

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

2247: -- p_init_msg_list Initialize message stack if it is set to
2248: -- p_edi_id edi ID.If this id passed in, return only one edi obj.
2249: -- p_edi_os edi orig system.
2250: -- p_edi_osr edi orig system reference.
2251: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2252: -- OUT:
2253: -- x_edi_obj Logical edi record.
2254: -- x_return_status Return status after the call. The status can
2255: -- be fnd_api.g_ret_sts_success (success),

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

2251: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2252: -- OUT:
2253: -- x_edi_obj Logical edi record.
2254: -- x_return_status Return status after the call. The status can
2255: -- be fnd_api.g_ret_sts_success (success),
2256: -- fnd_api.g_ret_sts_error (error),
2257: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2258: -- x_msg_count Number of messages in message stack.
2259: -- x_msg_data Message text if x_msg_count is 1.

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

2252: -- OUT:
2253: -- x_edi_obj Logical edi record.
2254: -- x_return_status Return status after the call. The status can
2255: -- be fnd_api.g_ret_sts_success (success),
2256: -- fnd_api.g_ret_sts_error (error),
2257: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2258: -- x_msg_count Number of messages in message stack.
2259: -- x_msg_data Message text if x_msg_count is 1.
2260: --

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

2253: -- x_edi_obj Logical edi record.
2254: -- x_return_status Return status after the call. The status can
2255: -- be fnd_api.g_ret_sts_success (success),
2256: -- fnd_api.g_ret_sts_error (error),
2257: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2258: -- x_msg_count Number of messages in message stack.
2259: -- x_msg_data Message text if x_msg_count is 1.
2260: --
2261: -- NOTES

Line 2271: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

2267: --
2268:
2269:
2270: PROCEDURE get_edi_bo (
2271: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2272: p_edi_id IN NUMBER,
2273: p_edi_os IN VARCHAR2,
2274: p_edi_osr IN VARCHAR2,
2275: x_edi_obj OUT NOCOPY HZ_EDI_CP_BO,

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

2316: -- p_init_msg_list Initialize message stack if it is set to
2317: -- p_eft_id eft ID.If this id passed in, return only one eft obj.
2318: -- p_eft_os eft orig system.
2319: -- p_eft_osr eft orig system reference.
2320: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2321: -- OUT:
2322: -- x_eft_obj Logical eft record.
2323: -- x_return_status Return status after the call. The status can
2324: -- be fnd_api.g_ret_sts_success (success),

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

2320: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2321: -- OUT:
2322: -- x_eft_obj Logical eft record.
2323: -- x_return_status Return status after the call. The status can
2324: -- be fnd_api.g_ret_sts_success (success),
2325: -- fnd_api.g_ret_sts_error (error),
2326: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2327: -- x_msg_count Number of messages in message stack.
2328: -- x_msg_data Message text if x_msg_count is 1.

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

2321: -- OUT:
2322: -- x_eft_obj Logical eft record.
2323: -- x_return_status Return status after the call. The status can
2324: -- be fnd_api.g_ret_sts_success (success),
2325: -- fnd_api.g_ret_sts_error (error),
2326: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2327: -- x_msg_count Number of messages in message stack.
2328: -- x_msg_data Message text if x_msg_count is 1.
2329: --

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

2322: -- x_eft_obj Logical eft record.
2323: -- x_return_status Return status after the call. The status can
2324: -- be fnd_api.g_ret_sts_success (success),
2325: -- fnd_api.g_ret_sts_error (error),
2326: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2327: -- x_msg_count Number of messages in message stack.
2328: -- x_msg_data Message text if x_msg_count is 1.
2329: --
2330: -- NOTES

Line 2340: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

2336: --
2337:
2338:
2339: PROCEDURE get_eft_bo (
2340: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2341: p_eft_id IN NUMBER,
2342: p_eft_os IN VARCHAR2,
2343: p_eft_osr IN VARCHAR2,
2344: x_eft_obj OUT NOCOPY HZ_EFT_CP_BO,

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

2385: -- p_init_msg_list Initialize message stack if it is set to
2386: -- p_sms_id sms ID.If this id passed in, return only one sms obj.
2387: -- p_sms_os sms orig system.
2388: -- p_sms_osr sms orig system reference.
2389: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2390: -- OUT:
2391: -- x_sms_objs Logical sms records.
2392: -- x_return_status Return status after the call. The status can
2393: -- be fnd_api.g_ret_sts_success (success),

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

2389: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
2390: -- OUT:
2391: -- x_sms_objs Logical sms records.
2392: -- x_return_status Return status after the call. The status can
2393: -- be fnd_api.g_ret_sts_success (success),
2394: -- fnd_api.g_ret_sts_error (error),
2395: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2396: -- x_msg_count Number of messages in message stack.
2397: -- x_msg_data Message text if x_msg_count is 1.

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

2390: -- OUT:
2391: -- x_sms_objs Logical sms records.
2392: -- x_return_status Return status after the call. The status can
2393: -- be fnd_api.g_ret_sts_success (success),
2394: -- fnd_api.g_ret_sts_error (error),
2395: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2396: -- x_msg_count Number of messages in message stack.
2397: -- x_msg_data Message text if x_msg_count is 1.
2398: --

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

2391: -- x_sms_objs Logical sms records.
2392: -- x_return_status Return status after the call. The status can
2393: -- be fnd_api.g_ret_sts_success (success),
2394: -- fnd_api.g_ret_sts_error (error),
2395: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
2396: -- x_msg_count Number of messages in message stack.
2397: -- x_msg_data Message text if x_msg_count is 1.
2398: --
2399: -- NOTES

Line 2409: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

2405: --
2406:
2407:
2408: PROCEDURE get_sms_bo (
2409: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2410: p_sms_id IN NUMBER,
2411: p_sms_os IN VARCHAR2,
2412: p_sms_osr IN VARCHAR2,
2413: x_sms_obj OUT NOCOPY HZ_SMS_CP_BO,

Line 2444: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

2440: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
2441: );
2442:
2443: PROCEDURE do_create_contact_point(
2444: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2445: p_validate_bo_flag IN VARCHAR2 := FND_API.G_TRUE,
2446: p_cp_id IN NUMBER,
2447: p_cp_os IN VARCHAR2,
2448: p_cp_osr IN VARCHAR2,

Line 2445: p_validate_bo_flag IN VARCHAR2 := FND_API.G_TRUE,

2441: );
2442:
2443: PROCEDURE do_create_contact_point(
2444: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2445: p_validate_bo_flag IN VARCHAR2 := FND_API.G_TRUE,
2446: p_cp_id IN NUMBER,
2447: p_cp_os IN VARCHAR2,
2448: p_cp_osr IN VARCHAR2,
2449: p_phone_obj IN HZ_PHONE_CP_BO,

Line 2473: p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,

2469: px_parent_obj_type IN OUT NOCOPY VARCHAR2
2470: );
2471:
2472: PROCEDURE do_update_contact_point (
2473: p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,
2474: p_cp_id IN NUMBER,
2475: p_cp_os IN VARCHAR2,
2476: p_cp_osr IN VARCHAR2,
2477: p_phone_obj IN HZ_PHONE_CP_BO,

Line 2498: p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,

2494: p_parent_os IN VARCHAR2
2495: );
2496:
2497: PROCEDURE do_save_contact_point (
2498: p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,
2499: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
2500: p_cp_id IN NUMBER,
2501: p_cp_os IN VARCHAR2,
2502: p_cp_osr IN VARCHAR2,

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

2495: );
2496:
2497: PROCEDURE do_save_contact_point (
2498: p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,
2499: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
2500: p_cp_id IN NUMBER,
2501: p_cp_os IN VARCHAR2,
2502: p_cp_osr IN VARCHAR2,
2503: p_phone_obj IN HZ_PHONE_CP_BO,