DBA Data[Home] [Help]

PACKAGE: APPS.EAM_OP_COMP_UTILITY_PVT

Source


1 PACKAGE EAM_OP_COMP_UTILITY_PVT AUTHID CURRENT_USER AS
2 /* $Header: EAMVOCUS.pls 120.0 2005/06/08 02:55:26 appldev noship $ */
3 /***************************************************************************
4 --
5 --  Copyright (c) 2002 Oracle Corporation, Redwood Shores, CA, USA
6 --  All rights reserved.
7 --
8 --  FILENAME
9 --
10 --      EAMVOCUS.pls
11 --
12 --  DESCRIPTION
13 --
14 --      Spec of package EAM_OP_COMP_UTILITY_PVT
15 --
16 --  NOTES
17 --
18 --  HISTORY
19 --
20 --  14-FEB-2005    mmaduska     Initial Creation
21 ***************************************************************************/
22 
23 
24  PROCEDURE Perform_Writes (
25 	p_eam_op_comp_rec	IN  EAM_PROCESS_WO_PUB.eam_op_comp_rec_type
26 	, x_return_status       OUT NOCOPY  VARCHAR2
27 	, x_mesg_token_tbl      OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
28   );
29 
30 PROCEDURE insert_row (
31 	p_eam_op_comp_rec     IN  EAM_PROCESS_WO_PUB.eam_op_comp_rec_type
32 	, x_return_status     OUT NOCOPY  VARCHAR2
33 	, x_mesg_token_tbl    OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
34  );
35 
36 PROCEDURE update_row (
37 	  p_eam_op_comp_rec     IN  EAM_PROCESS_WO_PUB.eam_op_comp_rec_type
38         , x_return_status       OUT NOCOPY  VARCHAR2
39 	, x_mesg_token_tbl      OUT NOCOPY EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type
40 );
41 
42 
43 END EAM_OP_COMP_UTILITY_PVT;