DBA Data[Home] [Help]

PACKAGE: APPS.FTP_BR_PREPAY_TABLE_PVT

Source


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