DBA Data[Home] [Help]

PACKAGE: APPS.OKS_IMPORT_CONTRACTS_WORKER

Source


1 PACKAGE OKS_IMPORT_CONTRACTS_WORKER AS
2 -- $Header: OKSPKIMPWRS.pls 120.1 2007/08/20 14:01:54 vmutyala noship $
3 --+=======================================================================+
4 --|               Copyright (c) 2003 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     OKSPKIMPWRS.pls   Created By Vamshi Mutyala                       |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|    Service Contracts Import Worker Package		                  |
13 --|                                                                       |
14 --+========================================================================
15 --=========================
16 -- PROCEDURES AND FUNCTIONS
17 --=========================
18 
19 --========================================================================
20 -- PROCEDURE : Worker_process       PRIVATE
21 -- PARAMETERS: X_errbuf         out   Error message buffer
22 --             X_retcode        out   Return status code
23 --  	       P_commit_size    in    Work unit size
24 --	       P_worker_id	in    Worker Id
25 --             P_Num_Workers    in    Number of workers
26 --             P_mode           in    Validate Only, Import flag
27 --             P_batch_id       in    Batch Id
28 -- COMMENT   : This procedure is the worker in AD parallel framework
29 --             to validate and insert interface records
30 --=========================================================================
31 PROCEDURE Worker_process (X_errbuf         OUT NOCOPY VARCHAR2,
32                           X_retcode        OUT NOCOPY VARCHAR2,
33                           P_commit_size    IN  NUMBER,
34 			  P_worker_id	   IN  NUMBER,
35 			  P_Num_Workers    IN  NUMBER,
36 			  P_mode           IN  VARCHAR2,
37                           P_batch_id	   IN  NUMBER,
38 			  P_parent_request_id IN NUMBER);
39 
40 END OKS_IMPORT_CONTRACTS_WORKER;