DBA Data[Home] [Help]

PACKAGE: APPS.PFT_BR_ACT_COST_ROLLUP_PVT

Source


1 PACKAGE PFT_BR_ACT_COST_ROLLUP_PVT AS
2 /* $Header: PFTVCRUS.pls 120.0 2005/06/06 19:00:21 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 an Activity Cost Rollup 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 Activity Cost Rollup Definition
32 --   (target) by copying the detail records of another Activity Cost Rollup
33 --   Definition (source).
34 --
35 -- IN
36 --   p_source_obj_def_id    - Source Object Definition ID.
37 --   p_target_obj_def_id    - Target Object Definition ID.
38 --   p_created_by           - FND User ID (optional).
39 --   p_creation_date        - System Date (optional).
40 --
41 PROCEDURE CopyObjectDefinition(
42   p_source_obj_def_id   in          number
43   ,p_target_obj_def_id  in          number
44   ,p_created_by         in          number
45   ,p_creation_date      in          date
46 );
47 
48 
49 
50 END PFT_BR_ACT_COST_ROLLUP_PVT;