DBA Data[Home] [Help]

PACKAGE: APPS.FEM_BR_DATA_INSPECTOR_PVT

Source


1 PACKAGE FEM_BR_DATA_INSPECTOR_PVT AS
2 /* $Header: FEMVDIS.pls 120.0 2005/06/06 21:05:09 appldev noship $ */
3 
4 --------------------------------------------------------------------------------
5 -- PUBLIC CONSTANTS
6 --------------------------------------------------------------------------------
7 
8 --------------------------------------------------------------------------------
9 -- PUBLIC SPECIFICATIONS
10 --------------------------------------------------------------------------------
11 
12 --
13 -- PROCEDURE
14 --	 DeleteObjectDefinition
15 --
16 -- DESCRIPTION
17 --   Deletes all the details records of a Data Inspector Rule Definition.
18 --
19 -- IN
20 --   p_obj_def_id    - Object Definition ID.
21 --
22 PROCEDURE DeleteObjectDefinition(
23   p_obj_def_id          in          number
24 );
25 
26 --
27 -- PROCEDURE
28 --	 CopyObjectDefinition
29 --
30 -- DESCRIPTION
31 --   Creates all the detail records of a new Data Inspector Definition (target)
32 --   by copying the detail records of another Data Inspector Definition (source).
33 --
34 -- IN
35 --   p_source_obj_def_id    - Source Object Definition ID.
36 --   p_target_obj_def_id    - Target Object Definition ID.
37 --   p_created_by           - FND User ID (optional).
38 --   p_creation_date        - System Date (optional).
39 --
40 PROCEDURE CopyObjectDefinition(
41   p_source_obj_def_id   in          number
42   ,p_target_obj_def_id  in          number
43   ,p_created_by         in          number
44   ,p_creation_date      in          date
45 );
46 
47 
48 
49 END FEM_BR_DATA_INSPECTOR_PVT;