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: );

Line 126: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,

122:
123: PROCEDURE get_org_custs_created(
124: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
125: p_event_id IN NUMBER,
126: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,
127: x_return_status OUT NOCOPY VARCHAR2,
128: x_msg_count OUT NOCOPY NUMBER,
129: x_msg_data OUT NOCOPY VARCHAR2
130: );

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

136: -- PROCEDURE get_org_custs_updated
137: --
138: -- DESCRIPTION
139: --The caller provides an identifier for the Organization Customers update business event and
140: --the procedure returns database objects of the type HZ_ORG_CUST_BO for all of
141: --the Organization Customer business objects from the business event.
142:
143: --
144: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED

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

170: The Get Organization Customers Updated procedure is a service to retrieve all of the Organization Customer business
171: objects whose updates have been captured by the logical business event. Each Organization Customers Updated business
172: event signifies that one or more Organization Customer business objects have been updated.
173: The caller provides an identifier for the Organization Customers Update business event and the procedure returns
174: database objects of the type HZ_ORG_CUST_BO for all of the Organization Customer business objects from the business event.
175: Gathering all of the returned database objects from those API calls, the procedure packages them in a table structure
176: and returns them to the caller.
177: */
178:

Line 182: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,

178:
179: PROCEDURE get_org_custs_updated(
180: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
181: p_event_id IN NUMBER,
182: x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL,
183: x_return_status OUT NOCOPY VARCHAR2,
184: x_msg_count OUT NOCOPY NUMBER,
185: x_msg_data OUT NOCOPY VARCHAR2
186: );

Line 192: x_org_cust_obj OUT NOCOPY HZ_ORG_CUST_BO,

188: PROCEDURE get_org_cust_updated(
189: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
190: p_event_id IN NUMBER,
191: p_org_cust_id IN NUMBER,
192: x_org_cust_obj OUT NOCOPY HZ_ORG_CUST_BO,
193: x_return_status OUT NOCOPY VARCHAR2,
194: x_msg_count OUT NOCOPY NUMBER,
195: x_msg_data OUT NOCOPY VARCHAR2
196: );