DBA Data[Home] [Help]

APPS.HZ_CUST_ACCT_BO_PUB dependencies on HZ_CUST_ACCT_BO

Line 1: PACKAGE HZ_CUST_ACCT_BO_PUB AS

1: PACKAGE HZ_CUST_ACCT_BO_PUB AS
2: /*$Header: ARHBCABS.pls 120.8 2008/02/06 09:45:36 vsegu ship $ */
3: /*#
4: * Customer Account Business Object API
5: * Public API that allows users to manage Customer Account business objects in the Trading Community Architecture.

Line 56: p_cust_acct_obj IN HZ_CUST_ACCT_BO,

52:
53: PROCEDURE create_cust_acct_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_obj IN HZ_CUST_ACCT_BO,
57: p_created_by_module IN VARCHAR2,
58: x_return_status OUT NOCOPY VARCHAR2,
59: x_msg_count OUT NOCOPY NUMBER,
60: x_msg_data OUT NOCOPY VARCHAR2,

Line 73: * defined specifically for the API. The object type is HZ_CUST_ACCT_BO for the Customer Account business object.

69:
70: /*#
71: * Create Customer Account Business Object (create_cust_acct_bo)
72: * Creates a Customer Account business object. You pass object data to the procedure, packaged within an object type
73: * defined specifically for the API. The object type is HZ_CUST_ACCT_BO for the Customer Account business object.
74: * In addition to the object's business object attributes, the object type also includes lower-level embedded child
75: * entities or objects that can be simultaneously created.
76: *
77: * @param p_return_obj_flag Indicates if the created object is to be returned to the caller as an output parameter. Default value: false

Line 99: p_cust_acct_obj IN HZ_CUST_ACCT_BO,

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

Line 105: x_return_obj OUT NOCOPY HZ_CUST_ACCT_BO,

101: p_obj_source IN VARCHAR2 := null,
102: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
103: x_return_status OUT NOCOPY VARCHAR2,
104: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
105: x_return_obj OUT NOCOPY HZ_CUST_ACCT_BO,
106: x_cust_acct_id OUT NOCOPY NUMBER,
107: x_cust_acct_os OUT NOCOPY VARCHAR2,
108: x_cust_acct_osr OUT NOCOPY VARCHAR2,
109: px_parent_id IN OUT NOCOPY NUMBER,

Line 147: p_cust_acct_obj IN HZ_CUST_ACCT_BO,

143: -- 14-DEC-2004 Arnold Ng Created.
144:
145: PROCEDURE update_cust_acct_bo(
146: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
147: p_cust_acct_obj IN HZ_CUST_ACCT_BO,
148: p_created_by_module IN VARCHAR2,
149: x_return_status OUT NOCOPY VARCHAR2,
150: x_msg_count OUT NOCOPY NUMBER,
151: x_msg_data OUT NOCOPY VARCHAR2,

Line 160: * object type defined specifically for the API. The object type is HZ_CUST_ACCT_BO for the Customer Account business

156:
157: /*#
158: * Update Customer Account Business Object (update_cust_acct_bo)
159: * Updates a Customer Account business object. You pass any modified object data to the procedure, packaged within an
160: * object type defined specifically for the API. The object type is HZ_CUST_ACCT_BO for the Customer Account business
161: * object. In addition to the object's business object attributes, the object type also includes embedded child business
162: * entities or objects that can be simultaneously created or updated.
163: *
164: * @param p_return_obj_flag Indicates if the updated object is to be returned to the caller as an output parameter. Default value: false

Line 180: p_cust_acct_obj IN HZ_CUST_ACCT_BO,

176: * @rep:displayname Update Customer Account Business Object
177: * @rep:doccd 120hztig.pdf Update Customer Account Business Object, Oracle Trading Community Architecture Technical Implementation Guide
178: */
179: PROCEDURE update_cust_acct_bo(
180: p_cust_acct_obj IN HZ_CUST_ACCT_BO,
181: p_created_by_module IN VARCHAR2,
182: p_obj_source IN VARCHAR2 := null,
183: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
184: x_return_status OUT NOCOPY VARCHAR2,

Line 186: x_return_obj OUT NOCOPY HZ_CUST_ACCT_BO,

182: p_obj_source IN VARCHAR2 := null,
183: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
184: x_return_status OUT NOCOPY VARCHAR2,
185: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
186: x_return_obj OUT NOCOPY HZ_CUST_ACCT_BO,
187: x_cust_acct_id OUT NOCOPY NUMBER,
188: x_cust_acct_os OUT NOCOPY VARCHAR2,
189: x_cust_acct_osr OUT NOCOPY VARCHAR2
190: );

Line 232: p_cust_acct_obj IN HZ_CUST_ACCT_BO,

228:
229: PROCEDURE save_cust_acct_bo(
230: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
231: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
232: p_cust_acct_obj IN HZ_CUST_ACCT_BO,
233: p_created_by_module IN VARCHAR2,
234: x_return_status OUT NOCOPY VARCHAR2,
235: x_msg_count OUT NOCOPY NUMBER,
236: x_msg_data OUT NOCOPY VARCHAR2,

Line 250: * the provided identification information, and creates or updates the object. The object type is HZ_CUST_ACCT_BO

246: /*#
247: * Save Customer Account Business Object (save_cust_acct_bo)
248: * Saves a Customer Account business object. You pass new or modified object data to the procedure, packaged within
249: * an object type defined specifically for the API. The API then determines if the object exists in TCA, based upon
250: * the provided identification information, and creates or updates the object. The object type is HZ_CUST_ACCT_BO
251: * for the Customer Account business object. For either case, the object type that you provide will be processed as if
252: * the respective API procedure is being called (create_cust_acct_bo or update_cust_acct_bo). Please see those procedures
253: * for more details. In addition to the object's business object attributes, the object type also includes embedded
254: * child business entities or objects that can be simultaneously created or updated.

Line 278: p_cust_acct_obj IN HZ_CUST_ACCT_BO,

274: * @rep:doccd 120hztig.pdf Save Customer Account Business Object, Oracle Trading Community Architecture Technical Implementation Guide
275: */
276: PROCEDURE save_cust_acct_bo(
277: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
278: p_cust_acct_obj IN HZ_CUST_ACCT_BO,
279: p_created_by_module IN VARCHAR2,
280: p_obj_source IN VARCHAR2 := null,
281: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
282: x_return_status OUT NOCOPY VARCHAR2,

Line 284: x_return_obj OUT NOCOPY HZ_CUST_ACCT_BO,

280: p_obj_source IN VARCHAR2 := null,
281: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
282: x_return_status OUT NOCOPY VARCHAR2,
283: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
284: x_return_obj OUT NOCOPY HZ_CUST_ACCT_BO,
285: x_cust_acct_id OUT NOCOPY NUMBER,
286: x_cust_acct_os OUT NOCOPY VARCHAR2,
287: x_cust_acct_osr OUT NOCOPY VARCHAR2,
288: px_parent_id IN OUT NOCOPY NUMBER,

Line 359: x_cust_acct_obj OUT NOCOPY HZ_CUST_ACCT_BO,

355: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
356: p_cust_acct_id IN NUMBER,
357: p_cust_acct_os IN VARCHAR2,
358: p_cust_acct_osr IN VARCHAR2,
359: x_cust_acct_obj OUT NOCOPY HZ_CUST_ACCT_BO,
360: x_return_status OUT NOCOPY VARCHAR2,
361: x_msg_count OUT NOCOPY NUMBER,
362: x_msg_data OUT NOCOPY VARCHAR2
363: );

Line 385: x_cust_acct_obj OUT NOCOPY HZ_CUST_ACCT_BO,

381: PROCEDURE get_cust_acct_bo(
382: p_cust_acct_id IN NUMBER,
383: p_cust_acct_os IN VARCHAR2,
384: p_cust_acct_osr IN VARCHAR2,
385: x_cust_acct_obj OUT NOCOPY HZ_CUST_ACCT_BO,
386: x_return_status OUT NOCOPY VARCHAR2,
387: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
388: );
389:

Line 393: p_cust_acct_obj IN OUT NOCOPY HZ_CUST_ACCT_BO,

389:
390: PROCEDURE do_create_cust_acct_bo(
391: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
392: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
393: p_cust_acct_obj IN OUT NOCOPY HZ_CUST_ACCT_BO,
394: p_created_by_module IN VARCHAR2,
395: p_obj_source IN VARCHAR2 := null,
396: x_return_status OUT NOCOPY VARCHAR2,
397: x_msg_count OUT NOCOPY NUMBER,

Line 411: p_cust_acct_obj IN OUT NOCOPY HZ_CUST_ACCT_BO,

407:
408: PROCEDURE do_update_cust_acct_bo(
409: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
410: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
411: p_cust_acct_obj IN OUT NOCOPY HZ_CUST_ACCT_BO,
412: p_created_by_module IN VARCHAR2,
413: p_obj_source IN VARCHAR2 := null,
414: x_return_status OUT NOCOPY VARCHAR2,
415: x_msg_count OUT NOCOPY NUMBER,

Line 426: p_cust_acct_obj IN OUT NOCOPY HZ_CUST_ACCT_BO,

422:
423: PROCEDURE do_save_cust_acct_bo(
424: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
425: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
426: p_cust_acct_obj IN OUT NOCOPY HZ_CUST_ACCT_BO,
427: p_created_by_module IN VARCHAR2,
428: p_obj_source IN VARCHAR2 := null,
429: x_return_status OUT NOCOPY VARCHAR2,
430: x_msg_count OUT NOCOPY NUMBER,

Line 821: END HZ_CUST_ACCT_BO_PUB;

817: px_parent_obj_type IN OUT NOCOPY VARCHAR2
818: );
819:
820:
821: END HZ_CUST_ACCT_BO_PUB;