DBA Data[Home] [Help]

PACKAGE: APPS.FTP_BR_PREPAYMENT_PVT

Source


1 PACKAGE ftp_br_prepayment_pvt AS
2 /* $Header: ftpbppas.pls 120.0 2005/06/06 19:01:34 appldev noship $ */
3 ---------------------------------------------------------------------
4 -- Deletes all the details records of a Prepayment Rule Definition.
5 --
6 ---------------------------------------------------------------------
7 
8 PROCEDURE DeleteObjectDefinition(
9   p_obj_def_id          in          number
10 );
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_PREPAYMENT_PVT; -- Package Specification FTP_BR_PREPAYMENT_PVT