DBA Data[Home] [Help]

PACKAGE: APPS.OKS_IMPORT_PURGE_WORKER

Source


1 PACKAGE OKS_IMPORT_PURGE_WORKER AUTHID CURRENT_USER AS
2 -- $Header: OKSPKIMPPRGWRS.pls 120.0 2007/07/12 13:17:56 vmutyala noship $
3 --+=======================================================================+
4 --|               Copyright (c) 2003 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     OKSPKIMPPRGWRS.pls   Created By Vamshi Mutyala                    |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|    Service Contracts Import Purge Worker Package	                  |
13 --|                                                                       |
14 --+========================================================================
15 --=========================
16 -- PROCEDURES AND FUNCTIONS
17 --=========================
18 
19 --========================================================================
20 -- PROCEDURE : Worker_purge       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_batch_id       in    Batch Id
27 -- COMMENT   : This procedure is the worker in AD parallel framework
28 --             to delete interface records
29 --=========================================================================
30 PROCEDURE Worker_purge (X_errbuf         OUT NOCOPY VARCHAR2,
31                         X_retcode        OUT NOCOPY VARCHAR2,
32 			P_commit_size    IN  NUMBER,
33 			P_worker_id      IN  NUMBER,
34 			P_Num_Workers    IN  NUMBER,
35 			P_batch_id	 IN  NUMBER);
36 
37 END OKS_IMPORT_PURGE_WORKER;