DBA Data[Home] [Help]

APPS.ARW_CM_COVER dependencies on RA_CUSTOMER_TRX

Line 5: ra_customer_trx_lines%ROWTYPE

1: PACKAGE arw_cm_cover AS
2: /* $Header: ARWCMCVS.pls 120.7 2006/02/24 12:45:59 srivasud ship $ */
3:
4: TYPE credit_lines_table_type IS TABLE OF
5: ra_customer_trx_lines%ROWTYPE
6: INDEX BY BINARY_INTEGER;
7:
8: PROCEDURE get_doc_seq(p_application_id IN NUMBER,
9: p_document_name IN VARCHAR2,

Line 20: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,

16: p_return_status OUT NOCOPY VARCHAR2
17: );
18:
19: PROCEDURE create_header_cm (
20: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,
21: p_batch_id IN ra_batches.batch_id%type,
22: p_trx_date IN ra_customer_trx.trx_date%type,
23: p_gl_date IN ra_cust_trx_line_gl_dist.gl_date%type,
24: p_complete_flag IN ra_customer_trx.complete_flag%type,

Line 22: p_trx_date IN ra_customer_trx.trx_date%type,

18:
19: PROCEDURE create_header_cm (
20: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,
21: p_batch_id IN ra_batches.batch_id%type,
22: p_trx_date IN ra_customer_trx.trx_date%type,
23: p_gl_date IN ra_cust_trx_line_gl_dist.gl_date%type,
24: p_complete_flag IN ra_customer_trx.complete_flag%type,
25: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
26: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,

Line 24: p_complete_flag IN ra_customer_trx.complete_flag%type,

20: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,
21: p_batch_id IN ra_batches.batch_id%type,
22: p_trx_date IN ra_customer_trx.trx_date%type,
23: p_gl_date IN ra_cust_trx_line_gl_dist.gl_date%type,
24: p_complete_flag IN ra_customer_trx.complete_flag%type,
25: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
26: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
27: p_currency_code IN fnd_currencies.currency_code%type,
28: p_exchange_date IN ra_customer_trx.exchange_date%type,

Line 28: p_exchange_date IN ra_customer_trx.exchange_date%type,

24: p_complete_flag IN ra_customer_trx.complete_flag%type,
25: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
26: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
27: p_currency_code IN fnd_currencies.currency_code%type,
28: p_exchange_date IN ra_customer_trx.exchange_date%type,
29: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,

Line 29: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,

25: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
26: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
27: p_currency_code IN fnd_currencies.currency_code%type,
28: p_exchange_date IN ra_customer_trx.exchange_date%type,
29: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,

Line 30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,

26: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
27: p_currency_code IN fnd_currencies.currency_code%type,
28: p_exchange_date IN ra_customer_trx.exchange_date%type,
29: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,

Line 31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,

27: p_currency_code IN fnd_currencies.currency_code%type,
28: p_exchange_date IN ra_customer_trx.exchange_date%type,
29: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,

Line 32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,

28: p_exchange_date IN ra_customer_trx.exchange_date%type,
29: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,

Line 33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,

29: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,

Line 34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,

30: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,

Line 35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,

31: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,

Line 36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,

32: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,

Line 37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,

33: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,

Line 38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,

34: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,

Line 39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,

35: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,

Line 40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,

36: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,

Line 41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,

37: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,

Line 42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,

38: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,

Line 43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,

39: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
47: p_customer_bank_account_id IN

Line 44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,

40: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
47: p_customer_bank_account_id IN
48: ra_customer_trx.customer_bank_account_id%type,

Line 45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,

41: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
47: p_customer_bank_account_id IN
48: ra_customer_trx.customer_bank_account_id%type,
49: p_printing_option IN ra_customer_trx.printing_option%type,

Line 46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,

42: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
43: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
47: p_customer_bank_account_id IN
48: ra_customer_trx.customer_bank_account_id%type,
49: p_printing_option IN ra_customer_trx.printing_option%type,
50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,

Line 48: ra_customer_trx.customer_bank_account_id%type,

44: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
47: p_customer_bank_account_id IN
48: ra_customer_trx.customer_bank_account_id%type,
49: p_printing_option IN ra_customer_trx.printing_option%type,
50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,

Line 49: p_printing_option IN ra_customer_trx.printing_option%type,

45: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
47: p_customer_bank_account_id IN
48: ra_customer_trx.customer_bank_account_id%type,
49: p_printing_option IN ra_customer_trx.printing_option%type,
50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,

Line 50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,

46: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
47: p_customer_bank_account_id IN
48: ra_customer_trx.customer_bank_account_id%type,
49: p_printing_option IN ra_customer_trx.printing_option%type,
50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,

Line 51: p_printing_pending IN ra_customer_trx.printing_pending%type,

47: p_customer_bank_account_id IN
48: ra_customer_trx.customer_bank_account_id%type,
49: p_printing_option IN ra_customer_trx.printing_option%type,
50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,

Line 52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,

48: ra_customer_trx.customer_bank_account_id%type,
49: p_printing_option IN ra_customer_trx.printing_option%type,
50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,

Line 53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,

49: p_printing_option IN ra_customer_trx.printing_option%type,
50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,

Line 54: p_reason_code IN ra_customer_trx.reason_code%type,

50: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,

Line 55: p_customer_reference IN ra_customer_trx.customer_reference%type,

51: p_printing_pending IN ra_customer_trx.printing_pending%type,
52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,

Line 56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,

52: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,

Line 57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,

53: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,

Line 58: p_created_from IN ra_customer_trx.created_from%type,

54: p_reason_code IN ra_customer_trx.reason_code%type,
55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,

Line 59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,

55: p_customer_reference IN ra_customer_trx.customer_reference%type,
56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,

Line 60: p_attribute_category IN ra_customer_trx.attribute_category%type,

56: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,

Line 61: p_attribute1 IN ra_customer_trx.attribute1%type,

57: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,

Line 62: p_attribute2 IN ra_customer_trx.attribute2%type,

58: p_created_from IN ra_customer_trx.created_from%type,
59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,

Line 63: p_attribute3 IN ra_customer_trx.attribute3%type,

59: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,

Line 64: p_attribute4 IN ra_customer_trx.attribute4%type,

60: p_attribute_category IN ra_customer_trx.attribute_category%type,
61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,

Line 65: p_attribute5 IN ra_customer_trx.attribute5%type,

61: p_attribute1 IN ra_customer_trx.attribute1%type,
62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,

Line 66: p_attribute6 IN ra_customer_trx.attribute6%type,

62: p_attribute2 IN ra_customer_trx.attribute2%type,
63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,

Line 67: p_attribute7 IN ra_customer_trx.attribute7%type,

63: p_attribute3 IN ra_customer_trx.attribute3%type,
64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,

Line 68: p_attribute8 IN ra_customer_trx.attribute8%type,

64: p_attribute4 IN ra_customer_trx.attribute4%type,
65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,

Line 69: p_attribute9 IN ra_customer_trx.attribute9%type,

65: p_attribute5 IN ra_customer_trx.attribute5%type,
66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,
73: p_attribute13 IN ra_customer_trx.attribute13%type,

Line 70: p_attribute10 IN ra_customer_trx.attribute10%type,

66: p_attribute6 IN ra_customer_trx.attribute6%type,
67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,
73: p_attribute13 IN ra_customer_trx.attribute13%type,
74: p_attribute14 IN ra_customer_trx.attribute14%type,

Line 71: p_attribute11 IN ra_customer_trx.attribute11%type,

67: p_attribute7 IN ra_customer_trx.attribute7%type,
68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,
73: p_attribute13 IN ra_customer_trx.attribute13%type,
74: p_attribute14 IN ra_customer_trx.attribute14%type,
75: p_attribute15 IN ra_customer_trx.attribute15%type,

Line 72: p_attribute12 IN ra_customer_trx.attribute12%type,

68: p_attribute8 IN ra_customer_trx.attribute8%type,
69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,
73: p_attribute13 IN ra_customer_trx.attribute13%type,
74: p_attribute14 IN ra_customer_trx.attribute14%type,
75: p_attribute15 IN ra_customer_trx.attribute15%type,
76: p_interface_header_context IN

Line 73: p_attribute13 IN ra_customer_trx.attribute13%type,

69: p_attribute9 IN ra_customer_trx.attribute9%type,
70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,
73: p_attribute13 IN ra_customer_trx.attribute13%type,
74: p_attribute14 IN ra_customer_trx.attribute14%type,
75: p_attribute15 IN ra_customer_trx.attribute15%type,
76: p_interface_header_context IN
77: ra_customer_trx.interface_header_context%type,

Line 74: p_attribute14 IN ra_customer_trx.attribute14%type,

70: p_attribute10 IN ra_customer_trx.attribute10%type,
71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,
73: p_attribute13 IN ra_customer_trx.attribute13%type,
74: p_attribute14 IN ra_customer_trx.attribute14%type,
75: p_attribute15 IN ra_customer_trx.attribute15%type,
76: p_interface_header_context IN
77: ra_customer_trx.interface_header_context%type,
78: p_interface_header_attribute1 IN

Line 75: p_attribute15 IN ra_customer_trx.attribute15%type,

71: p_attribute11 IN ra_customer_trx.attribute11%type,
72: p_attribute12 IN ra_customer_trx.attribute12%type,
73: p_attribute13 IN ra_customer_trx.attribute13%type,
74: p_attribute14 IN ra_customer_trx.attribute14%type,
75: p_attribute15 IN ra_customer_trx.attribute15%type,
76: p_interface_header_context IN
77: ra_customer_trx.interface_header_context%type,
78: p_interface_header_attribute1 IN
79: ra_customer_trx.interface_header_attribute1%type,

Line 77: ra_customer_trx.interface_header_context%type,

73: p_attribute13 IN ra_customer_trx.attribute13%type,
74: p_attribute14 IN ra_customer_trx.attribute14%type,
75: p_attribute15 IN ra_customer_trx.attribute15%type,
76: p_interface_header_context IN
77: ra_customer_trx.interface_header_context%type,
78: p_interface_header_attribute1 IN
79: ra_customer_trx.interface_header_attribute1%type,
80: p_interface_header_attribute2 IN
81: ra_customer_trx.interface_header_attribute2%type,

Line 79: ra_customer_trx.interface_header_attribute1%type,

75: p_attribute15 IN ra_customer_trx.attribute15%type,
76: p_interface_header_context IN
77: ra_customer_trx.interface_header_context%type,
78: p_interface_header_attribute1 IN
79: ra_customer_trx.interface_header_attribute1%type,
80: p_interface_header_attribute2 IN
81: ra_customer_trx.interface_header_attribute2%type,
82: p_interface_header_attribute3 IN
83: ra_customer_trx.interface_header_attribute3%type,

Line 81: ra_customer_trx.interface_header_attribute2%type,

77: ra_customer_trx.interface_header_context%type,
78: p_interface_header_attribute1 IN
79: ra_customer_trx.interface_header_attribute1%type,
80: p_interface_header_attribute2 IN
81: ra_customer_trx.interface_header_attribute2%type,
82: p_interface_header_attribute3 IN
83: ra_customer_trx.interface_header_attribute3%type,
84: p_interface_header_attribute4 IN
85: ra_customer_trx.interface_header_attribute4%type,

Line 83: ra_customer_trx.interface_header_attribute3%type,

79: ra_customer_trx.interface_header_attribute1%type,
80: p_interface_header_attribute2 IN
81: ra_customer_trx.interface_header_attribute2%type,
82: p_interface_header_attribute3 IN
83: ra_customer_trx.interface_header_attribute3%type,
84: p_interface_header_attribute4 IN
85: ra_customer_trx.interface_header_attribute4%type,
86: p_interface_header_attribute5 IN
87: ra_customer_trx.interface_header_attribute5%type,

Line 85: ra_customer_trx.interface_header_attribute4%type,

81: ra_customer_trx.interface_header_attribute2%type,
82: p_interface_header_attribute3 IN
83: ra_customer_trx.interface_header_attribute3%type,
84: p_interface_header_attribute4 IN
85: ra_customer_trx.interface_header_attribute4%type,
86: p_interface_header_attribute5 IN
87: ra_customer_trx.interface_header_attribute5%type,
88: p_interface_header_attribute6 IN
89: ra_customer_trx.interface_header_attribute6%type,

Line 87: ra_customer_trx.interface_header_attribute5%type,

83: ra_customer_trx.interface_header_attribute3%type,
84: p_interface_header_attribute4 IN
85: ra_customer_trx.interface_header_attribute4%type,
86: p_interface_header_attribute5 IN
87: ra_customer_trx.interface_header_attribute5%type,
88: p_interface_header_attribute6 IN
89: ra_customer_trx.interface_header_attribute6%type,
90: p_interface_header_attribute7 IN
91: ra_customer_trx.interface_header_attribute7%type,

Line 89: ra_customer_trx.interface_header_attribute6%type,

85: ra_customer_trx.interface_header_attribute4%type,
86: p_interface_header_attribute5 IN
87: ra_customer_trx.interface_header_attribute5%type,
88: p_interface_header_attribute6 IN
89: ra_customer_trx.interface_header_attribute6%type,
90: p_interface_header_attribute7 IN
91: ra_customer_trx.interface_header_attribute7%type,
92: p_interface_header_attribute8 IN
93: ra_customer_trx.interface_header_attribute8%type,

Line 91: ra_customer_trx.interface_header_attribute7%type,

87: ra_customer_trx.interface_header_attribute5%type,
88: p_interface_header_attribute6 IN
89: ra_customer_trx.interface_header_attribute6%type,
90: p_interface_header_attribute7 IN
91: ra_customer_trx.interface_header_attribute7%type,
92: p_interface_header_attribute8 IN
93: ra_customer_trx.interface_header_attribute8%type,
94: p_interface_header_attribute9 IN
95: ra_customer_trx.interface_header_attribute9%type,

Line 93: ra_customer_trx.interface_header_attribute8%type,

89: ra_customer_trx.interface_header_attribute6%type,
90: p_interface_header_attribute7 IN
91: ra_customer_trx.interface_header_attribute7%type,
92: p_interface_header_attribute8 IN
93: ra_customer_trx.interface_header_attribute8%type,
94: p_interface_header_attribute9 IN
95: ra_customer_trx.interface_header_attribute9%type,
96: p_interface_header_attribute10 IN
97: ra_customer_trx.interface_header_attribute10%type,

Line 95: ra_customer_trx.interface_header_attribute9%type,

91: ra_customer_trx.interface_header_attribute7%type,
92: p_interface_header_attribute8 IN
93: ra_customer_trx.interface_header_attribute8%type,
94: p_interface_header_attribute9 IN
95: ra_customer_trx.interface_header_attribute9%type,
96: p_interface_header_attribute10 IN
97: ra_customer_trx.interface_header_attribute10%type,
98: p_interface_header_attribute11 IN
99: ra_customer_trx.interface_header_attribute11%type,

Line 97: ra_customer_trx.interface_header_attribute10%type,

93: ra_customer_trx.interface_header_attribute8%type,
94: p_interface_header_attribute9 IN
95: ra_customer_trx.interface_header_attribute9%type,
96: p_interface_header_attribute10 IN
97: ra_customer_trx.interface_header_attribute10%type,
98: p_interface_header_attribute11 IN
99: ra_customer_trx.interface_header_attribute11%type,
100: p_interface_header_attribute12 IN
101: ra_customer_trx.interface_header_attribute12%type,

Line 99: ra_customer_trx.interface_header_attribute11%type,

95: ra_customer_trx.interface_header_attribute9%type,
96: p_interface_header_attribute10 IN
97: ra_customer_trx.interface_header_attribute10%type,
98: p_interface_header_attribute11 IN
99: ra_customer_trx.interface_header_attribute11%type,
100: p_interface_header_attribute12 IN
101: ra_customer_trx.interface_header_attribute12%type,
102: p_interface_header_attribute13 IN
103: ra_customer_trx.interface_header_attribute13%type,

Line 101: ra_customer_trx.interface_header_attribute12%type,

97: ra_customer_trx.interface_header_attribute10%type,
98: p_interface_header_attribute11 IN
99: ra_customer_trx.interface_header_attribute11%type,
100: p_interface_header_attribute12 IN
101: ra_customer_trx.interface_header_attribute12%type,
102: p_interface_header_attribute13 IN
103: ra_customer_trx.interface_header_attribute13%type,
104: p_interface_header_attribute14 IN
105: ra_customer_trx.interface_header_attribute14%type,

Line 103: ra_customer_trx.interface_header_attribute13%type,

99: ra_customer_trx.interface_header_attribute11%type,
100: p_interface_header_attribute12 IN
101: ra_customer_trx.interface_header_attribute12%type,
102: p_interface_header_attribute13 IN
103: ra_customer_trx.interface_header_attribute13%type,
104: p_interface_header_attribute14 IN
105: ra_customer_trx.interface_header_attribute14%type,
106: p_interface_header_attribute15 IN
107: ra_customer_trx.interface_header_attribute15%type,

Line 105: ra_customer_trx.interface_header_attribute14%type,

101: ra_customer_trx.interface_header_attribute12%type,
102: p_interface_header_attribute13 IN
103: ra_customer_trx.interface_header_attribute13%type,
104: p_interface_header_attribute14 IN
105: ra_customer_trx.interface_header_attribute14%type,
106: p_interface_header_attribute15 IN
107: ra_customer_trx.interface_header_attribute15%type,
108: p_default_ussgl_trx_code IN
109: ra_customer_trx.default_ussgl_transaction_code%type,

Line 107: ra_customer_trx.interface_header_attribute15%type,

103: ra_customer_trx.interface_header_attribute13%type,
104: p_interface_header_attribute14 IN
105: ra_customer_trx.interface_header_attribute14%type,
106: p_interface_header_attribute15 IN
107: ra_customer_trx.interface_header_attribute15%type,
108: p_default_ussgl_trx_code IN
109: ra_customer_trx.default_ussgl_transaction_code%type,
110: p_line_percent IN number,
111: p_freight_percent IN number,

Line 109: ra_customer_trx.default_ussgl_transaction_code%type,

105: ra_customer_trx.interface_header_attribute14%type,
106: p_interface_header_attribute15 IN
107: ra_customer_trx.interface_header_attribute15%type,
108: p_default_ussgl_trx_code IN
109: ra_customer_trx.default_ussgl_transaction_code%type,
110: p_line_percent IN number,
111: p_freight_percent IN number,
112: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
113: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,

Line 112: p_line_amount IN ra_customer_trx_lines.extended_amount%type,

108: p_default_ussgl_trx_code IN
109: ra_customer_trx.default_ussgl_transaction_code%type,
110: p_line_percent IN number,
111: p_freight_percent IN number,
112: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
113: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
114: p_compute_tax IN varchar2,
115: p_comments IN ra_customer_trx.comments%type,
116: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,

Line 113: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,

109: ra_customer_trx.default_ussgl_transaction_code%type,
110: p_line_percent IN number,
111: p_freight_percent IN number,
112: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
113: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
114: p_compute_tax IN varchar2,
115: p_comments IN ra_customer_trx.comments%type,
116: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
117: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,

Line 115: p_comments IN ra_customer_trx.comments%type,

111: p_freight_percent IN number,
112: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
113: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
114: p_compute_tax IN varchar2,
115: p_comments IN ra_customer_trx.comments%type,
116: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
117: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
118: p_computed_tax_percent IN OUT NOCOPY number,
119: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,

Line 116: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,

112: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
113: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
114: p_compute_tax IN varchar2,
115: p_comments IN ra_customer_trx.comments%type,
116: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
117: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
118: p_computed_tax_percent IN OUT NOCOPY number,
119: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
120: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,

Line 117: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,

113: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
114: p_compute_tax IN varchar2,
115: p_comments IN ra_customer_trx.comments%type,
116: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
117: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
118: p_computed_tax_percent IN OUT NOCOPY number,
119: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
120: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
121: p_status OUT NOCOPY varchar2 ,

Line 119: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,

115: p_comments IN ra_customer_trx.comments%type,
116: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
117: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
118: p_computed_tax_percent IN OUT NOCOPY number,
119: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
120: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
121: p_status OUT NOCOPY varchar2 ,
122: p_purchase_order IN ra_customer_trx.purchase_order%type,
123: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,

Line 122: p_purchase_order IN ra_customer_trx.purchase_order%type,

118: p_computed_tax_percent IN OUT NOCOPY number,
119: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
120: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
121: p_status OUT NOCOPY varchar2 ,
122: p_purchase_order IN ra_customer_trx.purchase_order%type,
123: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
124: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
126: /*4556000-4606558*/

Line 123: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,

119: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
120: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
121: p_status OUT NOCOPY varchar2 ,
122: p_purchase_order IN ra_customer_trx.purchase_order%type,
123: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
124: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
126: /*4556000-4606558*/
127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,

Line 124: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,

120: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
121: p_status OUT NOCOPY varchar2 ,
122: p_purchase_order IN ra_customer_trx.purchase_order%type,
123: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
124: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
126: /*4556000-4606558*/
127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,

Line 125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,

121: p_status OUT NOCOPY varchar2 ,
122: p_purchase_order IN ra_customer_trx.purchase_order%type,
123: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
124: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
126: /*4556000-4606558*/
127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,

Line 127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,

123: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
124: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
126: /*4556000-4606558*/
127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,

Line 128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,

124: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
126: /*4556000-4606558*/
127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,

Line 129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,

125: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
126: /*4556000-4606558*/
127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,

Line 130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,

126: /*4556000-4606558*/
127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,

Line 131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,

127: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,

Line 132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,

128: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,

Line 133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,

129: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,

Line 134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,

130: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,

Line 135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,

131: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,

Line 136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,

132: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,

Line 137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,

133: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,

Line 138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,

134: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,

Line 139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,

135: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,

Line 140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,

136: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,

Line 141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,

137: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,

Line 142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,

138: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,

Line 143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,

139: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,

Line 144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,

140: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,

Line 145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,

141: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,

Line 146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,

142: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,

Line 147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,

143: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,

Line 148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,

144: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,

Line 149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,

145: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,

Line 150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,

146: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,

Line 151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,

147: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,

Line 152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,

148: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
156: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,

Line 153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,

149: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
156: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
157: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL

Line 154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,

150: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
156: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
157: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
158: );

Line 155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,

151: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
156: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
157: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
158: );
159:

Line 156: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,

152: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
156: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
157: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
158: );
159:
160: PROCEDURE create_line_cm (

Line 157: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL

153: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
154: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
155: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
156: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
157: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
158: );
159:
160: PROCEDURE create_line_cm (
161: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,

Line 161: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,

157: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
158: );
159:
160: PROCEDURE create_line_cm (
161: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,
162: p_batch_id IN ra_batches.batch_id%type,
163: p_trx_date IN ra_customer_trx.trx_date%type,
164: p_gl_date IN ra_cust_trx_line_gl_dist.gl_date%type,
165: p_complete_flag IN ra_customer_trx.complete_flag%type,

Line 163: p_trx_date IN ra_customer_trx.trx_date%type,

159:
160: PROCEDURE create_line_cm (
161: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,
162: p_batch_id IN ra_batches.batch_id%type,
163: p_trx_date IN ra_customer_trx.trx_date%type,
164: p_gl_date IN ra_cust_trx_line_gl_dist.gl_date%type,
165: p_complete_flag IN ra_customer_trx.complete_flag%type,
166: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
167: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,

Line 165: p_complete_flag IN ra_customer_trx.complete_flag%type,

161: p_prev_customer_trx_id IN ra_customer_trx.customer_trx_id%type,
162: p_batch_id IN ra_batches.batch_id%type,
163: p_trx_date IN ra_customer_trx.trx_date%type,
164: p_gl_date IN ra_cust_trx_line_gl_dist.gl_date%type,
165: p_complete_flag IN ra_customer_trx.complete_flag%type,
166: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
167: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
168: p_currency_code IN fnd_currencies.currency_code%type,
169: p_exchange_date IN ra_customer_trx.exchange_date%type,

Line 169: p_exchange_date IN ra_customer_trx.exchange_date%type,

165: p_complete_flag IN ra_customer_trx.complete_flag%type,
166: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
167: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
168: p_currency_code IN fnd_currencies.currency_code%type,
169: p_exchange_date IN ra_customer_trx.exchange_date%type,
170: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,

Line 170: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,

166: p_batch_source_id IN ra_batch_sources.batch_source_id%type,
167: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
168: p_currency_code IN fnd_currencies.currency_code%type,
169: p_exchange_date IN ra_customer_trx.exchange_date%type,
170: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,

Line 171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,

167: p_cust_trx_type_id IN ra_cust_trx_types.cust_trx_type_id%type,
168: p_currency_code IN fnd_currencies.currency_code%type,
169: p_exchange_date IN ra_customer_trx.exchange_date%type,
170: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,

Line 172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,

168: p_currency_code IN fnd_currencies.currency_code%type,
169: p_exchange_date IN ra_customer_trx.exchange_date%type,
170: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,

Line 173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,

169: p_exchange_date IN ra_customer_trx.exchange_date%type,
170: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,

Line 174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,

170: p_exchange_rate_type IN ra_customer_trx.exchange_rate_type%type,
171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,

Line 175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,

171: p_exchange_rate IN ra_customer_trx.exchange_rate%type,
172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,

Line 176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,

172: p_invoicing_rule_id IN ra_customer_trx.invoicing_rule_id%type,
173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,

Line 177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,

173: p_method_for_rules IN ra_customer_trx.credit_method_for_rules%type,
174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,

Line 178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,

174: p_split_term_method IN ra_customer_trx.credit_method_for_installments%type,
175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,

Line 179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,

175: p_initial_customer_trx_id IN ra_customer_trx.initial_customer_trx_id%type,
176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,

Line 180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,

176: p_primary_salesrep_id IN ra_customer_trx.primary_salesrep_id%type,
177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,

Line 181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,

177: p_bill_to_customer_id IN ra_customer_trx.bill_to_customer_id%type,
178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,

Line 182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,

178: p_bill_to_address_id IN ra_customer_trx.bill_to_address_id%type,
179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,

Line 183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,

179: p_bill_to_site_use_id IN ra_customer_trx.bill_to_site_use_id%type,
180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,

Line 184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,

180: p_bill_to_contact_id IN ra_customer_trx.bill_to_contact_id%type,
181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
188: p_customer_bank_account_id IN

Line 185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,

181: p_ship_to_customer_id IN ra_customer_trx.ship_to_customer_id%type,
182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
188: p_customer_bank_account_id IN
189: ra_customer_trx.customer_bank_account_id%type,

Line 186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,

182: p_ship_to_address_id IN ra_customer_trx.ship_to_address_id%type,
183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
188: p_customer_bank_account_id IN
189: ra_customer_trx.customer_bank_account_id%type,
190: p_printing_option IN ra_customer_trx.printing_option%type,

Line 187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,

183: p_ship_to_site_use_id IN ra_customer_trx.ship_to_site_use_id%type,
184: p_ship_to_contact_id IN ra_customer_trx.ship_to_contact_id%type,
185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
188: p_customer_bank_account_id IN
189: ra_customer_trx.customer_bank_account_id%type,
190: p_printing_option IN ra_customer_trx.printing_option%type,
191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,

Line 189: ra_customer_trx.customer_bank_account_id%type,

185: p_receipt_method_id IN ra_customer_trx.receipt_method_id%type,
186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
188: p_customer_bank_account_id IN
189: ra_customer_trx.customer_bank_account_id%type,
190: p_printing_option IN ra_customer_trx.printing_option%type,
191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,

Line 190: p_printing_option IN ra_customer_trx.printing_option%type,

186: p_paying_customer_id IN ra_customer_trx.paying_customer_id%type,
187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
188: p_customer_bank_account_id IN
189: ra_customer_trx.customer_bank_account_id%type,
190: p_printing_option IN ra_customer_trx.printing_option%type,
191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,

Line 191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,

187: p_paying_site_use_id IN ra_customer_trx.paying_site_use_id%type,
188: p_customer_bank_account_id IN
189: ra_customer_trx.customer_bank_account_id%type,
190: p_printing_option IN ra_customer_trx.printing_option%type,
191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,

Line 192: p_printing_pending IN ra_customer_trx.printing_pending%type,

188: p_customer_bank_account_id IN
189: ra_customer_trx.customer_bank_account_id%type,
190: p_printing_option IN ra_customer_trx.printing_option%type,
191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,

Line 193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,

189: ra_customer_trx.customer_bank_account_id%type,
190: p_printing_option IN ra_customer_trx.printing_option%type,
191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,

Line 194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,

190: p_printing_option IN ra_customer_trx.printing_option%type,
191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,

Line 195: p_reason_code IN ra_customer_trx.reason_code%type,

191: p_printing_last_printed IN ra_customer_trx.printing_last_printed%type,
192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,

Line 196: p_customer_reference IN ra_customer_trx.customer_reference%type,

192: p_printing_pending IN ra_customer_trx.printing_pending%type,
193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,

Line 197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,

193: p_doc_sequence_value IN ra_customer_trx.doc_sequence_value%type,
194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,

Line 198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,

194: p_doc_sequence_id IN ra_customer_trx.doc_sequence_id%type,
195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,

Line 199: p_created_from IN ra_customer_trx.created_from%type,

195: p_reason_code IN ra_customer_trx.reason_code%type,
196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,

Line 200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,

196: p_customer_reference IN ra_customer_trx.customer_reference%type,
197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,

Line 201: p_attribute_category IN ra_customer_trx.attribute_category%type,

197: p_customer_reference_date IN ra_customer_trx.customer_reference_date%type, p_internal_notes IN ra_customer_trx.internal_notes%type,
198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,

Line 202: p_attribute1 IN ra_customer_trx.attribute1%type,

198: p_set_of_books_id IN ra_customer_trx.set_of_books_id%type,
199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,

Line 203: p_attribute2 IN ra_customer_trx.attribute2%type,

199: p_created_from IN ra_customer_trx.created_from%type,
200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,

Line 204: p_attribute3 IN ra_customer_trx.attribute3%type,

200: p_old_trx_number IN ra_customer_trx.old_trx_number%type,
201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,

Line 205: p_attribute4 IN ra_customer_trx.attribute4%type,

201: p_attribute_category IN ra_customer_trx.attribute_category%type,
202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,

Line 206: p_attribute5 IN ra_customer_trx.attribute5%type,

202: p_attribute1 IN ra_customer_trx.attribute1%type,
203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,

Line 207: p_attribute6 IN ra_customer_trx.attribute6%type,

203: p_attribute2 IN ra_customer_trx.attribute2%type,
204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,

Line 208: p_attribute7 IN ra_customer_trx.attribute7%type,

204: p_attribute3 IN ra_customer_trx.attribute3%type,
205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,

Line 209: p_attribute8 IN ra_customer_trx.attribute8%type,

205: p_attribute4 IN ra_customer_trx.attribute4%type,
206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,

Line 210: p_attribute9 IN ra_customer_trx.attribute9%type,

206: p_attribute5 IN ra_customer_trx.attribute5%type,
207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,
214: p_attribute13 IN ra_customer_trx.attribute13%type,

Line 211: p_attribute10 IN ra_customer_trx.attribute10%type,

207: p_attribute6 IN ra_customer_trx.attribute6%type,
208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,
214: p_attribute13 IN ra_customer_trx.attribute13%type,
215: p_attribute14 IN ra_customer_trx.attribute14%type,

Line 212: p_attribute11 IN ra_customer_trx.attribute11%type,

208: p_attribute7 IN ra_customer_trx.attribute7%type,
209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,
214: p_attribute13 IN ra_customer_trx.attribute13%type,
215: p_attribute14 IN ra_customer_trx.attribute14%type,
216: p_attribute15 IN ra_customer_trx.attribute15%type,

Line 213: p_attribute12 IN ra_customer_trx.attribute12%type,

209: p_attribute8 IN ra_customer_trx.attribute8%type,
210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,
214: p_attribute13 IN ra_customer_trx.attribute13%type,
215: p_attribute14 IN ra_customer_trx.attribute14%type,
216: p_attribute15 IN ra_customer_trx.attribute15%type,
217: p_interface_header_context IN

Line 214: p_attribute13 IN ra_customer_trx.attribute13%type,

210: p_attribute9 IN ra_customer_trx.attribute9%type,
211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,
214: p_attribute13 IN ra_customer_trx.attribute13%type,
215: p_attribute14 IN ra_customer_trx.attribute14%type,
216: p_attribute15 IN ra_customer_trx.attribute15%type,
217: p_interface_header_context IN
218: ra_customer_trx.interface_header_context%type,

Line 215: p_attribute14 IN ra_customer_trx.attribute14%type,

211: p_attribute10 IN ra_customer_trx.attribute10%type,
212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,
214: p_attribute13 IN ra_customer_trx.attribute13%type,
215: p_attribute14 IN ra_customer_trx.attribute14%type,
216: p_attribute15 IN ra_customer_trx.attribute15%type,
217: p_interface_header_context IN
218: ra_customer_trx.interface_header_context%type,
219: p_interface_header_attribute1 IN

Line 216: p_attribute15 IN ra_customer_trx.attribute15%type,

212: p_attribute11 IN ra_customer_trx.attribute11%type,
213: p_attribute12 IN ra_customer_trx.attribute12%type,
214: p_attribute13 IN ra_customer_trx.attribute13%type,
215: p_attribute14 IN ra_customer_trx.attribute14%type,
216: p_attribute15 IN ra_customer_trx.attribute15%type,
217: p_interface_header_context IN
218: ra_customer_trx.interface_header_context%type,
219: p_interface_header_attribute1 IN
220: ra_customer_trx.interface_header_attribute1%type,

Line 218: ra_customer_trx.interface_header_context%type,

214: p_attribute13 IN ra_customer_trx.attribute13%type,
215: p_attribute14 IN ra_customer_trx.attribute14%type,
216: p_attribute15 IN ra_customer_trx.attribute15%type,
217: p_interface_header_context IN
218: ra_customer_trx.interface_header_context%type,
219: p_interface_header_attribute1 IN
220: ra_customer_trx.interface_header_attribute1%type,
221: p_interface_header_attribute2 IN
222: ra_customer_trx.interface_header_attribute2%type,

Line 220: ra_customer_trx.interface_header_attribute1%type,

216: p_attribute15 IN ra_customer_trx.attribute15%type,
217: p_interface_header_context IN
218: ra_customer_trx.interface_header_context%type,
219: p_interface_header_attribute1 IN
220: ra_customer_trx.interface_header_attribute1%type,
221: p_interface_header_attribute2 IN
222: ra_customer_trx.interface_header_attribute2%type,
223: p_interface_header_attribute3 IN
224: ra_customer_trx.interface_header_attribute3%type,

Line 222: ra_customer_trx.interface_header_attribute2%type,

218: ra_customer_trx.interface_header_context%type,
219: p_interface_header_attribute1 IN
220: ra_customer_trx.interface_header_attribute1%type,
221: p_interface_header_attribute2 IN
222: ra_customer_trx.interface_header_attribute2%type,
223: p_interface_header_attribute3 IN
224: ra_customer_trx.interface_header_attribute3%type,
225: p_interface_header_attribute4 IN
226: ra_customer_trx.interface_header_attribute4%type,

Line 224: ra_customer_trx.interface_header_attribute3%type,

220: ra_customer_trx.interface_header_attribute1%type,
221: p_interface_header_attribute2 IN
222: ra_customer_trx.interface_header_attribute2%type,
223: p_interface_header_attribute3 IN
224: ra_customer_trx.interface_header_attribute3%type,
225: p_interface_header_attribute4 IN
226: ra_customer_trx.interface_header_attribute4%type,
227: p_interface_header_attribute5 IN
228: ra_customer_trx.interface_header_attribute5%type,

Line 226: ra_customer_trx.interface_header_attribute4%type,

222: ra_customer_trx.interface_header_attribute2%type,
223: p_interface_header_attribute3 IN
224: ra_customer_trx.interface_header_attribute3%type,
225: p_interface_header_attribute4 IN
226: ra_customer_trx.interface_header_attribute4%type,
227: p_interface_header_attribute5 IN
228: ra_customer_trx.interface_header_attribute5%type,
229: p_interface_header_attribute6 IN
230: ra_customer_trx.interface_header_attribute6%type,

Line 228: ra_customer_trx.interface_header_attribute5%type,

224: ra_customer_trx.interface_header_attribute3%type,
225: p_interface_header_attribute4 IN
226: ra_customer_trx.interface_header_attribute4%type,
227: p_interface_header_attribute5 IN
228: ra_customer_trx.interface_header_attribute5%type,
229: p_interface_header_attribute6 IN
230: ra_customer_trx.interface_header_attribute6%type,
231: p_interface_header_attribute7 IN
232: ra_customer_trx.interface_header_attribute7%type,

Line 230: ra_customer_trx.interface_header_attribute6%type,

226: ra_customer_trx.interface_header_attribute4%type,
227: p_interface_header_attribute5 IN
228: ra_customer_trx.interface_header_attribute5%type,
229: p_interface_header_attribute6 IN
230: ra_customer_trx.interface_header_attribute6%type,
231: p_interface_header_attribute7 IN
232: ra_customer_trx.interface_header_attribute7%type,
233: p_interface_header_attribute8 IN
234: ra_customer_trx.interface_header_attribute8%type,

Line 232: ra_customer_trx.interface_header_attribute7%type,

228: ra_customer_trx.interface_header_attribute5%type,
229: p_interface_header_attribute6 IN
230: ra_customer_trx.interface_header_attribute6%type,
231: p_interface_header_attribute7 IN
232: ra_customer_trx.interface_header_attribute7%type,
233: p_interface_header_attribute8 IN
234: ra_customer_trx.interface_header_attribute8%type,
235: p_interface_header_attribute9 IN
236: ra_customer_trx.interface_header_attribute9%type,

Line 234: ra_customer_trx.interface_header_attribute8%type,

230: ra_customer_trx.interface_header_attribute6%type,
231: p_interface_header_attribute7 IN
232: ra_customer_trx.interface_header_attribute7%type,
233: p_interface_header_attribute8 IN
234: ra_customer_trx.interface_header_attribute8%type,
235: p_interface_header_attribute9 IN
236: ra_customer_trx.interface_header_attribute9%type,
237: p_interface_header_attribute10 IN
238: ra_customer_trx.interface_header_attribute10%type,

Line 236: ra_customer_trx.interface_header_attribute9%type,

232: ra_customer_trx.interface_header_attribute7%type,
233: p_interface_header_attribute8 IN
234: ra_customer_trx.interface_header_attribute8%type,
235: p_interface_header_attribute9 IN
236: ra_customer_trx.interface_header_attribute9%type,
237: p_interface_header_attribute10 IN
238: ra_customer_trx.interface_header_attribute10%type,
239: p_interface_header_attribute11 IN
240: ra_customer_trx.interface_header_attribute11%type,

Line 238: ra_customer_trx.interface_header_attribute10%type,

234: ra_customer_trx.interface_header_attribute8%type,
235: p_interface_header_attribute9 IN
236: ra_customer_trx.interface_header_attribute9%type,
237: p_interface_header_attribute10 IN
238: ra_customer_trx.interface_header_attribute10%type,
239: p_interface_header_attribute11 IN
240: ra_customer_trx.interface_header_attribute11%type,
241: p_interface_header_attribute12 IN
242: ra_customer_trx.interface_header_attribute12%type,

Line 240: ra_customer_trx.interface_header_attribute11%type,

236: ra_customer_trx.interface_header_attribute9%type,
237: p_interface_header_attribute10 IN
238: ra_customer_trx.interface_header_attribute10%type,
239: p_interface_header_attribute11 IN
240: ra_customer_trx.interface_header_attribute11%type,
241: p_interface_header_attribute12 IN
242: ra_customer_trx.interface_header_attribute12%type,
243: p_interface_header_attribute13 IN
244: ra_customer_trx.interface_header_attribute13%type,

Line 242: ra_customer_trx.interface_header_attribute12%type,

238: ra_customer_trx.interface_header_attribute10%type,
239: p_interface_header_attribute11 IN
240: ra_customer_trx.interface_header_attribute11%type,
241: p_interface_header_attribute12 IN
242: ra_customer_trx.interface_header_attribute12%type,
243: p_interface_header_attribute13 IN
244: ra_customer_trx.interface_header_attribute13%type,
245: p_interface_header_attribute14 IN
246: ra_customer_trx.interface_header_attribute14%type,

Line 244: ra_customer_trx.interface_header_attribute13%type,

240: ra_customer_trx.interface_header_attribute11%type,
241: p_interface_header_attribute12 IN
242: ra_customer_trx.interface_header_attribute12%type,
243: p_interface_header_attribute13 IN
244: ra_customer_trx.interface_header_attribute13%type,
245: p_interface_header_attribute14 IN
246: ra_customer_trx.interface_header_attribute14%type,
247: p_interface_header_attribute15 IN
248: ra_customer_trx.interface_header_attribute15%type,

Line 246: ra_customer_trx.interface_header_attribute14%type,

242: ra_customer_trx.interface_header_attribute12%type,
243: p_interface_header_attribute13 IN
244: ra_customer_trx.interface_header_attribute13%type,
245: p_interface_header_attribute14 IN
246: ra_customer_trx.interface_header_attribute14%type,
247: p_interface_header_attribute15 IN
248: ra_customer_trx.interface_header_attribute15%type,
249: p_default_ussgl_trx_code IN
250: ra_customer_trx.default_ussgl_transaction_code%type,

Line 248: ra_customer_trx.interface_header_attribute15%type,

244: ra_customer_trx.interface_header_attribute13%type,
245: p_interface_header_attribute14 IN
246: ra_customer_trx.interface_header_attribute14%type,
247: p_interface_header_attribute15 IN
248: ra_customer_trx.interface_header_attribute15%type,
249: p_default_ussgl_trx_code IN
250: ra_customer_trx.default_ussgl_transaction_code%type,
251: p_line_percent IN number,
252: p_freight_percent IN number,

Line 250: ra_customer_trx.default_ussgl_transaction_code%type,

246: ra_customer_trx.interface_header_attribute14%type,
247: p_interface_header_attribute15 IN
248: ra_customer_trx.interface_header_attribute15%type,
249: p_default_ussgl_trx_code IN
250: ra_customer_trx.default_ussgl_transaction_code%type,
251: p_line_percent IN number,
252: p_freight_percent IN number,
253: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
254: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,

Line 253: p_line_amount IN ra_customer_trx_lines.extended_amount%type,

249: p_default_ussgl_trx_code IN
250: ra_customer_trx.default_ussgl_transaction_code%type,
251: p_line_percent IN number,
252: p_freight_percent IN number,
253: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
254: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
255: p_compute_tax IN varchar2,
256: p_comments IN ra_customer_trx.comments%type,
257: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,

Line 254: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,

250: ra_customer_trx.default_ussgl_transaction_code%type,
251: p_line_percent IN number,
252: p_freight_percent IN number,
253: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
254: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
255: p_compute_tax IN varchar2,
256: p_comments IN ra_customer_trx.comments%type,
257: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
258: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,

Line 256: p_comments IN ra_customer_trx.comments%type,

252: p_freight_percent IN number,
253: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
254: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
255: p_compute_tax IN varchar2,
256: p_comments IN ra_customer_trx.comments%type,
257: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
258: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
259: p_computed_tax_percent IN OUT NOCOPY number,
260: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,

Line 257: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,

253: p_line_amount IN ra_customer_trx_lines.extended_amount%type,
254: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
255: p_compute_tax IN varchar2,
256: p_comments IN ra_customer_trx.comments%type,
257: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
258: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
259: p_computed_tax_percent IN OUT NOCOPY number,
260: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
261: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,

Line 258: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,

254: p_freight_amount IN ra_customer_trx_lines.extended_amount%type,
255: p_compute_tax IN varchar2,
256: p_comments IN ra_customer_trx.comments%type,
257: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
258: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
259: p_computed_tax_percent IN OUT NOCOPY number,
260: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
261: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
262: p_status OUT NOCOPY varchar2,

Line 260: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,

256: p_comments IN ra_customer_trx.comments%type,
257: p_customer_trx_id OUT NOCOPY ra_customer_trx.customer_trx_id%type,
258: p_trx_number IN OUT NOCOPY ra_customer_trx.trx_number%type,
259: p_computed_tax_percent IN OUT NOCOPY number,
260: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
261: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
262: p_status OUT NOCOPY varchar2,
263: p_credit_line_table IN arw_cm_cover.credit_lines_table_type,
264: p_purchase_order IN ra_customer_trx.purchase_order%type,

Line 264: p_purchase_order IN ra_customer_trx.purchase_order%type,

260: p_computed_tax_amount IN OUT NOCOPY ra_customer_trx_lines.extended_amount%type,
261: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
262: p_status OUT NOCOPY varchar2,
263: p_credit_line_table IN arw_cm_cover.credit_lines_table_type,
264: p_purchase_order IN ra_customer_trx.purchase_order%type,
265: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
266: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
268: /*4556000-4606558*/

Line 265: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,

261: p_errors OUT NOCOPY arp_trx_validate.Message_Tbl_Type,
262: p_status OUT NOCOPY varchar2,
263: p_credit_line_table IN arw_cm_cover.credit_lines_table_type,
264: p_purchase_order IN ra_customer_trx.purchase_order%type,
265: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
266: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
268: /*4556000-4606558*/
269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,

Line 266: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,

262: p_status OUT NOCOPY varchar2,
263: p_credit_line_table IN arw_cm_cover.credit_lines_table_type,
264: p_purchase_order IN ra_customer_trx.purchase_order%type,
265: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
266: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
268: /*4556000-4606558*/
269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,

Line 267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,

263: p_credit_line_table IN arw_cm_cover.credit_lines_table_type,
264: p_purchase_order IN ra_customer_trx.purchase_order%type,
265: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
266: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
268: /*4556000-4606558*/
269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,

Line 269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,

265: p_purchase_order_revision IN ra_customer_trx.purchase_order_revision%type,
266: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
268: /*4556000-4606558*/
269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,

Line 270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,

266: p_purchase_order_date IN ra_customer_trx.purchase_order_date%type,
267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
268: /*4556000-4606558*/
269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,

Line 271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,

267: p_legal_entity_id IN ra_customer_trx.legal_entity_id%type,
268: /*4556000-4606558*/
269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,

Line 272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,

268: /*4556000-4606558*/
269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,

Line 273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,

269: p_global_attribute_category IN ra_customer_trx.global_attribute_category%type default null,
270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,

Line 274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,

270: p_global_attribute1 IN ra_customer_trx.global_attribute1%type default NULL,
271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,

Line 275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,

271: p_global_attribute2 IN ra_customer_trx.global_attribute2%type default NULL,
272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,

Line 276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,

272: p_global_attribute3 IN ra_customer_trx.global_attribute3%type default NULL,
273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,

Line 277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,

273: p_global_attribute4 IN ra_customer_trx.global_attribute4%type default NULL,
274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,

Line 278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,

274: p_global_attribute5 IN ra_customer_trx.global_attribute5%type default NULL,
275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,

Line 279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,

275: p_global_attribute6 IN ra_customer_trx.global_attribute6%type default NULL,
276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,

Line 280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,

276: p_global_attribute7 IN ra_customer_trx.global_attribute7%type default NULL,
277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,

Line 281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,

277: p_global_attribute8 IN ra_customer_trx.global_attribute8%type default NULL,
278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,

Line 282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,

278: p_global_attribute9 IN ra_customer_trx.global_attribute9%type default NULL,
279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,

Line 283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,

279: p_global_attribute10 IN ra_customer_trx.global_attribute10%type default NULL,
280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,

Line 284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,

280: p_global_attribute11 IN ra_customer_trx.global_attribute11%type default NULL,
281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,

Line 285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,

281: p_global_attribute12 IN ra_customer_trx.global_attribute12%type default NULL,
282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,

Line 286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,

282: p_global_attribute13 IN ra_customer_trx.global_attribute13%type default NULL,
283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,

Line 287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,

283: p_global_attribute14 IN ra_customer_trx.global_attribute14%type default NULL,
284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,

Line 288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,

284: p_global_attribute15 IN ra_customer_trx.global_attribute15%type default NULL,
285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,

Line 289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,

285: p_global_attribute16 IN ra_customer_trx.global_attribute16%type default NULL,
286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,

Line 290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,

286: p_global_attribute17 IN ra_customer_trx.global_attribute17%type default NULL,
287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,

Line 291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,

287: p_global_attribute18 IN ra_customer_trx.global_attribute18%type default NULL,
288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,

Line 292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,

288: p_global_attribute19 IN ra_customer_trx.global_attribute19%type default NULL,
289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,

Line 293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,

289: p_global_attribute20 IN ra_customer_trx.global_attribute20%type default NULL,
290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,

Line 294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,

290: p_global_attribute21 IN ra_customer_trx.global_attribute21%type default NULL,
291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
298: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,

Line 295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,

291: p_global_attribute22 IN ra_customer_trx.global_attribute22%type default NULL,
292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
298: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
299: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL

Line 296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,

292: p_global_attribute23 IN ra_customer_trx.global_attribute23%type default NULL,
293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
298: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
299: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
300: );

Line 297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,

293: p_global_attribute24 IN ra_customer_trx.global_attribute24%type default NULL,
294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
298: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
299: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
300: );
301:

Line 298: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,

294: p_global_attribute25 IN ra_customer_trx.global_attribute25%type default NULL,
295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
298: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
299: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
300: );
301:
302:

Line 299: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL

295: p_global_attribute26 IN ra_customer_trx.global_attribute26%type default NULL,
296: p_global_attribute27 IN ra_customer_trx.global_attribute27%type default NULL,
297: p_global_attribute28 IN ra_customer_trx.global_attribute28%type default NULL,
298: p_global_attribute29 IN ra_customer_trx.global_attribute29%type default NULL,
299: p_global_attribute30 IN ra_customer_trx.global_attribute30%type default NULL
300: );
301:
302:
303: END arw_cm_cover;