DBA Data[Home] [Help]

PACKAGE: APPS.EAM_OP_UTILITY_PVT

Source


1 PACKAGE EAM_OP_UTILITY_PVT AUTHID CURRENT_USER AS
2 /* $Header: EAMVOPUS.pls 115.2 2002/11/25 00:04:06 baroy noship $ */
3 /***************************************************************************
4 --
5 --  Copyright (c) 2002 Oracle Corporation, Redwood Shores, CA, USA
6 --  All rights reserved.
7 --
8 --  FILENAME
9 --
10 --      EAMVOPUS.pls
11 --
12 --  DESCRIPTION
13 --
14 --      Spec of package EAM_OP_UTILITY_PVT
15 --
16 --  NOTES
17 --
18 --  HISTORY
19 --
20 --  12-JUN-2002    Kenichi Nagumo     Initial Creation
21 ***************************************************************************/
22 
23         PROCEDURE Query_Row
24         ( p_wip_entity_id      IN  NUMBER
25         , p_organization_id    IN  NUMBER
26         , p_operation_seq_num  IN  NUMBER
27         , x_eam_op_rec         OUT NOCOPY EAM_PROCESS_WO_PUB.eam_op_rec_type
28         , x_Return_status      OUT NOCOPY VARCHAR2
29          );
30 
31         PROCEDURE Insert_Row
32         ( p_eam_op_rec         IN  EAM_PROCESS_WO_PUB.eam_op_rec_type
33         , x_mesg_token_Tbl     OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
34         , x_return_Status      OUT NOCOPY VARCHAR2
35          );
36 
37         PROCEDURE Update_Row
38         ( p_eam_op_rec         IN  EAM_PROCESS_WO_PUB.eam_op_rec_type
39         , x_mesg_token_Tbl     OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
40         , x_return_Status      OUT NOCOPY VARCHAR2
41          );
42 
43         PROCEDURE Delete_Row
44         ( p_eam_op_rec         IN  EAM_PROCESS_WO_PUB.eam_op_rec_type
45         , x_mesg_token_Tbl     OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
46         , x_return_Status      OUT NOCOPY VARCHAR2
47          );
48 
49         PROCEDURE Perform_Writes
50         ( p_eam_op_rec         IN  EAM_PROCESS_WO_PUB.eam_op_rec_type
51         , x_mesg_token_tbl     OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
52         , x_return_status      OUT NOCOPY VARCHAR2
53         );
54 
55         FUNCTION NUM_OF_ROW
56         ( p_eam_op_tbl         IN  EAM_PROCESS_WO_PUB.eam_op_tbl_type
57         , p_wip_entity_id      IN NUMBER
58         , p_organization_id    IN NUMBER
59         ) RETURN BOOLEAN;
60 
61 END EAM_OP_UTILITY_PVT;