DBA Data[Home] [Help]

PACKAGE: APPS.EAM_CLEARANCE_DEFAULT_PVT

Source


1 PACKAGE EAM_CLEARANCE_DEFAULT_PVT   AUTHID CURRENT_USER AS
2   /* $Header: EAMVCLDS.pls 120.0 2011/03/04 01:07:33 mashah noship $ */
3   /***************************************************************************
4   --
5   --  Copyright (c) 2011 Oracle Corporation, Redwood Shores, CA, USA
6   --  All rights reserved.
7   --
8   --  FILENAME: EAMVCLDS.pls
9   --
10   --  DESCRIPTION: Spec of package EAM_CLEARANCE_DEFAULT_PVT
11   --
12   --  NOTES
13   --
14   --  HISTORY
15   --
16   --
17   ***************************************************************************/
18   -- g_debug_flag            VARCHAR2(1) := 'N';
19 
20  /******************************************************************
21 * Procedure     : Populate_Null_Columns
22  * Purpose       : This procedure will look at the columns that the user
23                    has not filled in and will assign those columns values
24                    from the old record.This procedure is not called for CREATE
25 ********************************************************************/
26 
27 PROCEDURE Populate_Null_Columns
28   (  p_eam_clearance_rec         IN  EAM_PROCESS_SAFETY_PUB.eam_clearance_header_rec_type
29    , p_old_eam_clearance_rec     IN  EAM_PROCESS_SAFETY_PUB.eam_clearance_header_rec_type
30    , x_eam_clearance_rec         OUT NOCOPY EAM_PROCESS_SAFETY_PUB.eam_clearance_header_rec_type
31   );
32 
33 
34 END EAM_CLEARANCE_DEFAULT_PVT ;
35