DBA Data[Home] [Help]

PACKAGE: APPS.EAM_WORKORDERREP_PVT

Source


1 PACKAGE EAM_WORKORDERREP_PVT AS
2 /* $Header: EAMVWRPS.pls 120.3 2006/06/05 10:27:44 smrsharm noship $ */
3  /***************************************************************************
4 --
5 --  Copyright (c) 2002 Oracle Corporation, Redwood Shores, CA, USA
6 --  All rights reserved.
7 --
8 --  FILENAME
9 --
10 --      EAMVWRPS.pls
11 --
12 --  DESCRIPTION
13 --
14 --      Spec of package EAM_WorkOrderRep_PVT
15 --
16 --  NOTES
17 --
18 --  HISTORY
19 --
20 --  02-MARCH-2006    Smriti Sharma     Initial Creation
21 ***************************************************************************/
22 
23 
24 
25 Function getWoReportXML
26 (
27 	p_wip_entity_id in system.eam_wipid_tab_type,
28 	p_operation_flag in int,
29 	p_material_flag in int,
30 	p_resource_flag in int,
31 	p_direct_material_flag in int,
32         p_short_attachment_flag in int,
33 	p_long_attachment_flag in int,
34 	p_file_attachment_flag in int,
35 	p_work_request_flag in int,
36 	p_meter_flag in int,
37 	p_quality_plan_flag in int,
38 	p_asset_bom_flag in int
39 
40 )return CLOB;
41 
42 Function getLong
43 (
44 	p_wip_id in number,
45 	p_org_id in  number,
46 	p_media_id in number,
47 	p_select in number
48 
49 )return CLOB;
50 
51 Function Convert_to_client_time
52 (
53 	p_server_time	in 	date
54 ) return date;
55 
56 
57 
58 END;
59