DBA Data[Home] [Help]

PACKAGE: APPS.OKS_IMPORT_TEST_INSERT

Source


1 PACKAGE OKS_IMPORT_TEST_INSERT AUTHID CURRENT_USER AS
2 -- $Header: OKSPKIMPUTS.pls 120.0 2007/08/20 14:07:39 vmutyala noship $
3 --+=======================================================================+
4 --|               Copyright (c) 2003 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     OKSPKIMPUTS.pls   Created By Vamshi Mutyala                       |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|    Service Contracts Import QA Test facilitator Package               |
13 --|                                                                       |
14 --+========================================================================
15 
16 --=========================
17 -- PROCEDURES AND FUNCTIONS
18 --=========================
19 --========================================================================
20 -- PROCEDURE : Insert_Interface_Records     PUBLIC
21 -- PARAMETERS: X_errbuf         out   Error message buffer
22 --             X_retcode        out   Return status code
23 --             p_contract_number          IN   Model contract number
24 --             p_num_scenarios            IN   Number of copies to be made
25 -- COMMENT   : This procedure will insert records into Service Contracts
26 --	       interface tables with data from model contract with unique
27 --             interface ids and modifier number.
28 --=========================================================================
29 PROCEDURE Insert_Interface_Records (X_errbuf          OUT NOCOPY VARCHAR2,
30                                     X_retcode         OUT NOCOPY VARCHAR2,
31 				    p_contract_number IN VARCHAR2,
32    				    p_contract_modifier IN VARCHAR2,
33 				    p_target_contract IN VARCHAR2,
34                                     p_num_scenarios IN NUMBER);
35 
36 END OKS_IMPORT_TEST_INSERT;