DBA Data[Home] [Help]

PACKAGE: APPS.OKS_IMPORT_PURGE

Source


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