DBA Data[Home] [Help]

PACKAGE: APPS.CST_PERIODIC_ABSORPTION_CP

Source


1 PACKAGE CST_PERIODIC_ABSORPTION_CP AUTHID CURRENT_USER AS
2 -- $Header: CSTCITPS.pls 120.1.12000000.3 2007/05/10 05:40:24 vmutyala ship $
3 --+=======================================================================+
4 --|               Copyright (c) 2002 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     CSTCITPS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     Periodic Absorption Cost Processor concurrent Program             |
13 --| HISTORY                                                               |
14 --|     08/26/03 David Herring   Created                                  |
15 --|     10/27/2003 vjavli        p_tolerance parameter updated            |
16 --|     11/25/03   David Herring moved order of run option parameter      |
17 --|     01/20/04   vjavli        x_errbuf, x_retcode is the right order   |
18 --|     04/10/04   vjavli        Main Concurrent Program api: name change |
19 --|                              to Periodic_Absorb_Cost_Process          |
20 --+========================================================================
21 
22 --===================
23 -- PROCEDURES AND FUNCTIONS
24 --===================
25 
26 --========================================================================
27 -- PROCEDURE : Periodic_Absorb_Cost_Process      PRIVATE
28 -- COMMENT   : This procedure acts as a wrapper around the code that will
29 --             process periodic absorption cost of transactions according
30 --             to the periodic weighted average costing (PWAC) cost method
31 --             using a new Periodic Absorption Cost Rollup algorithm
32 --=========================================================================
33 PROCEDURE Periodic_Absorb_Cost_Process
34 ( x_errbuf                  OUT NOCOPY VARCHAR2
35 , x_retcode                 OUT NOCOPY VARCHAR2
36 , p_legal_entity_id         IN  VARCHAR2
37 , p_cost_type_id            IN  VARCHAR2
38 , p_period_id               IN  VARCHAR2
39 , p_run_options             IN  VARCHAR2
40 , p_process_upto_date       IN  VARCHAR2 DEFAULT NULL
41 , p_tolerance               IN  VARCHAR2
42 , p_number_of_iterations    IN  VARCHAR2
43 , p_number_of_workers       IN  VARCHAR2 DEFAULT '1'
44 );
45 
46 END CST_PERIODIC_ABSORPTION_CP;