DBA Data[Home] [Help]

PACKAGE: APPS.FEM_BR_CONDITION_PVT

Source


1 PACKAGE FEM_BR_CONDITION_PVT AS
2 /* $Header: FEMVCONDS.pls 120.0.12010000.1 2008/07/24 11:02:10 appldev ship $ */
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 Condition 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 Condition Definition (target)
32 --   by copying the detail records of another Condition Rule 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 -- PROCEDURE
50 --	 DeleteCondComponent
51 --
52 -- DESCRIPTION
53 --   Deletes all the details records of a Condition Component
54 --
55 -- IN
56 --   p_cond_component_obj_id    - Component Object ID.
57 --   p_data_dim_flag - Component type
58 --
59 PROCEDURE DeleteCondComponent(
60   p_condition_obj_def_id             in number
61   ,p_cond_component_obj_id         in          number
62   ,p_data_dim_flag                in          char
63   ,p_init_msg_list                in          varchar2
64   ,x_return_status                out nocopy  varchar2
65   ,x_msg_count                    out nocopy  number
66   ,x_msg_data                     out nocopy  varchar2
67 );
68 
69 
70 
71 END FEM_BR_CONDITION_PVT;