DBA Data[Home] [Help]

PACKAGE: APPS.FTP_BR_ROM_PVT

Source


1 PACKAGE FTP_BR_ROM_PVT  AS
2 /* $Header: ftproms.pls 120.0.12000000.1 2007/07/27 12:08:22 shishank noship $ */
3 
4 
5 ---------------------------------------------------------------------
6 -- Deletes all the details records of a Prepayment Rule Definition.
7 ---------------------------------------------------------------------
8 
9 PROCEDURE DeleteObjectDefinition(
10   p_obj_def_id          in          number
11 );
12 
13 ----------------------------------------------------------------------------
14 -- Creates all the detail records of a new Prepayment Rule Definition (target)
15 -- by copying the detail records of another Prepayment Rule Definition (source).
16 
17 -- IN Parameters
18 -- p_source_obj_def_id    - Source Object Definition ID.
19 -- p_target_obj_def_id    - Target Object Definition ID.
20 -- p_created_by           - FND User ID (optional).
21 -- p_creation_date        - System Date (optional).
22 ----------------------------------------------------------------------------
23 PROCEDURE CopyObjectDefinition(
24   p_source_obj_def_id   in          number
25   ,p_target_obj_def_id  in          number
26   ,p_created_by         in          number
27   ,p_creation_date      in          date
28 );
29 
30 END FTP_BR_ROM_PVT;
31