DBA Data[Home] [Help]

PACKAGE: APPS.CN_PMT_PLANS_PKG

Source


1 PACKAGE CN_PMT_PLANS_PKG AUTHID CURRENT_USER as
2 -- $Header: cnpplnts.pls 120.2 2005/10/06 00:38:38 raramasa ship $
3 
4 PROCEDURE Begin_Record(
5 		        x_Operation 	           VARCHAR2
6 		       ,x_Rowid              	   IN OUT NOCOPY VARCHAR2
7                        ,x_org_id                    cn_pmt_plans.org_id%TYPE
8                	       ,x_pmt_plan_id	           IN OUT NOCOPY NUMBER
9                        ,x_name              	   cn_pmt_plans.name%TYPE
10                        ,x_minimum_amount           cn_pmt_plans.minimum_amount%TYPE
11                        ,x_maximum_amount	   cn_pmt_plans.maximum_amount%TYPE
12                        ,x_min_rec_flag	           cn_pmt_plans.min_rec_flag%TYPE
13                        ,x_max_rec_flag		   cn_pmt_plans.max_rec_flag%TYPE
14 		       ,x_max_recovery_amount	   cn_pmt_plans.max_recovery_amount%TYPE
15 		       ,x_credit_type_id	   cn_pmt_plans.credit_type_id%TYPE
16 		       ,x_pay_interval_type_id     cn_pmt_plans.pay_interval_type_id%TYPE
17                        ,x_start_date		   cn_pmt_plans.start_date%TYPE
18                        ,x_end_date		   cn_pmt_plans.end_date%TYPE
19                        ,x_object_version_number    IN OUT NOCOPY cn_pmt_plans.object_version_number%TYPE
20                        ,x_recoverable_interval_type_id cn_pmt_plans.recoverable_interval_type_id%TYPE := NULL
21                        ,x_pay_against_commission   cn_pmt_plans.pay_against_commission%TYPE := NULL
22                        ,x_attribute_category       cn_pmt_plans.attribute_category%TYPE
23                        ,x_attribute1               cn_pmt_plans.attribute1%TYPE
24                        ,x_attribute2               cn_pmt_plans.attribute2%TYPE
25                        ,x_attribute3               cn_pmt_plans.attribute3%TYPE
26                        ,x_attribute4               cn_pmt_plans.attribute4%TYPE
27                        ,x_attribute5               cn_pmt_plans.attribute5%TYPE
28                        ,x_attribute6               cn_pmt_plans.attribute6%TYPE
29                        ,x_attribute7               cn_pmt_plans.attribute7%TYPE
30                        ,x_attribute8               cn_pmt_plans.attribute8%TYPE
31                        ,x_attribute9               cn_pmt_plans.attribute9%TYPE
32                        ,x_attribute10              cn_pmt_plans.attribute10%TYPE
33                        ,x_attribute11              cn_pmt_plans.attribute11%TYPE
34                        ,x_attribute12              cn_pmt_plans.attribute12%TYPE
35                        ,x_attribute13              cn_pmt_plans.attribute13%TYPE
36                        ,x_attribute14              cn_pmt_plans.attribute14%TYPE
37                        ,x_attribute15              cn_pmt_plans.attribute15%TYPE
38                        ,x_Created_By               cn_pmt_plans.created_by%TYPE
39                        ,x_Creation_Date            cn_pmt_plans.creation_date%TYPE
40                        ,x_Last_Updated_By          cn_pmt_plans.last_updated_by%TYPE
41                        ,x_Last_Update_Date         cn_pmt_plans.last_update_date%TYPE
42                        ,x_Last_Update_Login        cn_pmt_plans.last_update_login%TYPE
43                        ,x_Program_Type		   VARCHAR2
44                        ,x_Payment_Group_Code       cn_pmt_plans.payment_group_code%TYPE
45                         );
46 
47 
48 END CN_PMT_PLANS_PKG;