DBA Data[Home] [Help]

PACKAGE: APPS.IGR_IMP_004

Source


1 PACKAGE IGR_IMP_004 AS
2 /* $Header: IGSRT15S.pls 120.0 2005/06/01 16:13:47 appldev noship $ */
3 
4 /* ------------------------------------------------------------------------------------------------------------------------
5   ||  Created By : rbezawad
6   ||  Created On : 28-Feb-05
7   ||  Purpose : Extract of IGR related references from Admissions Import process packages (IGSAD98B.pls)
8   ||            to get rid of probable compilation errors for non-IGR customers.
9   ||  Known limitations, enhancements or remarks :
10   ||  Change History :
11   ||  WHO             WHEN                   WHAT
12 ---------------------------------------------------------------------------------------------------------------------------*/
13 
14 -- The procedure is used to process all the records from the Inquiry Information
15 -- Interface table that are pending for processing and the parent
16 -- Inquiry Application record's status is completed ('1')and the parent
17 -- Interface Record has has a status of Completed ('1') or Warning ('4')
18 -- And the Parent Interface table record satisfies the following condition
19 -- p_source_type_id = i.source_type_id and p_batch_id = i.batch_id
20   PROCEDURE prc_inq_info (
21                                    p_interface_run_id IN NUMBER,
22                                    p_enable_log       IN VARCHAR2,
23                                    p_rule             IN VARCHAR2);
24 
25 
26 -- The procedure is used to process all the records from the Inquiry Characteristics
27 -- Interface table that are pending for processing and the parent
28 -- Inquiry Application record's status is completed ('1')and the parent
29 -- Interface Record has a status of Completed ('1') or Warning ('4')
30 -- And the Parent Interface table record satisfies the following condition
31 -- p_source_type_id = i.source_type_id and p_batch_id = i.batch_id
32   PROCEDURE prc_inq_char (
33                                    p_interface_run_id IN NUMBER,
34                                    p_enable_log       IN VARCHAR2,
35                                    p_rule             IN VARCHAR2);
36 
37 -- The procedure is used to process all the records from the Inquiry Packages
38 -- Interface table that are pending for processing and the parent
39 -- Inquiry Application record's status is completed ('1')and the parent
40 -- Interface Record has status of Completed ('1') or Warning ('4')
41 -- And the Parent Interface table record satisfies the following condition
42 -- p_source_type_id = i.source_type_id and p_batch_id = i.batch_id
43   PROCEDURE prc_inq_pkg (
44                                    p_interface_run_id IN NUMBER,
45                                    p_enable_log       IN VARCHAR2,
46                                    p_rule             IN VARCHAR2);
47 
48 END IGR_IMP_004;