DBA Data[Home] [Help]

APPS.HZ_CONTACT_POINT_BO_PUB dependencies on HZ_WEB_CP_BO

Line 346: p_web_obj IN HZ_WEB_CP_BO,

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,
350: x_msg_data OUT NOCOPY VARCHAR2,

Line 363: * specifically for the API. The object type is HZ_WEB_CP_BO for the Web business object. In addition to the object's

359:
360: /*#
361: * Create Web Business Object (create_web_bo)
362: * Creates a Web business object. You pass object data to the procedure, packaged within an object type defined
363: * specifically for the API. The object type is HZ_WEB_CP_BO for the Web business object. In addition to the object's
364: * business object attributes, the object type also includes lower-level embedded child entities or objects that can
365: * be simultaneously created.
366: *
367: * @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 389: p_web_obj IN HZ_WEB_CP_BO,

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,
393: x_return_status OUT NOCOPY VARCHAR2,

Line 395: x_return_obj OUT NOCOPY HZ_WEB_CP_BO,

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,
397: x_web_os OUT NOCOPY VARCHAR2,
398: x_web_osr OUT NOCOPY VARCHAR2,
399: px_parent_id IN OUT NOCOPY NUMBER,

Line 956: p_web_obj IN HZ_WEB_CP_BO,

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,
960: x_msg_data OUT NOCOPY VARCHAR2,

Line 969: * defined specifically for the API. The object type is HZ_WEB_CP_BO for the Web business object. In addition to the

965:
966: /*#
967: * Update Web Business Object (update_web_bo)
968: * Updates a Web business object. You pass any modified object data to the procedure, packaged within an object type
969: * defined specifically for the API. The object type is HZ_WEB_CP_BO for the Web business object. In addition to the
970: * object's business object attributes, the object type also includes embedded child business entities or objects that
971: * can be simultaneously created or updated.
972: *
973: * @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 989: p_web_obj IN HZ_WEB_CP_BO,

985: * @rep:displayname Update Web Business Object
986: * @rep:doccd 120hztig.pdf Update Web Business Object, Oracle Trading Community Architecture Technical Implementation Guide
987: */
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,

Line 995: x_return_obj OUT NOCOPY HZ_WEB_CP_BO,

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,
997: x_web_os OUT NOCOPY VARCHAR2,
998: x_web_osr OUT NOCOPY VARCHAR2
999: );

Line 1580: p_web_obj IN HZ_WEB_CP_BO,

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,
1584: x_msg_data OUT NOCOPY VARCHAR2,

Line 1598: * identification information, and creates or updates the object. The object type is HZ_WEB_CP_BO for the Web business

1594: /*#
1595: * Save Web Business Object (save_web_bo)
1596: * Saves a Web business object. You pass new or modified object data to the procedure, packaged within an object type
1597: * defined specifically for the API. The API then determines if the object exists in TCA, based upon the provided
1598: * identification information, and creates or updates the object. The object type is HZ_WEB_CP_BO for the Web business
1599: * object. For either case, the object type that you provide will be processed as if the respective API procedure is
1600: * being called (create_web_bo or update_web_bo). Please see those procedures for more details. In addition to the
1601: * object's business object attributes, the object type also includes embedded child business entities or objects that
1602: * can be simultaneously created or updated.

Line 1626: p_web_obj IN HZ_WEB_CP_BO,

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,
1630: x_return_status OUT NOCOPY VARCHAR2,

Line 1632: x_return_obj OUT NOCOPY HZ_WEB_CP_BO,

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,
1634: x_web_os OUT NOCOPY VARCHAR2,
1635: x_web_osr OUT NOCOPY VARCHAR2,
1636: px_parent_id IN OUT NOCOPY NUMBER,

Line 2206: x_web_obj OUT NOCOPY HZ_WEB_CP_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,
2207: x_return_status OUT NOCOPY VARCHAR2,
2208: x_msg_count OUT NOCOPY NUMBER,
2209: x_msg_data OUT NOCOPY VARCHAR2
2210: );

Line 2231: x_web_obj OUT NOCOPY HZ_WEB_CP_BO,

2227: PROCEDURE get_web_bo (
2228: p_web_id IN NUMBER,
2229: p_web_os IN VARCHAR2,
2230: p_web_osr IN VARCHAR2,
2231: x_web_obj OUT NOCOPY HZ_WEB_CP_BO,
2232: x_return_status OUT NOCOPY VARCHAR2,
2233: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
2234: );
2235:

Line 2452: p_web_obj IN HZ_WEB_CP_BO,

2448: p_cp_osr IN VARCHAR2,
2449: p_phone_obj IN HZ_PHONE_CP_BO,
2450: p_email_obj IN HZ_EMAIL_CP_BO,
2451: p_telex_obj IN HZ_TELEX_CP_BO,
2452: p_web_obj IN HZ_WEB_CP_BO,
2453: p_edi_obj IN HZ_EDI_CP_BO,
2454: p_eft_obj IN HZ_EFT_CP_BO,
2455: p_sms_obj IN HZ_SMS_CP_BO,
2456: p_cp_pref_objs IN OUT NOCOPY HZ_CONTACT_PREF_OBJ_TBL,

Line 2480: p_web_obj IN HZ_WEB_CP_BO,

2476: p_cp_osr IN VARCHAR2,
2477: p_phone_obj IN HZ_PHONE_CP_BO,
2478: p_email_obj IN HZ_EMAIL_CP_BO,
2479: p_telex_obj IN HZ_TELEX_CP_BO,
2480: p_web_obj IN HZ_WEB_CP_BO,
2481: p_edi_obj IN HZ_EDI_CP_BO,
2482: p_eft_obj IN HZ_EFT_CP_BO,
2483: p_sms_obj IN HZ_SMS_CP_BO,
2484: p_cp_pref_objs IN OUT NOCOPY HZ_CONTACT_PREF_OBJ_TBL,

Line 2506: p_web_obj IN HZ_WEB_CP_BO,

2502: p_cp_osr IN VARCHAR2,
2503: p_phone_obj IN HZ_PHONE_CP_BO,
2504: p_email_obj IN HZ_EMAIL_CP_BO,
2505: p_telex_obj IN HZ_TELEX_CP_BO,
2506: p_web_obj IN HZ_WEB_CP_BO,
2507: p_edi_obj IN HZ_EDI_CP_BO,
2508: p_eft_obj IN HZ_EFT_CP_BO,
2509: p_sms_obj IN HZ_SMS_CP_BO,
2510: p_cp_pref_objs IN OUT NOCOPY HZ_CONTACT_PREF_OBJ_TBL,