DBA Data[Home] [Help]

PACKAGE: APPS.FEM_BR_RULE_SET_PVT

Source


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