DBA Data[Home] [Help]

PACKAGE: APPS.PA_BC_COSTING

Source


1 PACKAGE pa_bc_costing AS
2 /* $Header: PABCCSTS.pls 120.0 2005/06/03 13:47:35 appldev noship $ */
3 
4   /*
5    * Funds Checking Procedure.
6    * Calls PA Funds-Checker.
7    */
8   PROCEDURE costing_fc_proc ( p_calling_module IN  VARCHAR2
9                              ,p_request_id     IN  NUMBER
10                              ,x_return_status  OUT NOCOPY NUMBER
11                              ,x_error_code     OUT NOCOPY VARCHAR2
12                              ,x_error_stage    OUT NOCOPY NUMBER
13                            );
14 
15   /*
16    * Resource Maps BTC CDLs.
17    */
18   PROCEDURE map_btc_items ( p_request_id     IN  NUMBER
19                            ,x_return_status  OUT NOCOPY NUMBER
20                            ,x_error_code     OUT NOCOPY VARCHAR2
21                            ,x_error_stage    OUT NOCOPY VARCHAR2
22                           );
23 
24   /*
25    * Called during the Distribute Total Burdened Costs process.
26    * Validates the debit lines.
27    */
28   PROCEDURE validate_debit_lines ( p_request_id     IN  NUMBER
29                                   ,x_return_status  OUT NOCOPY NUMBER
30                                   ,x_error_code     OUT NOCOPY VARCHAR2
31                                   ,x_error_stage    OUT NOCOPY NUMBER
32                                 );
33 
34   /*
35    * Funds Checking Procedure for Contingent Labor.
36    * Calls PA Funds-Checker.
37    */
38   PROCEDURE costing_fc_proc_cwk ( p_calling_module IN  VARCHAR2
39                                  ,p_request_id     IN  NUMBER
40                                  ,x_return_status  OUT NOCOPY NUMBER
41                                  ,x_error_code     OUT NOCOPY VARCHAR2
42                                  ,x_error_stage    OUT NOCOPY NUMBER
43                                );
44 
45 
46 END pa_bc_costing;