[Home] [Help]
Skip to content
PACKAGE: APPS.EAM_WORKORDERREP_PVT
Source
1 PACKAGE EAM_WORKORDERREP_PVT AUTHID CURRENT_USER AS
2 /* $Header: EAMVWRPS.pls 120.5 2011/04/09 22:42:10 somitra ship $ */
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 p_safety_permit_flag in int, -- for permit param
40 p_safety_clearance_flag in int -- for clearance param
41 )return CLOB;
42
43 Function getLong
44 (
45 p_wip_id in number,
46 p_org_id in number,
47 p_media_id in number,
48 p_select in number
49
50 )return CLOB;
51
52 Function Convert_to_client_time
53 (
54 p_server_time in date
55 ) return date;
56
57
58
59 END;
60