DBA Data[Home] [Help]

APPS.HZ_ORG_CONTACT_BO_PUB dependencies on HZ_ORG_CONTACT_BO

Line 1: PACKAGE HZ_ORG_CONTACT_BO_PUB AS

1: PACKAGE HZ_ORG_CONTACT_BO_PUB AS
2: /*$Header: ARHBOCBS.pls 120.10 2006/09/22 00:40:57 acng noship $ */
3: /*#
4: * Organization Contact Business Object API
5: * Public API that allows users to manage Organization Contact business objects in the Trading Community Architecture.

Line 55: p_org_contact_obj IN HZ_ORG_CONTACT_BO,

51:
52: PROCEDURE create_org_contact_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_org_contact_obj IN HZ_ORG_CONTACT_BO,
56: p_created_by_module IN VARCHAR2,
57: x_return_status OUT NOCOPY VARCHAR2,
58: x_msg_count OUT NOCOPY NUMBER,
59: x_msg_data OUT NOCOPY VARCHAR2,

Line 71: * object type defined specifically for the API. The object type is HZ_ORG_CONTACT_BO for the Organization Contact

67:
68: /*#
69: * Create Organization Contact Business Object (create_org_contact_bo)
70: * Creates a Organization Contact business object. You pass object data to the procedure, packaged within an
71: * object type defined specifically for the API. The object type is HZ_ORG_CONTACT_BO for the Organization Contact
72: * business object. In addition to the object's business object attributes, the object type also includes lower-level
73: * embedded child entities or objects that can be simultaneously created.
74: *
75: * @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 96: p_org_contact_obj IN HZ_ORG_CONTACT_BO,

92: * @rep:doccd 120hztig.pdf Create Organization Contact Business Object, Oracle Trading Community Architecture Technical Implementation Guide
93: */
94: PROCEDURE create_org_contact_bo(
95: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
96: p_org_contact_obj IN HZ_ORG_CONTACT_BO,
97: p_created_by_module IN VARCHAR2,
98: p_obj_source IN VARCHAR2 := null,
99: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
100: x_return_status OUT NOCOPY VARCHAR2,

Line 102: x_return_obj OUT NOCOPY HZ_ORG_CONTACT_BO,

98: p_obj_source IN VARCHAR2 := null,
99: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
100: x_return_status OUT NOCOPY VARCHAR2,
101: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
102: x_return_obj OUT NOCOPY HZ_ORG_CONTACT_BO,
103: x_org_contact_id OUT NOCOPY NUMBER,
104: x_org_contact_os OUT NOCOPY VARCHAR2,
105: x_org_contact_osr OUT NOCOPY VARCHAR2,
106: px_parent_org_id IN OUT NOCOPY NUMBER,

Line 143: p_org_contact_obj IN HZ_ORG_CONTACT_BO,

139: -- 14-DEC-2004 Arnold Ng Created.
140:
141: PROCEDURE update_org_contact_bo(
142: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
143: p_org_contact_obj IN HZ_ORG_CONTACT_BO,
144: p_created_by_module IN VARCHAR2,
145: x_return_status OUT NOCOPY VARCHAR2,
146: x_msg_count OUT NOCOPY NUMBER,
147: x_msg_data OUT NOCOPY VARCHAR2,

Line 156: * within an object type defined specifically for the API. The object type is HZ_ORG_CONTACT_BO for the

152:
153: /*#
154: * Update Organization Contact Business Object (update_org_contact_bo)
155: * Updates a Organization Contact business object. You pass any modified object data to the procedure, packaged
156: * within an object type defined specifically for the API. The object type is HZ_ORG_CONTACT_BO for the
157: * Organization Contact business object. In addition to the object's business object attributes, the object type
158: * also includes embedded child business entities or objects that can be simultaneously created or updated.
159: *
160: * @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 176: p_org_contact_obj IN HZ_ORG_CONTACT_BO,

172: * @rep:displayname Update Organization Contact Business Object
173: * @rep:doccd 120hztig.pdf Update Organization Contact Business Object, Oracle Trading Community Architecture Technical Implementation Guide
174: */
175: PROCEDURE update_org_contact_bo(
176: p_org_contact_obj IN HZ_ORG_CONTACT_BO,
177: p_created_by_module IN VARCHAR2,
178: p_obj_source IN VARCHAR2 := null,
179: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
180: x_return_status OUT NOCOPY VARCHAR2,

Line 182: x_return_obj OUT NOCOPY HZ_ORG_CONTACT_BO,

178: p_obj_source IN VARCHAR2 := null,
179: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
180: x_return_status OUT NOCOPY VARCHAR2,
181: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
182: x_return_obj OUT NOCOPY HZ_ORG_CONTACT_BO,
183: x_org_contact_id OUT NOCOPY NUMBER,
184: x_org_contact_os OUT NOCOPY VARCHAR2,
185: x_org_contact_osr OUT NOCOPY VARCHAR2
186: );

Line 227: p_org_contact_obj IN HZ_ORG_CONTACT_BO,

223:
224: PROCEDURE save_org_contact_bo(
225: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
226: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
227: p_org_contact_obj IN HZ_ORG_CONTACT_BO,
228: p_created_by_module IN VARCHAR2,
229: x_return_status OUT NOCOPY VARCHAR2,
230: x_msg_count OUT NOCOPY NUMBER,
231: x_msg_data OUT NOCOPY VARCHAR2,

Line 245: * HZ_ORG_CONTACT_BO for the Organization Contact business object. For either case, the object type that you provide

241: * Save Organization Contact Business Object (save_org_contact_bo)
242: * Saves a Organization Contact business object. You pass new or modified object data to the procedure, packaged
243: * within an object type defined specifically for the API. The API then determines if the object exists in TCA,
244: * based upon the provided identification information, and creates or updates the object. The object type is
245: * HZ_ORG_CONTACT_BO for the Organization Contact business object. For either case, the object type that you provide
246: * will be processed as if the respective API procedure is being called (create_org_contact_bo or update_org_contact_bo).
247: * Please see those procedures for more details. In addition to the object's business object attributes, the object
248: * type also includes embedded child business entities or objects that can be simultaneously created or updated.
249: *

Line 271: p_org_contact_obj IN HZ_ORG_CONTACT_BO,

267: * @rep:doccd 120hztig.pdf Save Organization Contact Business Object, Oracle Trading Community Architecture Technical Implementation Guide
268: */
269: PROCEDURE save_org_contact_bo(
270: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
271: p_org_contact_obj IN HZ_ORG_CONTACT_BO,
272: p_created_by_module IN VARCHAR2,
273: p_obj_source IN VARCHAR2 := null,
274: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
275: x_return_status OUT NOCOPY VARCHAR2,

Line 277: x_return_obj OUT NOCOPY HZ_ORG_CONTACT_BO,

273: p_obj_source IN VARCHAR2 := null,
274: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
275: x_return_status OUT NOCOPY VARCHAR2,
276: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
277: x_return_obj OUT NOCOPY HZ_ORG_CONTACT_BO,
278: x_org_contact_id OUT NOCOPY NUMBER,
279: x_org_contact_os OUT NOCOPY VARCHAR2,
280: x_org_contact_osr OUT NOCOPY VARCHAR2,
281: px_parent_org_id IN OUT NOCOPY NUMBER,

Line 325: x_org_contact_obj OUT NOCOPY HZ_ORG_CONTACT_BO,

321: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
322: p_org_contact_id IN NUMBER,
323: p_org_contact_os IN VARCHAR2,
324: p_org_contact_osr IN VARCHAR2,
325: x_org_contact_obj OUT NOCOPY HZ_ORG_CONTACT_BO,
326: x_return_status OUT NOCOPY VARCHAR2,
327: x_msg_count OUT NOCOPY NUMBER,
328: x_msg_data OUT NOCOPY VARCHAR2
329: );

Line 351: x_org_contact_obj OUT NOCOPY HZ_ORG_CONTACT_BO,

347: PROCEDURE get_org_contact_bo(
348: p_org_contact_id IN NUMBER,
349: p_org_contact_os IN VARCHAR2,
350: p_org_contact_osr IN VARCHAR2,
351: x_org_contact_obj OUT NOCOPY HZ_ORG_CONTACT_BO,
352: x_return_status OUT NOCOPY VARCHAR2,
353: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
354: );
355:

Line 359: p_org_contact_obj IN OUT NOCOPY HZ_ORG_CONTACT_BO,

355:
356: PROCEDURE do_create_org_contact_bo(
357: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
358: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
359: p_org_contact_obj IN OUT NOCOPY HZ_ORG_CONTACT_BO,
360: p_created_by_module IN VARCHAR2,
361: p_obj_source IN VARCHAR2 := null,
362: x_return_status OUT NOCOPY VARCHAR2,
363: x_msg_count OUT NOCOPY NUMBER,

Line 375: p_org_contact_obj IN OUT NOCOPY HZ_ORG_CONTACT_BO,

371: );
372:
373: PROCEDURE do_update_org_contact_bo(
374: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
375: p_org_contact_obj IN OUT NOCOPY HZ_ORG_CONTACT_BO,
376: p_created_by_module IN VARCHAR2,
377: p_obj_source IN VARCHAR2 := null,
378: x_return_status OUT NOCOPY VARCHAR2,
379: x_msg_count OUT NOCOPY NUMBER,

Line 390: p_org_contact_obj IN OUT NOCOPY HZ_ORG_CONTACT_BO,

386:
387: PROCEDURE do_save_org_contact_bo(
388: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
389: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
390: p_org_contact_obj IN OUT NOCOPY HZ_ORG_CONTACT_BO,
391: p_created_by_module IN VARCHAR2,
392: p_obj_source IN VARCHAR2 := null,
393: x_return_status OUT NOCOPY VARCHAR2,
394: x_msg_count OUT NOCOPY NUMBER,

Line 404: END HZ_ORG_CONTACT_BO_PUB;

400: px_parent_org_os IN OUT NOCOPY VARCHAR2,
401: px_parent_org_osr IN OUT NOCOPY VARCHAR2
402: );
403:
404: END HZ_ORG_CONTACT_BO_PUB;