DBA Data[Home] [Help]

APPS.HZ_CUST_ACCT_BO_PUB dependencies on HZ_CUST_ACCT_V2_BO

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

477:
478: /*#
479: * Create Customer Account Business Object (create_cust_acct_v2_bo)
480: * Creates a Customer Account business object. You pass object data to the procedure, packaged within an object type
481: * defined specifically for the API. The object type is HZ_CUST_ACCT_V2_BO for the Customer Account business object.
482: * In addition to the object's business object attributes, the object type also includes lower-level embedded child
483: * entities or objects that can be simultaneously created.
484: *
485: * @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 507: p_cust_acct_v2_obj IN HZ_CUST_ACCT_V2_BO,

503: * @rep:doccd 120hztig.pdf Create Customer Account Business Object, Oracle Trading Community Architecture Technical Implementation Guide
504: */
505: PROCEDURE create_cust_acct_v2_bo(
506: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
507: p_cust_acct_v2_obj IN HZ_CUST_ACCT_V2_BO,
508: p_created_by_module IN VARCHAR2,
509: p_obj_source IN VARCHAR2 := null,
510: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
511: x_return_status OUT NOCOPY VARCHAR2,

Line 513: x_return_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,

509: p_obj_source IN VARCHAR2 := null,
510: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
511: x_return_status OUT NOCOPY VARCHAR2,
512: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
513: x_return_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,
514: x_cust_acct_id OUT NOCOPY NUMBER,
515: x_cust_acct_os OUT NOCOPY VARCHAR2,
516: x_cust_acct_osr OUT NOCOPY VARCHAR2,
517: px_parent_id IN OUT NOCOPY NUMBER,

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

552:
553: /*#
554: * Update Customer Account Business Object (update_cust_acct_v2_bo)
555: * Updates a Customer Account business object. You pass any modified object data to the procedure, packaged within an
556: * object type defined specifically for the API. The object type is HZ_CUST_ACCT_V2_BO for the Customer Account business
557: * object. In addition to the object's business object attributes, the object type also includes embedded child business
558: * entities or objects that can be simultaneously created or updated.
559: *
560: * @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 576: p_cust_acct_v2_obj IN HZ_CUST_ACCT_V2_BO,

572: * @rep:displayname Update Customer Account Business Object
573: * @rep:doccd 120hztig.pdf Update Customer Account Business Object, Oracle Trading Community Architecture Technical Implementation Guide
574: */
575: PROCEDURE update_cust_acct_v2_bo(
576: p_cust_acct_v2_obj IN HZ_CUST_ACCT_V2_BO,
577: p_created_by_module IN VARCHAR2,
578: p_obj_source IN VARCHAR2 := null,
579: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
580: x_return_status OUT NOCOPY VARCHAR2,

Line 582: x_return_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,

578: p_obj_source IN VARCHAR2 := null,
579: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
580: x_return_status OUT NOCOPY VARCHAR2,
581: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
582: x_return_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,
583: x_cust_acct_id OUT NOCOPY NUMBER,
584: x_cust_acct_os OUT NOCOPY VARCHAR2,
585: x_cust_acct_osr OUT NOCOPY VARCHAR2
586: );

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

625: /*#
626: * Save Customer Account Business Object (save_cust_acct_v2_bo)
627: * Saves a Customer Account business object. You pass new or modified object data to the procedure, packaged within
628: * an object type defined specifically for the API. The API then determines if the object exists in TCA, based upon
629: * the provided identification information, and creates or updates the object. The object type is HZ_CUST_ACCT_V2_BO
630: * for the Customer Account business object. For either case, the object type that you provide will be processed as if
631: * the respective API procedure is being called (create_cust_acct_v2_bo or update_cust_acct_v2_bo). Please see those procedures
632: * for more details. In addition to the object's business object attributes, the object type also includes embedded
633: * child business entities or objects that can be simultaneously created or updated.

Line 657: p_cust_acct_v2_obj IN HZ_CUST_ACCT_V2_BO,

653: * @rep:doccd 120hztig.pdf Save Customer Account Business Object, Oracle Trading Community Architecture Technical Implementation Guide
654: */
655: PROCEDURE save_cust_acct_v2_bo(
656: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
657: p_cust_acct_v2_obj IN HZ_CUST_ACCT_V2_BO,
658: p_created_by_module IN VARCHAR2,
659: p_obj_source IN VARCHAR2 := null,
660: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
661: x_return_status OUT NOCOPY VARCHAR2,

Line 663: x_return_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,

659: p_obj_source IN VARCHAR2 := null,
660: p_return_obj_flag IN VARCHAR2 := fnd_api.g_true,
661: x_return_status OUT NOCOPY VARCHAR2,
662: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL,
663: x_return_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,
664: x_cust_acct_id OUT NOCOPY NUMBER,
665: x_cust_acct_os OUT NOCOPY VARCHAR2,
666: x_cust_acct_osr OUT NOCOPY VARCHAR2,
667: px_parent_id IN OUT NOCOPY NUMBER,

Line 738: x_cust_acct_v2_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,

734: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
735: p_cust_acct_id IN NUMBER,
736: p_cust_acct_os IN VARCHAR2,
737: p_cust_acct_osr IN VARCHAR2,
738: x_cust_acct_v2_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,
739: x_return_status OUT NOCOPY VARCHAR2,
740: x_msg_count OUT NOCOPY NUMBER,
741: x_msg_data OUT NOCOPY VARCHAR2
742: );

Line 764: x_cust_acct_v2_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,

760: PROCEDURE get_cust_acct_v2_bo(
761: p_cust_acct_id IN NUMBER,
762: p_cust_acct_os IN VARCHAR2,
763: p_cust_acct_osr IN VARCHAR2,
764: x_cust_acct_v2_obj OUT NOCOPY HZ_CUST_ACCT_V2_BO,
765: x_return_status OUT NOCOPY VARCHAR2,
766: x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
767: );
768:

Line 772: p_cust_acct_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_V2_BO,

768:
769: PROCEDURE do_create_cust_acct_v2_bo(
770: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
771: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
772: p_cust_acct_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_V2_BO,
773: p_created_by_module IN VARCHAR2,
774: p_obj_source IN VARCHAR2 := null,
775: x_return_status OUT NOCOPY VARCHAR2,
776: x_msg_count OUT NOCOPY NUMBER,

Line 790: p_cust_acct_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_V2_BO,

786:
787: PROCEDURE do_update_cust_acct_v2_bo(
788: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
789: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
790: p_cust_acct_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_V2_BO,
791: p_created_by_module IN VARCHAR2,
792: p_obj_source IN VARCHAR2 := null,
793: x_return_status OUT NOCOPY VARCHAR2,
794: x_msg_count OUT NOCOPY NUMBER,

Line 805: p_cust_acct_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_V2_BO,

801:
802: PROCEDURE do_save_cust_acct_v2_bo(
803: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
804: p_validate_bo_flag IN VARCHAR2 := fnd_api.g_true,
805: p_cust_acct_v2_obj IN OUT NOCOPY HZ_CUST_ACCT_V2_BO,
806: p_created_by_module IN VARCHAR2,
807: p_obj_source IN VARCHAR2 := null,
808: x_return_status OUT NOCOPY VARCHAR2,
809: x_msg_count OUT NOCOPY NUMBER,