DBA Data[Home] [Help]

PACKAGE: APPS.JMF_SUBCONTRACT_ORDERS_PVT

Source


1 PACKAGE JMF_SUBCONTRACT_ORDERS_PVT AS
2 -- $Header: JMFVSHKS.pls 120.0 2005/07/05 15:57 rajkrish noship $ --
3 --+=======================================================================+
4 --|               Copyright (c) 2005 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JMFVSHKS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|   Main Package for SHIKYU Interlock processor                         |
13 --| HISTORY                                                               |
14 --|     04/26/2005 pseshadr       Created                                 |
15 --+========================================================================
16 
17 
18 --===================
19 -- PROCEDURES AND FUNCTIONS
20 --===================
21 
22 --========================================================================
23 -- PROCEDURE : Subcontract_Orders_Manager    PUBLIC
24 -- PARAMETERS: p_batch_size          Batch size to be processed
25 --             p_max_workers         Maximum no of workers allowed
26 --             p_operating_unit      Operating Unit
27 --             p_from_organization   From Organization
28 --             p_to_organization     To Organization
29 --             p_init_msg_list       indicate if msg list needs to be initialized
30 --             p_validation_level    Validation Level
31 -- COMMENT   : The Interlock Concurrent program manager invokes this procedure
32 --             to process all the Subcontract Orders. This is the main entry
33 --             point for processing any subcontract records.
34 --========================================================================
35 PROCEDURE Subcontract_Orders_Manager
36 ( p_batch_size                 IN   NUMBER
37 , p_max_workers                IN   NUMBER
38 , p_operating_unit             IN   NUMBER
39 , p_from_organization          IN   NUMBER
40 , p_to_organization            IN   NUMBER
41 , p_init_msg_list              IN  VARCHAR2
42 , p_validation_level           IN  NUMBER
43 );
44 
45 --========================================================================
46 -- PROCEDURE : Subcontract_Orders_Worker    PUBLIC
47 -- PARAMETERS: p_batch_id          Batch Id
48 -- COMMENT   : This procedure is invoked by the Subcontract_Orders_manager.
49 --             After the batch is assigned by the Manager, the Subcontract
50 --             Orders Manager process will launch this worker to complete
51 --             the processing of the Subcontract Orders.
52 --========================================================================
53 PROCEDURE Subcontract_Orders_Worker
54 ( p_batch_id         IN   NUMBER
55 );
56 
57 END JMF_SUBCONTRACT_ORDERS_PVT;