DBA Data[Home] [Help]

APPS.HZ_EXTRACT_ORGANIZATION_BO_PVT dependencies on HZ_ORGANIZATION_BO

Line 87: x_organization_obj OUT NOCOPY HZ_ORGANIZATION_BO,

83: PROCEDURE get_organization_bo(
84: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
85: p_organization_id IN NUMBER,
86: p_action_type IN VARCHAR2 := NULL,
87: x_organization_obj OUT NOCOPY HZ_ORGANIZATION_BO,
88: x_return_status OUT NOCOPY VARCHAR2,
89: x_msg_count OUT NOCOPY NUMBER,
90: x_msg_data OUT NOCOPY VARCHAR2
91: );

Line 99: --the procedure returns database objects of the type HZ_ORGANIZATION_BO for all of

95: -- PROCEDURE get_organizations_created
96: --
97: -- DESCRIPTION
98: --The caller provides an identifier for the Organizations created business event and
99: --the procedure returns database objects of the type HZ_ORGANIZATION_BO for all of
100: --the Organization business objects from the business event.
101:
102: --
103: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED

Line 135: HZ_ORGANIZATION_BO_PVT.get_organization_bo

131: business event signifies that one or more Organization business objects have been created.
132: The caller provides an identifier for the Organizations Created business event and the procedure
133: returns all of the Organization business objects from the business event. For each business object
134: creation captured in the business event, the procedure calls the generic Get operation:
135: HZ_ORGANIZATION_BO_PVT.get_organization_bo
136:
137: Gathering all of the returned business objects from those API calls, the procedure packages
138: them in a table structure and returns them to the caller.
139: */

Line 145: x_organization_objs OUT NOCOPY HZ_ORGANIZATION_BO_TBL,

141:
142: PROCEDURE get_organizations_created(
143: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
144: p_event_id IN NUMBER,
145: x_organization_objs OUT NOCOPY HZ_ORGANIZATION_BO_TBL,
146: x_return_status OUT NOCOPY VARCHAR2,
147: x_msg_count OUT NOCOPY NUMBER,
148: x_msg_data OUT NOCOPY VARCHAR2
149: );

Line 159: --the procedure returns database objects of the type HZ_ORGANIZATION_BO for all of

155: -- PROCEDURE get_organizations_updated
156: --
157: -- DESCRIPTION
158: --The caller provides an identifier for the Organizations update business event and
159: --the procedure returns database objects of the type HZ_ORGANIZATION_BO for all of
160: --the Organization business objects from the business event.
161:
162: --
163: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED

Line 193: of the type HZ_ORGANIZATION_BO for all of the Organization business objects from the business event.

189: The Get Organizations Updated procedure is a service to retrieve all of the Organization business objects whose updates
190: have been captured by the logical business event. Each Organizations Updated business event signifies that one or more
191: Organization business objects have been updated.
192: The caller provides an identifier for the Organizations Update business event and the procedure returns database objects
193: of the type HZ_ORGANIZATION_BO for all of the Organization business objects from the business event.
194: Gathering all of the returned database objects from those API calls, the procedure packages them in a table structure
195: and returns them to the caller.
196: */
197:

Line 201: x_organization_objs OUT NOCOPY HZ_ORGANIZATION_BO_TBL,

197:
198: PROCEDURE get_organizations_updated(
199: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
200: p_event_id IN NUMBER,
201: x_organization_objs OUT NOCOPY HZ_ORGANIZATION_BO_TBL,
202: x_return_status OUT NOCOPY VARCHAR2,
203: x_msg_count OUT NOCOPY NUMBER,
204: x_msg_data OUT NOCOPY VARCHAR2
205: );

Line 214: --the procedure returns one database object of the type HZ_ORGANIZATION_BO

210: -- PROCEDURE get_organization_updated
211: --
212: -- DESCRIPTION
213: --The caller provides an identifier for the Organizations update business event and organization id
214: --the procedure returns one database object of the type HZ_ORGANIZATION_BO
215: --
216: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
217: --
218: -- ARGUMENTS

Line 243: x_organization_obj OUT NOCOPY HZ_ORGANIZATION_BO,

239: PROCEDURE get_organization_updated(
240: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
241: p_event_id IN NUMBER,
242: p_organization_id IN NUMBER,
243: x_organization_obj OUT NOCOPY HZ_ORGANIZATION_BO,
244: x_return_status OUT NOCOPY VARCHAR2,
245: x_msg_count OUT NOCOPY NUMBER,
246: x_msg_data OUT NOCOPY VARCHAR2
247: );

Line 252: px_org_obj IN OUT NOCOPY HZ_ORGANIZATION_BO,

248:
249: -- called by set_org_cust_action_type
250: procedure set_org_bo_action_type(p_event_id IN NUMBER,
251: p_root_id IN NUMBER,
252: px_org_obj IN OUT NOCOPY HZ_ORGANIZATION_BO,
253: x_return_status OUT NOCOPY VARCHAR2);
254:
255:
256: END HZ_EXTRACT_ORGANIZATION_BO_PVT;