DBA Data[Home] [Help]

PACKAGE: APPS.PA_MAINT_PROJECT_COMMITMENTS

Source


1 PACKAGE PA_MAINT_PROJECT_COMMITMENTS AS
2 /* $Header: PAACCMTS.pls 120.1 2005/08/19 16:13:52 mwasowic noship $ */
3 
4 -- This package consists of the following procedure
5 
6 -- Process_Txn_Accum_Cmt - This procedure reads and processes all commitment
7 --                         records in the PA_TXN_ACCUM table
8 
9 Procedure Process_Txn_Accum_Cmt  (x_project_id in Number,
10                                   x_impl_opt  In Varchar2,
11                                   x_proj_accum_id   in Number,
12                                   x_current_period in Varchar2,
13                                   x_prev_period    in Varchar2,
14                                   x_current_year   in Number,
15                                   x_prev_accum_period in Varchar2,
16                                   x_current_start_date In Date,
17                                   x_current_end_date  In Date,
18                                   x_err_stack     In Out NOCOPY Varchar2, --File.Sql.39 bug 4440895
19                                   x_err_stage     In Out NOCOPY Varchar2, --File.Sql.39 bug 4440895
20                                   x_err_code      In Out NOCOPY Number ); --File.Sql.39 bug 4440895
21 
22 End ;