DBA Data[Home] [Help]

PACKAGE: APPS.ARP_TRX_DEFAULTS

Source


1 PACKAGE ARP_TRX_DEFAULTS AUTHID CURRENT_USER AS
2 /* $Header: ARTUDFLS.pls 115.4 2002/11/15 04:04:10 anukumar ship $ */
3 
4 
5 PROCEDURE get_header_defaults(
6                                 p_batch_source_id                  IN
7                                         ra_batch_sources.batch_source_id%type,
8                                 p_batch_batch_source_id            IN
9                                         ra_batch_sources.batch_source_id%type,
10                                 p_profile_batch_source_id          IN
11                                         ra_batch_sources.batch_source_id%type,
12                                 p_customer_trx_id                  IN
13                                       ra_customer_trx.customer_trx_id%type,
14                                 p_cust_trx_type_id                 IN
15                                   ra_cust_trx_types.cust_trx_type_id%type,
16                                 p_term_id                          IN
17                                       ra_terms.term_id%type,
18                                 p_com_default_cust_trx_type_id     IN
19                                   ra_cust_trx_types.cust_trx_type_id%type,
20                                 p_ctt_class                        IN
21                                         ra_cust_trx_types.type%type,
22                                 p_trx_date                         IN
23                                         ra_customer_trx.trx_date%type,
24                                 p_trx_number                       IN
25                                         ra_customer_trx.trx_number%type,
26                                 p_row_id                           IN varchar2,
27                                 p_invoicing_rule_id                IN
28                                         ra_rules.rule_id%type,
29                                 p_rev_recog_run_flag               IN varchar2,
30                                 p_complete_flag                    IN
31                                         ra_customer_trx.complete_flag%type,
32                                 p_open_receivables_flag            IN
33                                  ra_cust_trx_types.accounting_affect_flag%type,
34                                 p_customer_id                      IN
35                                         hz_cust_accounts.cust_account_id%type,
36                                 p_site_use_id                      IN
37                                         hz_cust_site_uses.site_use_id%type,
38                                 p_gl_date                          IN
39                                    ra_cust_trx_line_gl_dist.gl_date%type,
40                                 p_prev_gl_date                     IN
41                                    ra_cust_trx_line_gl_dist.gl_date%type,
42                                 p_commit_gl_date                   IN
43                                    ra_cust_trx_line_gl_dist.gl_date%type,
44                                 p_batch_gl_date                    IN
45                                    ra_cust_trx_line_gl_dist.gl_date%type,
46                                 p_default_batch_source_id         OUT NOCOPY
47                                         ra_batch_sources.batch_source_id%type,
48                                 p_default_batch_source_name       OUT NOCOPY
49                                         ra_batch_sources.name%type,
50                                 p_auto_trx_numbering_flag         OUT NOCOPY
51                                ra_batch_sources.auto_trx_numbering_flag%type,
52                                 p_batch_source_type               OUT NOCOPY
53                                       ra_batch_sources.batch_source_type%type,
54 				p_copy_doc_number_flag		  OUT NOCOPY
55 				      ra_batch_sources.copy_doc_number_flag%type,
56                                 p_bs_default_cust_trx_type_id     OUT NOCOPY
57                                       ra_cust_trx_types.cust_trx_type_id%type,
58                                 p_default_cust_trx_type_id        OUT NOCOPY
59                                       ra_cust_trx_types.cust_trx_type_id%type,
60                                 p_default_type_name               OUT NOCOPY
61                                       ra_cust_trx_types.name%type,
62                                 p_class                           OUT NOCOPY
63                                       ra_cust_trx_types.type%type,
64                                 p_open_receivable_flag            OUT NOCOPY
65                                  ra_cust_trx_types.accounting_affect_flag%type,
66                                 p_post_to_gl_flag                 OUT NOCOPY
67                                       ra_cust_trx_types.post_to_gl%type,
68                                 p_allow_freight_flag              OUT NOCOPY
69                                      ra_cust_trx_types.allow_freight_flag%type,
70                                 p_creation_sign                   OUT NOCOPY
71                                      ra_cust_trx_types.creation_sign%type,
72                                 p_allow_overapplication_flag      OUT NOCOPY
73                           ra_cust_trx_types.allow_overapplication_flag%type,
74                                 p_natural_app_only_flag           OUT NOCOPY
75                           ra_cust_trx_types.natural_application_only_flag%type,
76                                 p_tax_calculation_flag            OUT NOCOPY
77                                   ra_cust_trx_types.tax_calculation_flag%type,
78                                 p_default_status_code             OUT NOCOPY
79                                   ar_lookups.lookup_code%type,
80                                 p_default_status                  OUT NOCOPY
81                                   ar_lookups.meaning%type,
82                                 p_default_printing_option_code    OUT NOCOPY
83                                   ar_lookups.lookup_code%type,
84                                 p_default_printing_option         OUT NOCOPY
85                                   ar_lookups.meaning%type,
86                                 p_default_term_id                 OUT NOCOPY
87                                   ra_terms.term_id%type,
88                                 p_default_term_name               OUT NOCOPY
89                                   ra_terms.name%type,
90                                 p_number_of_due_dates             OUT NOCOPY number,
91                                 p_term_due_date                   OUT NOCOPY
92                                   ra_customer_trx.term_due_date%type,
93                                 p_default_gl_date                 OUT NOCOPY
94                                   ra_cust_trx_line_gl_dist.gl_date%type,
95                                 p_security_inv_enter_flag         IN
96                                   varchar2   DEFAULT 'Y',
97                                 p_security_cm_enter_flag          IN
98                                   varchar2   DEFAULT 'Y',
99                                 p_security_dm_enter_flag          IN
100                                   varchar2   DEFAULT 'Y',
101                                 p_security_commit_enter_flag      IN
102                                   varchar2   DEFAULT 'Y'
103           );
104 
105 END ARP_TRX_DEFAULTS;