DBA Data[Home] [Help]

PACKAGE: APPS.FEM_COL_POP_TMPL_PVT

Source


1 PACKAGE FEM_COL_POP_TMPL_PVT AS
2 /* $Header: FEMVCOTS.pls 120.0 2005/06/06 19:20:52 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 Column Object Template Definition (target)
19 --   by copying the detail records of another Column Object Template Rule 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 --   p_object_type_code     - Object Type Code.
27 --   p_source_table_name    - Source Table Name.
28 --
29 PROCEDURE CopyObjectDefinition(
30    p_source_obj_def_id   IN          NUMBER
31   ,p_target_obj_def_id   IN          NUMBER
32   ,p_created_by          IN          NUMBER
33   ,p_creation_date       IN          DATE
34   );
35 
36 --
37 -- PROCEDURE
38 --	 DeleteObjectDefinition
39 --
40 -- DESCRIPTION
41 --   Deletes all the details records of a Column Object Template Definition.
42 --
43 -- IN
44 --   p_obj_def_id    - Object Definition ID.
45 --
46 PROCEDURE DeleteObjectDefinition(
47   p_obj_def_id          IN          NUMBER
48 );
49 
50 
51 END FEM_COL_POP_TMPL_PVT;