DBA Data[Home] [Help]

APPS.HZ_CUST_ACCT_SITE_BO_PUB dependencies on FND_API

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

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

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

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

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

33: -- px_parent_acct_os Parent customer account os
34: -- px_parent_acct_osr Parent customer account osr
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_acct_osr Parent customer account osr
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_cust_acct_site_id Customer Account Site 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_cust_acct_site_id Customer Account Site ID.
43: -- x_cust_acct_site_os Customer Account Site orig system.

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

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

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

51: --
52:
53: PROCEDURE create_cust_acct_site_bo(
54: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
55: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
56: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
57: p_created_by_module IN VARCHAR2,
58: x_return_status OUT NOCOPY VARCHAR2,
59: x_msg_count OUT NOCOPY NUMBER,

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

92: * @rep:displayname Create Customer Account Site Business Object
93: * @rep:doccd 120hztig.pdf Create Customer Account Site Business Object, Oracle Trading Community Architecture Technical Implementation Guide
94: */
95: PROCEDURE create_cust_acct_site_bo(
96: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
97: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
98: p_created_by_module IN VARCHAR2,
99: p_obj_source IN VARCHAR2 := null,
100: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

96: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
97: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
98: p_created_by_module IN VARCHAR2,
99: p_obj_source IN VARCHAR2 := null,
100: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
101: x_return_status OUT NOCOPY VARCHAR2,
102: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
103: x_return_obj OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
104: x_cust_acct_site_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_cust_acct_site_obj Customer account site object.
124: -- p_created_by_module Created by module.
125: -- OUT:
126: -- x_return_status Return status after the call. The status can

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

123: -- p_cust_acct_site_obj Customer account site object.
124: -- p_created_by_module Created by module.
125: -- OUT:
126: -- x_return_status Return status after the call. The status can
127: -- be fnd_api.g_ret_sts_success (success),
128: -- fnd_api.g_ret_sts_error (error),
129: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
130: -- x_msg_count Number of messages in message stack.
131: -- x_msg_data Message text if x_msg_count is 1.

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

124: -- p_created_by_module Created by module.
125: -- OUT:
126: -- x_return_status Return status after the call. The status can
127: -- be fnd_api.g_ret_sts_success (success),
128: -- fnd_api.g_ret_sts_error (error),
129: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
130: -- x_msg_count Number of messages in message stack.
131: -- x_msg_data Message text if x_msg_count is 1.
132: -- x_cust_acct_site_id Customer Account Site ID.

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

125: -- OUT:
126: -- x_return_status Return status after the call. The status can
127: -- be fnd_api.g_ret_sts_success (success),
128: -- fnd_api.g_ret_sts_error (error),
129: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
130: -- x_msg_count Number of messages in message stack.
131: -- x_msg_data Message text if x_msg_count is 1.
132: -- x_cust_acct_site_id Customer Account Site ID.
133: -- x_cust_acct_site_os Customer Account Site orig system.

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

140: -- 14-DEC-2004 Arnold Ng Created.
141: --
142:
143: PROCEDURE update_cust_acct_site_bo(
144: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
145: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
146: p_created_by_module IN VARCHAR2,
147: x_return_status OUT NOCOPY VARCHAR2,
148: x_msg_count OUT NOCOPY NUMBER,

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

177: PROCEDURE update_cust_acct_site_bo(
178: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
179: p_created_by_module IN VARCHAR2,
180: p_obj_source IN VARCHAR2 := null,
181: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
182: x_return_status OUT NOCOPY VARCHAR2,
183: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
184: x_return_obj OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
185: x_cust_acct_site_id OUT NOCOPY NUMBER,

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_validate_bo_flag If it is set to FND_API.G_TRUE, validate
202: -- the completeness of business object.
203: -- p_cust_acct_site_obj Customer account site object.
204: -- p_created_by_module Created by module.

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

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_validate_bo_flag If it is set to FND_API.G_TRUE, validate
202: -- the completeness of business object.
203: -- p_cust_acct_site_obj Customer account site object.
204: -- p_created_by_module Created by module.
205: -- IN OUT:

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

207: -- px_parent_acct_os Parent customer account os
208: -- px_parent_acct_osr Parent customer account osr
209: -- OUT:
210: -- x_return_status Return status after the call. The status can
211: -- be fnd_api.g_ret_sts_success (success),
212: -- fnd_api.g_ret_sts_error (error),
213: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
214: -- x_msg_count Number of messages in message stack.
215: -- x_msg_data Message text if x_msg_count is 1.

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

208: -- px_parent_acct_osr Parent customer account osr
209: -- OUT:
210: -- x_return_status Return status after the call. The status can
211: -- be fnd_api.g_ret_sts_success (success),
212: -- fnd_api.g_ret_sts_error (error),
213: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
214: -- x_msg_count Number of messages in message stack.
215: -- x_msg_data Message text if x_msg_count is 1.
216: -- x_cust_acct_site_id Customer Account Site ID.

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

209: -- OUT:
210: -- x_return_status Return status after the call. The status can
211: -- be fnd_api.g_ret_sts_success (success),
212: -- fnd_api.g_ret_sts_error (error),
213: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
214: -- x_msg_count Number of messages in message stack.
215: -- x_msg_data Message text if x_msg_count is 1.
216: -- x_cust_acct_site_id Customer Account Site ID.
217: -- x_cust_acct_site_os Customer Account Site orig system.

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

224: -- 14-DEC-2004 Arnold Ng Created.
225: --
226:
227: PROCEDURE save_cust_acct_site_bo(
228: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
229: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
230: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
231: p_created_by_module IN VARCHAR2,
232: x_return_status OUT NOCOPY VARCHAR2,

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

225: --
226:
227: PROCEDURE save_cust_acct_site_bo(
228: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
229: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
230: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
231: p_created_by_module IN VARCHAR2,
232: x_return_status OUT NOCOPY VARCHAR2,
233: x_msg_count OUT NOCOPY NUMBER,

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

269: * @rep:displayname Save Customer Account Site Business Object
270: * @rep:doccd 120hztig.pdf Save Customer Account Site Business Object, Oracle Trading Community Architecture Technical Implementation Guide
271: */
272: PROCEDURE save_cust_acct_site_bo(
273: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
274: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
275: p_created_by_module IN VARCHAR2,
276: p_obj_source IN VARCHAR2 := null,
277: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

273: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
274: p_cust_acct_site_obj IN HZ_CUST_ACCT_SITE_BO,
275: p_created_by_module IN VARCHAR2,
276: p_obj_source IN VARCHAR2 := null,
277: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
278: x_return_status OUT NOCOPY VARCHAR2,
279: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
280: x_return_obj OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
281: x_cust_acct_site_id OUT NOCOPY NUMBER,

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

299: -- IN:
300: -- p_init_msg_list Initialize message stack if it is set to
301: -- p_parent_id parent id.
302: -- p_cust_acct_site_id customer account site ID.
303: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
304: -- OUT:
305: -- x_cust_acct_site_obj Logical customer account site record.
306: -- x_return_status Return status after the call. The status can
307: -- be fnd_api.g_ret_sts_success (success),

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

303: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
304: -- OUT:
305: -- x_cust_acct_site_obj Logical customer account site record.
306: -- x_return_status Return status after the call. The status can
307: -- be fnd_api.g_ret_sts_success (success),
308: -- fnd_api.g_ret_sts_error (error),
309: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
310: -- x_msg_count Number of messages in message stack.
311: -- x_msg_data Message text if x_msg_count is 1.

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

304: -- OUT:
305: -- x_cust_acct_site_obj Logical customer account site record.
306: -- x_return_status Return status after the call. The status can
307: -- be fnd_api.g_ret_sts_success (success),
308: -- fnd_api.g_ret_sts_error (error),
309: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
310: -- x_msg_count Number of messages in message stack.
311: -- x_msg_data Message text if x_msg_count is 1.
312: --

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

305: -- x_cust_acct_site_obj Logical customer account site record.
306: -- x_return_status Return status after the call. The status can
307: -- be fnd_api.g_ret_sts_success (success),
308: -- fnd_api.g_ret_sts_error (error),
309: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
310: -- x_msg_count Number of messages in message stack.
311: -- x_msg_data Message text if x_msg_count is 1.
312: --
313: -- NOTES

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

347:
348: */
349:
350: PROCEDURE get_cust_acct_site_bo (
351: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
352: p_cust_acct_site_id IN NUMBER,
353: p_cust_acct_site_os IN VARCHAR2,
354: p_cust_acct_site_osr IN VARCHAR2,
355: x_cust_acct_site_obj OUT NOCOPY HZ_CUST_ACCT_SITE_BO,

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

383: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
384: );
385:
386: PROCEDURE do_create_cust_acct_site_bo(
387: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
388: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
389: p_cust_acct_site_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
390: p_created_by_module IN VARCHAR2,
391: p_obj_source IN VARCHAR2 := null,

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

384: );
385:
386: PROCEDURE do_create_cust_acct_site_bo(
387: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
388: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
389: p_cust_acct_site_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
390: p_created_by_module IN VARCHAR2,
391: p_obj_source IN VARCHAR2 := null,
392: x_return_status OUT NOCOPY VARCHAR2,

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

400: px_parent_acct_osr IN OUT NOCOPY VARCHAR2
401: );
402:
403: PROCEDURE do_update_cust_acct_site_bo(
404: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
405: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
406: p_cust_acct_site_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
407: p_created_by_module IN VARCHAR2,
408: p_obj_source IN VARCHAR2 := null,

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

401: );
402:
403: PROCEDURE do_update_cust_acct_site_bo(
404: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
405: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
406: p_cust_acct_site_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
407: p_created_by_module IN VARCHAR2,
408: p_obj_source IN VARCHAR2 := null,
409: x_return_status OUT NOCOPY VARCHAR2,

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

415: p_parent_os IN VARCHAR2
416: );
417:
418: PROCEDURE do_save_cust_acct_site_bo(
419: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
420: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
421: p_cust_acct_site_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
422: p_created_by_module IN VARCHAR2,
423: p_obj_source IN VARCHAR2 := null,

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

416: );
417:
418: PROCEDURE do_save_cust_acct_site_bo(
419: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
420: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
421: p_cust_acct_site_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_BO,
422: p_created_by_module IN VARCHAR2,
423: p_obj_source IN VARCHAR2 := null,
424: x_return_status OUT NOCOPY VARCHAR2,

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

441: --
442: -- ARGUMENTS
443: -- IN:
444: -- p_init_msg_list Initialize message stack if it is set to
445: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
446: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
447: -- the completeness of business object.
448: -- p_cust_acct_site_v2_obj Customer account site object.
449: -- p_created_by_module Created by module.

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

442: -- ARGUMENTS
443: -- IN:
444: -- p_init_msg_list Initialize message stack if it is set to
445: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
446: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
447: -- the completeness of business object.
448: -- p_cust_acct_site_v2_obj Customer account site object.
449: -- p_created_by_module Created by module.
450: -- IN OUT:

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

452: -- px_parent_acct_os Parent customer account os
453: -- px_parent_acct_osr Parent customer account osr
454: -- OUT:
455: -- x_return_status Return status after the call. The status can
456: -- be fnd_api.g_ret_sts_success (success),
457: -- fnd_api.g_ret_sts_error (error),
458: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
459: -- x_msg_count Number of messages in message stack.
460: -- x_messages Messages in message stack

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

453: -- px_parent_acct_osr Parent customer account osr
454: -- OUT:
455: -- x_return_status Return status after the call. The status can
456: -- be fnd_api.g_ret_sts_success (success),
457: -- fnd_api.g_ret_sts_error (error),
458: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
459: -- x_msg_count Number of messages in message stack.
460: -- x_messages Messages in message stack
461: -- x_cust_acct_site_id Customer Account Site ID.

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

454: -- OUT:
455: -- x_return_status Return status after the call. The status can
456: -- be fnd_api.g_ret_sts_success (success),
457: -- fnd_api.g_ret_sts_error (error),
458: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
459: -- x_msg_count Number of messages in message stack.
460: -- x_messages Messages in message stack
461: -- x_cust_acct_site_id Customer Account Site ID.
462: -- x_cust_acct_site_os Customer Account Site orig system.

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

495: * @rep:displayname Create Customer Account Site Business Object
496: * @rep:doccd 120hztig.pdf Create Customer Account Site Business Object, Oracle Trading Community Architecture Technical Implementation Guide
497: */
498: PROCEDURE create_cust_acct_site_v2_bo(
499: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
500: p_cust_acct_site_v2_obj IN HZ_CUST_ACCT_SITE_V2_BO,
501: p_created_by_module IN VARCHAR2,
502: p_obj_source IN VARCHAR2 := null,
503: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

499: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
500: p_cust_acct_site_v2_obj IN HZ_CUST_ACCT_SITE_V2_BO,
501: p_created_by_module IN VARCHAR2,
502: p_obj_source IN VARCHAR2 := null,
503: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
504: x_return_status OUT NOCOPY VARCHAR2,
505: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
506: x_return_obj OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
507: x_cust_acct_site_id OUT NOCOPY NUMBER,

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

521: --
522: -- ARGUMENTS
523: -- IN:
524: -- p_init_msg_list Initialize message stack if it is set to
525: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
526: -- p_cust_acct_site_v2_obj Customer account site object.
527: -- p_created_by_module Created by module.
528: -- OUT:
529: -- x_return_status Return status after the call. The status can

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

526: -- p_cust_acct_site_v2_obj Customer account site object.
527: -- p_created_by_module Created by module.
528: -- OUT:
529: -- x_return_status Return status after the call. The status can
530: -- be fnd_api.g_ret_sts_success (success),
531: -- fnd_api.g_ret_sts_error (error),
532: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
533: -- x_msg_count Number of messages in message stack.
534: -- x_messages Messages in message stack

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

527: -- p_created_by_module Created by module.
528: -- OUT:
529: -- x_return_status Return status after the call. The status can
530: -- be fnd_api.g_ret_sts_success (success),
531: -- fnd_api.g_ret_sts_error (error),
532: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
533: -- x_msg_count Number of messages in message stack.
534: -- x_messages Messages in message stack
535: -- x_cust_acct_site_id Customer Account Site ID.

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

528: -- OUT:
529: -- x_return_status Return status after the call. The status can
530: -- be fnd_api.g_ret_sts_success (success),
531: -- fnd_api.g_ret_sts_error (error),
532: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
533: -- x_msg_count Number of messages in message stack.
534: -- x_messages Messages in message stack
535: -- x_cust_acct_site_id Customer Account Site ID.
536: -- x_cust_acct_site_os Customer Account Site orig system.

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

568: PROCEDURE update_cust_acct_site_v2_bo(
569: p_cust_acct_site_v2_obj IN HZ_CUST_ACCT_SITE_V2_BO,
570: p_created_by_module IN VARCHAR2,
571: p_obj_source IN VARCHAR2 := null,
572: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
573: x_return_status OUT NOCOPY VARCHAR2,
574: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
575: x_return_obj OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
576: x_cust_acct_site_id OUT NOCOPY NUMBER,

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

587: --
588: -- ARGUMENTS
589: -- IN:
590: -- p_init_msg_list Initialize message stack if it is set to
591: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
592: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
593: -- the completeness of business object.
594: -- p_cust_acct_site_v2_obj Customer account site object.
595: -- p_created_by_module Created by module.

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

588: -- ARGUMENTS
589: -- IN:
590: -- p_init_msg_list Initialize message stack if it is set to
591: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
592: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
593: -- the completeness of business object.
594: -- p_cust_acct_site_v2_obj Customer account site object.
595: -- p_created_by_module Created by module.
596: -- IN OUT:

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

598: -- px_parent_acct_os Parent customer account os
599: -- px_parent_acct_osr Parent customer account osr
600: -- OUT:
601: -- x_return_status Return status after the call. The status can
602: -- be fnd_api.g_ret_sts_success (success),
603: -- fnd_api.g_ret_sts_error (error),
604: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
605: -- x_msg_count Number of messages in message stack.
606: -- x_messages Messages in message stack

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

599: -- px_parent_acct_osr Parent customer account osr
600: -- OUT:
601: -- x_return_status Return status after the call. The status can
602: -- be fnd_api.g_ret_sts_success (success),
603: -- fnd_api.g_ret_sts_error (error),
604: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
605: -- x_msg_count Number of messages in message stack.
606: -- x_messages Messages in message stack
607: -- x_cust_acct_site_id Customer Account Site ID.

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

600: -- OUT:
601: -- x_return_status Return status after the call. The status can
602: -- be fnd_api.g_ret_sts_success (success),
603: -- fnd_api.g_ret_sts_error (error),
604: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
605: -- x_msg_count Number of messages in message stack.
606: -- x_messages Messages in message stack
607: -- x_cust_acct_site_id Customer Account Site ID.
608: -- x_cust_acct_site_os Customer Account Site orig system.

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

644: * @rep:displayname Save Customer Account Site Business Object
645: * @rep:doccd 120hztig.pdf Save Customer Account Site Business Object, Oracle Trading Community Architecture Technical Implementation Guide
646: */
647: PROCEDURE save_cust_acct_site_v2_bo(
648: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
649: p_cust_acct_site_v2_obj IN HZ_CUST_ACCT_SITE_V2_BO,
650: p_created_by_module IN VARCHAR2,
651: p_obj_source IN VARCHAR2 := null,
652: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

648: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
649: p_cust_acct_site_v2_obj IN HZ_CUST_ACCT_SITE_V2_BO,
650: p_created_by_module IN VARCHAR2,
651: p_obj_source IN VARCHAR2 := null,
652: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
653: x_return_status OUT NOCOPY VARCHAR2,
654: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
655: x_return_obj OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
656: x_cust_acct_site_id OUT NOCOPY NUMBER,

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

674: -- IN:
675: -- p_init_msg_list Initialize message stack if it is set to
676: -- p_parent_id parent id.
677: -- p_cust_acct_site_id customer account site ID.
678: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
679: -- OUT:
680: -- x_cust_acct_site_v2_obj Logical customer account site record.
681: -- x_return_status Return status after the call. The status can
682: -- be fnd_api.g_ret_sts_success (success),

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

678: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
679: -- OUT:
680: -- x_cust_acct_site_v2_obj Logical customer account site record.
681: -- x_return_status Return status after the call. The status can
682: -- be fnd_api.g_ret_sts_success (success),
683: -- fnd_api.g_ret_sts_error (error),
684: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
685: -- x_msg_count Number of messages in message stack.
686: -- x_msg_data Message text if x_msg_count is 1.

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

679: -- OUT:
680: -- x_cust_acct_site_v2_obj Logical customer account site record.
681: -- x_return_status Return status after the call. The status can
682: -- be fnd_api.g_ret_sts_success (success),
683: -- fnd_api.g_ret_sts_error (error),
684: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
685: -- x_msg_count Number of messages in message stack.
686: -- x_msg_data Message text if x_msg_count is 1.
687: --

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

680: -- x_cust_acct_site_v2_obj Logical customer account site record.
681: -- x_return_status Return status after the call. The status can
682: -- be fnd_api.g_ret_sts_success (success),
683: -- fnd_api.g_ret_sts_error (error),
684: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
685: -- x_msg_count Number of messages in message stack.
686: -- x_msg_data Message text if x_msg_count is 1.
687: --
688: -- NOTES

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

722:
723: */
724:
725: PROCEDURE get_cust_acct_site_v2_bo (
726: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
727: p_cust_acct_site_id IN NUMBER,
728: p_cust_acct_site_os IN VARCHAR2,
729: p_cust_acct_site_osr IN VARCHAR2,
730: x_cust_acct_site_v2_obj OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,

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

758: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
759: );
760:
761: PROCEDURE do_create_cust_acct_site_v2_bo(
762: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
763: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
764: p_cust_acct_site_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
765: p_created_by_module IN VARCHAR2,
766: p_obj_source IN VARCHAR2 := null,

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

759: );
760:
761: PROCEDURE do_create_cust_acct_site_v2_bo(
762: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
763: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
764: p_cust_acct_site_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
765: p_created_by_module IN VARCHAR2,
766: p_obj_source IN VARCHAR2 := null,
767: x_return_status OUT NOCOPY VARCHAR2,

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

775: px_parent_acct_osr IN OUT NOCOPY VARCHAR2
776: );
777:
778: PROCEDURE do_update_cust_acct_site_v2_bo(
779: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
780: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
781: p_cust_acct_site_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
782: p_created_by_module IN VARCHAR2,
783: p_obj_source IN VARCHAR2 := null,

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

776: );
777:
778: PROCEDURE do_update_cust_acct_site_v2_bo(
779: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
780: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
781: p_cust_acct_site_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
782: p_created_by_module IN VARCHAR2,
783: p_obj_source IN VARCHAR2 := null,
784: x_return_status OUT NOCOPY VARCHAR2,

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

790: p_parent_os IN VARCHAR2
791: );
792:
793: PROCEDURE do_save_cust_acct_site_v2_bo(
794: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
795: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
796: p_cust_acct_site_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
797: p_created_by_module IN VARCHAR2,
798: p_obj_source IN VARCHAR2 := null,

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

791: );
792:
793: PROCEDURE do_save_cust_acct_site_v2_bo(
794: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
795: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
796: p_cust_acct_site_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_SITE_V2_BO,
797: p_created_by_module IN VARCHAR2,
798: p_obj_source IN VARCHAR2 := null,
799: x_return_status OUT NOCOPY VARCHAR2,