DBA Data[Home] [Help]

PACKAGE: APPS.EAM_SRAPPROVAL_PVT

Source


1 PACKAGE  EAM_SRAPPROVAL_PVT  AS
2 /*$Header: EAMVSRAS.pls 120.1 2005/06/21 15:59:20 appldev ship $ */
3 
4 
5 FUNCTION Service_Request_Created
6 	(
7 	p_subscription_guid	in	raw,
8 	p_event			in out NOCOPY wf_event_t
9 	) return varchar2;
10 
11 FUNCTION Service_Request_Updated
12 	(
13 	p_subscription_guid	in	raw,
14 	p_event			in out NOCOPY wf_event_t
15 	) return varchar2;
16 
17 Function return_department_id
18     (
19         p_maintenance_org_id in number, -- OPTIONAL, null can be passed
20 	p_inventory_item_id in number, -- OPTIONAL, null can be passed
21         p_customer_product_id in number -- OPTIONAL, null can be passed
22     )    return number;
23 
24 END EAM_SRAPPROVAL_PVT;
25 
26