DBA Data[Home] [Help]

PACKAGE: APPS.OKS_IMPORT_CONTRACTS

Source


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