DBA Data[Home] [Help]

PACKAGE: APPS.ARP_INSERT_DIST_COVER

Source


1 PACKAGE ARP_INSERT_DIST_COVER AUTHID CURRENT_USER AS
2 /* $Header: ARTLGDIS.pls 115.3 2002/11/15 03:53:19 anukumar ship $ */
3 
4 PROCEDURE insert_dist_cover(
5            p_form_name                      IN varchar2,
6            p_form_version                   IN number,
7            p_exchange_rate                  IN
8              ra_customer_trx.exchange_rate%type,
9            p_base_currency_code             IN
10              fnd_currencies.currency_code%type,
11            p_base_precision                 IN
12              fnd_currencies.precision%type,
13            p_base_mau                       IN
14              fnd_currencies.minimum_accountable_unit%type,
15            p_customer_trx_id                IN
16              ra_cust_trx_line_gl_dist.customer_trx_id%type,
17            p_customer_trx_line_id           IN
18              ra_cust_trx_line_gl_dist.customer_trx_line_id %type,
19            p_cust_trx_line_salesrep_id      IN
20              ra_cust_trx_line_gl_dist.cust_trx_line_salesrep_id%type,
21            p_account_class                  IN
22              ra_cust_trx_line_gl_dist.account_class%type,
23            p_percent                        IN
24              ra_cust_trx_line_gl_dist.percent%type,
25            p_amount                         IN
26              ra_cust_trx_line_gl_dist.amount%type,
27            p_acctd_amount                   IN
28              ra_cust_trx_line_gl_dist.acctd_amount%type,
29            p_gl_date                        IN
30              ra_cust_trx_line_gl_dist.gl_date%type,
31            p_original_gl_date               IN
32              ra_cust_trx_line_gl_dist.original_gl_date%type,
33            p_code_combination_id            IN
34              ra_cust_trx_line_gl_dist.code_combination_id%type,
35            p_concatenated_segments          IN
36              ra_cust_trx_line_gl_dist.concatenated_segments%type,
37 	   p_collected_tax_ccid		    IN
38 	     ra_cust_trx_line_gl_dist.collected_tax_ccid%type,
39 	   p_collected_tax_concat_seg	    IN
40 	     ra_cust_trx_line_gl_dist.collected_tax_concat_seg%type,
41            p_comments                       IN
42              ra_cust_trx_line_gl_dist.comments%type,
43            p_account_set_flag               IN
44              ra_cust_trx_line_gl_dist.account_set_flag%type,
45            p_ussgl_transaction_code         IN
46              ra_cust_trx_line_gl_dist.ussgl_transaction_code%type,
47            p_ussgl_trx_code_context         IN
48              ra_cust_trx_line_gl_dist.ussgl_transaction_code_context%type,
49            p_attribute_category             IN
50              ra_cust_trx_line_gl_dist.attribute_category%type,
51            p_attribute1                     IN
52              ra_cust_trx_line_gl_dist.attribute1%type,
53            p_attribute2                     IN
54              ra_cust_trx_line_gl_dist.attribute2%type,
55            p_attribute3                     IN
56              ra_cust_trx_line_gl_dist.attribute3%type,
57            p_attribute4                     IN
58              ra_cust_trx_line_gl_dist.attribute4%type,
59            p_attribute5                     IN
60              ra_cust_trx_line_gl_dist.attribute5%type,
61            p_attribute6                     IN
62              ra_cust_trx_line_gl_dist.attribute6%type,
63            p_attribute7                     IN
64              ra_cust_trx_line_gl_dist.attribute7%type,
65            p_attribute8                     IN
66              ra_cust_trx_line_gl_dist.attribute8%type,
67            p_attribute9                     IN
68              ra_cust_trx_line_gl_dist.attribute9%type,
69            p_attribute10                    IN
70              ra_cust_trx_line_gl_dist.attribute10%type,
71            p_attribute11                    IN
72              ra_cust_trx_line_gl_dist.attribute11%type,
73            p_attribute12                    IN
74              ra_cust_trx_line_gl_dist.attribute12%type,
75            p_attribute13                    IN
76              ra_cust_trx_line_gl_dist.attribute13%type,
77            p_attribute14                    IN
78              ra_cust_trx_line_gl_dist.attribute14%type,
79            p_attribute15                    IN
80              ra_cust_trx_line_gl_dist.attribute15%type,
81            p_cust_trx_line_gl_dist_id       OUT NOCOPY
82              ra_cust_trx_line_gl_dist.cust_trx_line_gl_dist_id%type);
83 
84 END ARP_INSERT_DIST_COVER;