DBA Data[Home] [Help]

APPS.HZ_CUST_ACCT_CONTACT_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_contact_obj Customer account contact 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_contact_obj Customer account contact object.
30: -- p_created_by_module Created by module.
31: -- IN OUT:

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

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

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

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

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

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

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

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

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

52: --
53:
54: PROCEDURE create_cust_acct_contact_bo(
55: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
56: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
57: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
58: p_created_by_module IN VARCHAR2,
59: x_return_status OUT NOCOPY VARCHAR2,
60: x_msg_count OUT NOCOPY NUMBER,

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

95: * @rep:displayname Create Customer Account Contact Business Object
96: * @rep:doccd 120hztig.pdf Create Customer Account Contact Business Object, Oracle Trading Community Architecture Technical Implementation Guide
97: */
98: PROCEDURE create_cust_acct_contact_bo(
99: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
100: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
101: p_created_by_module IN VARCHAR2,
102: p_obj_source IN VARCHAR2 := null,
103: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

99: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
100: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
101: p_created_by_module IN VARCHAR2,
102: p_obj_source IN VARCHAR2 := null,
103: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
104: x_return_status OUT NOCOPY VARCHAR2,
105: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
106: x_return_obj OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
107: x_cust_acct_contact_id OUT NOCOPY NUMBER,

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

122: --
123: -- ARGUMENTS
124: -- IN:
125: -- p_init_msg_list Initialize message stack if it is set to
126: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
127: -- p_cust_acct_contact_obj Customer account contact object.
128: -- p_created_by_module Created by module.
129: -- OUT:
130: -- x_return_status Return status after the call. The status can

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

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

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

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

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

129: -- OUT:
130: -- x_return_status Return status after the call. The status can
131: -- be fnd_api.g_ret_sts_success (success),
132: -- fnd_api.g_ret_sts_error (error),
133: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
134: -- x_msg_count Number of messages in message stack.
135: -- x_msg_data Message text if x_msg_count is 1.
136: -- x_cust_acct_contact_id Customer Account Contact ID.
137: -- x_cust_acct_contact_os Customer Account Contact orig system.

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

144: -- 14-DEC-2004 Arnold Ng Created.
145: --
146:
147: PROCEDURE update_cust_acct_contact_bo(
148: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
149: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
150: p_created_by_module IN VARCHAR2,
151: x_return_status OUT NOCOPY VARCHAR2,
152: x_msg_count OUT NOCOPY NUMBER,

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

181: PROCEDURE update_cust_acct_contact_bo(
182: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
183: p_created_by_module IN VARCHAR2,
184: p_obj_source IN VARCHAR2 := null,
185: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
186: x_return_status OUT NOCOPY VARCHAR2,
187: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
188: x_return_obj OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
189: x_cust_acct_contact_id OUT NOCOPY NUMBER,

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

200: --
201: -- ARGUMENTS
202: -- IN:
203: -- p_init_msg_list Initialize message stack if it is set to
204: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
205: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
206: -- the completeness of business object.
207: -- p_cust_acct_contact_obj Customer account contact object.
208: -- p_created_by_module Created by module.

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

201: -- ARGUMENTS
202: -- IN:
203: -- p_init_msg_list Initialize message stack if it is set to
204: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
205: -- p_validate_bo_flag If it is set to FND_API.G_TRUE, validate
206: -- the completeness of business object.
207: -- p_cust_acct_contact_obj Customer account contact object.
208: -- p_created_by_module Created by module.
209: -- IN OUT:

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

212: -- px_parent_osr Parent osr
213: -- px_parent_obj_type Parent object type
214: -- OUT:
215: -- x_return_status Return status after the call. The status can
216: -- be fnd_api.g_ret_sts_success (success),
217: -- fnd_api.g_ret_sts_error (error),
218: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
219: -- x_msg_count Number of messages in message stack.
220: -- x_msg_data Message text if x_msg_count is 1.

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

213: -- px_parent_obj_type Parent object type
214: -- OUT:
215: -- x_return_status Return status after the call. The status can
216: -- be fnd_api.g_ret_sts_success (success),
217: -- fnd_api.g_ret_sts_error (error),
218: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
219: -- x_msg_count Number of messages in message stack.
220: -- x_msg_data Message text if x_msg_count is 1.
221: -- x_cust_acct_contact_id Customer Account Contact ID.

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

214: -- OUT:
215: -- x_return_status Return status after the call. The status can
216: -- be fnd_api.g_ret_sts_success (success),
217: -- fnd_api.g_ret_sts_error (error),
218: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
219: -- x_msg_count Number of messages in message stack.
220: -- x_msg_data Message text if x_msg_count is 1.
221: -- x_cust_acct_contact_id Customer Account Contact ID.
222: -- x_cust_acct_contact_os Customer Account Contact orig system.

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

229: -- 14-DEC-2004 Arnold Ng Created.
230: --
231:
232: PROCEDURE save_cust_acct_contact_bo(
233: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
234: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
235: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
236: p_created_by_module IN VARCHAR2,
237: x_return_status OUT NOCOPY VARCHAR2,

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

230: --
231:
232: PROCEDURE save_cust_acct_contact_bo(
233: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
234: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
235: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
236: p_created_by_module IN VARCHAR2,
237: x_return_status OUT NOCOPY VARCHAR2,
238: x_msg_count OUT NOCOPY NUMBER,

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

276: * @rep:displayname Save Customer Account Contact Business Object
277: * @rep:doccd 120hztig.pdf Save Customer Account Contact Business Object, Oracle Trading Community Architecture Technical Implementation Guide
278: */
279: PROCEDURE save_cust_acct_contact_bo(
280: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
281: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
282: p_created_by_module IN VARCHAR2,
283: p_obj_source IN VARCHAR2 := null,
284: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,

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

280: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
281: p_cust_acct_contact_obj IN HZ_CUST_ACCT_CONTACT_BO,
282: p_created_by_module IN VARCHAR2,
283: p_obj_source IN VARCHAR2 := null,
284: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
285: x_return_status OUT NOCOPY VARCHAR2,
286: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
287: x_return_obj OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
288: x_cust_acct_contact_id OUT NOCOPY NUMBER,

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

307: -- IN:
308: -- p_init_msg_list Initialize message stack if it is set to
309: -- p_parent_id parent id.
310: -- p_cust_acct_contact_id customer account contact ID.
311: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
312: -- OUT:
313: -- x_cust_acct_contact_objs Logical customer account contact records.
314: -- x_return_status Return status after the call. The status can
315: -- be fnd_api.g_ret_sts_success (success),

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

311: -- FND_API.G_TRUE. Default is FND_API.G_FALSE.
312: -- OUT:
313: -- x_cust_acct_contact_objs Logical customer account contact records.
314: -- x_return_status Return status after the call. The status can
315: -- be fnd_api.g_ret_sts_success (success),
316: -- fnd_api.g_ret_sts_error (error),
317: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
318: -- x_msg_count Number of messages in message stack.
319: -- x_msg_data Message text if x_msg_count is 1.

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

312: -- OUT:
313: -- x_cust_acct_contact_objs Logical customer account contact records.
314: -- x_return_status Return status after the call. The status can
315: -- be fnd_api.g_ret_sts_success (success),
316: -- fnd_api.g_ret_sts_error (error),
317: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
318: -- x_msg_count Number of messages in message stack.
319: -- x_msg_data Message text if x_msg_count is 1.
320: --

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

313: -- x_cust_acct_contact_objs Logical customer account contact records.
314: -- x_return_status Return status after the call. The status can
315: -- be fnd_api.g_ret_sts_success (success),
316: -- fnd_api.g_ret_sts_error (error),
317: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
318: -- x_msg_count Number of messages in message stack.
319: -- x_msg_data Message text if x_msg_count is 1.
320: --
321: -- NOTES

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

350:
351: */
352:
353: PROCEDURE get_cust_acct_contact_bo (
354: p_init_msg_list IN VARCHAR2:=FND_API.G_FALSE,
355: p_cust_acct_contact_id IN NUMBER,
356: p_cust_acct_contact_os IN VARCHAR2,
357: p_cust_acct_contact_osr IN VARCHAR2,
358: x_cust_acct_contact_obj OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,

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

386: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
387: );
388:
389: PROCEDURE do_create_cac_bo(
390: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
391: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
392: p_cust_acct_contact_obj IN OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
393: p_created_by_module IN VARCHAR2,
394: p_obj_source IN VARCHAR2 := null,

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

387: );
388:
389: PROCEDURE do_create_cac_bo(
390: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
391: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
392: p_cust_acct_contact_obj IN OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
393: p_created_by_module IN VARCHAR2,
394: p_obj_source IN VARCHAR2 := null,
395: x_return_status OUT NOCOPY VARCHAR2,

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

404: px_parent_obj_type IN OUT NOCOPY VARCHAR2
405: );
406:
407: PROCEDURE do_update_cac_bo(
408: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
409: p_cust_acct_contact_obj IN OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
410: p_created_by_module IN VARCHAR2,
411: p_obj_source IN VARCHAR2 := null,
412: x_return_status OUT NOCOPY VARCHAR2,

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

418: p_parent_os IN VARCHAR2
419: );
420:
421: PROCEDURE do_save_cac_bo(
422: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
423: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
424: p_cust_acct_contact_obj IN OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
425: p_created_by_module IN VARCHAR2,
426: p_obj_source IN VARCHAR2 := null,

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

419: );
420:
421: PROCEDURE do_save_cac_bo(
422: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
423: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
424: p_cust_acct_contact_obj IN OUT NOCOPY HZ_CUST_ACCT_CONTACT_BO,
425: p_created_by_module IN VARCHAR2,
426: p_obj_source IN VARCHAR2 := null,
427: x_return_status OUT NOCOPY VARCHAR2,