DBA Data[Home] [Help]

PACKAGE: APPS.IGI_IAC_RECLASS_PKG

Source


1 PACKAGE   IGI_IAC_RECLASS_PKG AS
2 /* $Header: igiiarls.pls 120.3.12000000.3 2007/10/22 13:46:57 gkumares ship $ */
3 
4 /*=========================================================================+
5  | Function Name:                                                          |
6  |    Do_Reclass                                                           |
7  |                                                                         |
8  | Description:                                                            |
9  |    This IAC hook function is to process reclassification for IAC and    |
10  |    called from Reclass API(FA_RECLASS_PUB.Do_Reclass).                  |
11  |                                                                         |
12  +=========================================================================*/
13 FUNCTION Do_Reclass(
14    p_trans_rec                      FA_API_TYPES.trans_rec_type,
15    p_asset_hdr_rec                  FA_API_TYPES.asset_hdr_rec_type,
16    p_asset_cat_rec_old              FA_API_TYPES.asset_cat_rec_type,
17    p_asset_cat_rec_new              FA_API_TYPES.asset_cat_rec_type,
18    p_asset_desc_rec                 FA_API_TYPES.asset_desc_rec_type,
19    p_asset_type_rec                 FA_API_TYPES.asset_type_rec_type,
20    p_calling_function               VARCHAR2,
21    p_event_id                       number   --R12 uptake
22 ) return BOOLEAN;
23 
24 -- ======================================================================
25 -- DEBUG
26 -- ======================================================================
27 /* Bug 3299718 Start
28 PROCEDURE debug_on;
29 
30 PROCEDURE debug_off;
31 Bug 3299718 End */
32 END; --reclass package
33