DBA Data[Home] [Help]

APPS.HZ_EXTRACT_ORG_CUST_BO_PVT dependencies on HZ_ORG_CUST_BO

Line 68: x_org_cust_obj OUT NOCOPY HZ_ORG_CUST_BO,

64: PROCEDURE get_org_cust_bo(
65: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
66: p_organization_id IN NUMBER,
67: p_action_type IN VARCHAR2 := NULL,
68: x_org_cust_obj OUT NOCOPY HZ_ORG_CUST_BO,
69: x_return_status OUT NOCOPY VARCHAR2,
70: x_msg_count OUT NOCOPY NUMBER,
71: x_msg_data OUT NOCOPY VARCHAR2
72: ) is

Line 92: x_org_cust_obj := HZ_ORG_CUST_BO(p_action_type, NULL, NULL);

88: p_prefix=>l_debug_prefix,
89: p_msg_level=>fnd_log.level_procedure);
90: END IF;
91:
92: x_org_cust_obj := HZ_ORG_CUST_BO(p_action_type, NULL, NULL);
93:
94: HZ_EXTRACT_ORGANIZATION_BO_PVT.get_organization_bo(
95: p_init_msg_list => fnd_api.g_false,
96: p_organization_id => p_organization_id,

Line 277: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,

273:
274: PROCEDURE get_org_custs_created(
275: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
276: p_event_id IN NUMBER,
277: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,
278: x_return_status OUT NOCOPY VARCHAR2,
279: x_msg_count OUT NOCOPY NUMBER,
280: x_msg_data OUT NOCOPY VARCHAR2
281: ) is

Line 331: x_org_cust_objs := HZ_ORG_CUST_BO_TBL();

327:
328:
329: -- call event API get_org_cust_updated for each id.
330:
331: x_org_cust_objs := HZ_ORG_CUST_BO_TBL();
332:
333:
334: for i in 1..l_obj_root_ids.count loop
335:

Line 351: x_org_cust_objs(i) := HZ_ORG_CUST_BO('UNCHANGED', NULL, NULL);

347: RAISE FND_API.G_EXC_ERROR;
348: END IF;
349: */
350:
351: x_org_cust_objs(i) := HZ_ORG_CUST_BO('UNCHANGED', NULL, NULL);
352:
353: HZ_EXTRACT_ORGANIZATION_BO_PVT.get_organization_bo(
354: p_init_msg_list => fnd_api.g_false,
355: p_organization_id => l_obj_root_ids(i),

Line 487: --the procedure returns database objects of the type HZ_ORG_CUST_BO for all of

483: -- PROCEDURE get_org_custs_updated
484: --
485: -- DESCRIPTION
486: --The caller provides an identifier for the Organization Customers update business event and
487: --the procedure returns database objects of the type HZ_ORG_CUST_BO for all of
488: --the Organization Customer business objects from the business event.
489:
490: --
491: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED

Line 521: database objects of the type HZ_ORG_CUST_BO for all of the Organization Customer business objects from the business event.

517: The Get Organization Customers Updated procedure is a service to retrieve all of the Organization Customer business
518: objects whose updates have been captured by the logical business event. Each Organization Customers Updated business
519: event signifies that one or more Organization Customer business objects have been updated.
520: The caller provides an identifier for the Organization Customers Update business event and the procedure returns
521: database objects of the type HZ_ORG_CUST_BO for all of the Organization Customer business objects from the business event.
522: Gathering all of the returned database objects from those API calls, the procedure packages them in a table structure
523: and returns them to the caller.
524: */
525:

Line 529: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,

525:
526: PROCEDURE get_org_custs_updated(
527: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
528: p_event_id IN NUMBER,
529: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,
530: x_return_status OUT NOCOPY VARCHAR2,
531: x_msg_count OUT NOCOPY NUMBER,
532: x_msg_data OUT NOCOPY VARCHAR2
533: ) is

Line 571: x_org_cust_objs := HZ_ORG_CUST_BO_TBL();

567: END IF;
568:
569:
570:
571: x_org_cust_objs := HZ_ORG_CUST_BO_TBL();
572:
573: for i in 1..l_obj_root_ids.count loop
574: x_org_cust_objs.extend;
575: get_org_cust_updated(

Line 918: px_org_cust_obj IN OUT NOCOPY HZ_ORG_CUST_BO,

914: end set_org_acct_bo_action_type;
915:
916: procedure set_org_cust_bo_action_type(p_event_id IN NUMBER,
917: p_root_id IN NUMBER,
918: px_org_cust_obj IN OUT NOCOPY HZ_ORG_CUST_BO,
919: x_return_status OUT NOCOPY VARCHAR2) is
920:
921: cursor c1 is
922:

Line 1054: --the procedure returns one database object of the type HZ_ORG_CUST_BO

1050: -- PROCEDURE get_org_cust_updated
1051: --
1052: -- DESCRIPTION
1053: --The caller provides an identifier for the Organization customer update business event and organization id
1054: --the procedure returns one database object of the type HZ_ORG_CUST_BO
1055: --
1056: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
1057: --
1058: -- ARGUMENTS

Line 1085: x_org_cust_obj OUT NOCOPY HZ_ORG_CUST_BO,

1081: PROCEDURE get_org_cust_updated(
1082: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
1083: p_event_id IN NUMBER,
1084: p_org_cust_id IN NUMBER,
1085: x_org_cust_obj OUT NOCOPY HZ_ORG_CUST_BO,
1086: x_return_status OUT NOCOPY VARCHAR2,
1087: x_msg_count OUT NOCOPY NUMBER,
1088: x_msg_data OUT NOCOPY VARCHAR2
1089: ) is

Line 1092: l_org_cust_obj HZ_ORG_CUST_BO;

1088: x_msg_data OUT NOCOPY VARCHAR2
1089: ) is
1090: l_obj_root_ids HZ_EXTRACT_BO_UTIL_PVT.BO_ID_TBL;
1091: l_debug_prefix VARCHAR2(30) := '';
1092: l_org_cust_obj HZ_ORG_CUST_BO;
1093: begin
1094:
1095: -- initialize API return status to success.
1096: x_return_status := FND_API.G_RET_STS_SUCCESS;