DBA Data[Home] [Help]

PACKAGE: APPS.ARP_PROCESS_DIST

Source


1 PACKAGE ARP_PROCESS_DIST AS
2 /* $Header: ARTELGDS.pls 120.1 2005/07/26 15:46:18 naneja noship $ */
3 
4 
5 PROCEDURE insert_dist(
6            p_form_name         IN varchar2,
7            p_form_version      IN number,
8            p_dist_rec	       IN ra_cust_trx_line_gl_dist%rowtype,
9            p_exchange_rate     IN ra_customer_trx.exchange_rate%type DEFAULT 1,
10            p_currency_code     IN fnd_currencies.currency_code%type DEFAULT null,
11            p_precision         IN fnd_currencies.precision%type DEFAULT null,
12            p_mau               IN fnd_currencies.minimum_accountable_unit%type DEFAULT null,
13            p_cust_trx_line_gl_dist_id  OUT NOCOPY
14               ra_cust_trx_line_gl_dist.cust_trx_line_gl_dist_id%type);
15 
16 PROCEDURE update_dist(
17            p_form_name                 IN varchar2,
18            p_form_version              IN number,
19            p_backout_flag              IN boolean,
20            p_cust_trx_line_gl_dist_id  IN
21                     ra_cust_trx_line_gl_dist.cust_trx_line_gl_dist_id%type,
22            p_customer_trx_id	       IN ra_customer_trx.customer_trx_id%type,
23            p_dist_rec		       IN OUT NOCOPY ra_cust_trx_line_gl_dist%rowtype,
24            p_header_gl_date            IN date,
25            p_trx_date                  IN date,
26            p_invoicing_rule_id         IN
27                     ra_customer_trx.invoicing_rule_id%type,
28            p_backout_done_flag         OUT NOCOPY boolean,
29            p_exchange_rate             IN ra_customer_trx.exchange_rate%type
30                                           DEFAULT 1,
31            p_currency_code             IN fnd_currencies.currency_code%type
32                                           DEFAULT null,
33            p_precision                 IN fnd_currencies.precision%type
34                                           DEFAULT null,
35            p_mau                       IN
36                                    fnd_currencies.minimum_accountable_unit%type
37                                    DEFAULT null );
38 
39 PROCEDURE delete_dist(
40            p_form_name                 IN varchar2,
41            p_form_version              IN number,
42            p_cust_trx_line_gl_dist_id  IN
43                     ra_cust_trx_line_gl_dist.cust_trx_line_gl_dist_id%type,
44            p_customer_trx_id	       IN ra_customer_trx.customer_trx_id%type,
45            p_dist_rec		       IN ra_cust_trx_line_gl_dist%rowtype);
46 
47 END ARP_PROCESS_DIST;