DBA Data[Home] [Help]

APPS.AR_BLK_INSRT_TRX_LINE dependencies on RA_CUSTOMER_TRX_LINES

Line 4: TYPE t_customer_trx_line_id is TABLE of ra_customer_trx_lines.customer_trx_line_id%TYPE index by binary_integer;

1: PACKAGE AR_BLK_INSRT_TRX_LINE AS
2: /* $Header: ARTXBLKS.pls 120.2 2005/10/30 04:27:44 appldev noship $ */
3:
4: TYPE t_customer_trx_line_id is TABLE of ra_customer_trx_lines.customer_trx_line_id%TYPE index by binary_integer;
5: TYPE t_customer_trx_id is TABLE of ra_customer_trx_lines.customer_trx_id%TYPE index by binary_integer;
6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;
7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;

Line 5: TYPE t_customer_trx_id is TABLE of ra_customer_trx_lines.customer_trx_id%TYPE index by binary_integer;

1: PACKAGE AR_BLK_INSRT_TRX_LINE AS
2: /* $Header: ARTXBLKS.pls 120.2 2005/10/30 04:27:44 appldev noship $ */
3:
4: TYPE t_customer_trx_line_id is TABLE of ra_customer_trx_lines.customer_trx_line_id%TYPE index by binary_integer;
5: TYPE t_customer_trx_id is TABLE of ra_customer_trx_lines.customer_trx_id%TYPE index by binary_integer;
6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;
7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;

Line 6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;

2: /* $Header: ARTXBLKS.pls 120.2 2005/10/30 04:27:44 appldev noship $ */
3:
4: TYPE t_customer_trx_line_id is TABLE of ra_customer_trx_lines.customer_trx_line_id%TYPE index by binary_integer;
5: TYPE t_customer_trx_id is TABLE of ra_customer_trx_lines.customer_trx_id%TYPE index by binary_integer;
6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;
7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;

Line 7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;

3:
4: TYPE t_customer_trx_line_id is TABLE of ra_customer_trx_lines.customer_trx_line_id%TYPE index by binary_integer;
5: TYPE t_customer_trx_id is TABLE of ra_customer_trx_lines.customer_trx_id%TYPE index by binary_integer;
6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;
7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;

Line 8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;

4: TYPE t_customer_trx_line_id is TABLE of ra_customer_trx_lines.customer_trx_line_id%TYPE index by binary_integer;
5: TYPE t_customer_trx_id is TABLE of ra_customer_trx_lines.customer_trx_id%TYPE index by binary_integer;
6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;
7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;

Line 9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;

5: TYPE t_customer_trx_id is TABLE of ra_customer_trx_lines.customer_trx_id%TYPE index by binary_integer;
6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;
7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;

Line 10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;

6: TYPE t_line_number is TABLE of ra_customer_trx_lines.line_number%TYPE index by binary_integer;
7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;

Line 11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;

7: TYPE t_line_type is TABLE of ra_customer_trx_lines.line_type%TYPE index by binary_integer;
8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;

Line 12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;

8: TYPE t_quantity_credited is TABLE of ra_customer_trx_lines.quantity_credited%TYPE index by binary_integer;
9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;

Line 13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;

9: TYPE t_quantity_invoiced is TABLE of ra_customer_trx_lines.quantity_invoiced%TYPE index by binary_integer ;
10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;

Line 14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;

10: TYPE t_quantity_ordered is TABLE of ra_customer_trx_lines.quantity_ordered%TYPE index by binary_integer;
11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;

Line 15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;

11: TYPE t_unit_selling_price is TABLE of ra_customer_trx_lines.unit_selling_price%TYPE index by binary_integer;
12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;

Line 16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;

12: TYPE t_unit_standard_price is TABLE of ra_customer_trx_lines.unit_standard_price%TYPE index by binary_integer;
13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;

Line 17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;

13: TYPE t_revenue_amount is TABLE of ra_customer_trx_lines.revenue_amount%TYPE index by binary_integer;
14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;

Line 18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;

14: TYPE t_extended_amount is TABLE of ra_customer_trx_lines.extended_amount%TYPE index by binary_integer;
15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;

Line 19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;

15: TYPE t_memo_line_id is TABLE of ra_customer_trx_lines.memo_line_id%TYPE index by binary_integer;
16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;

Line 20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;

16: TYPE t_inventory_item_id is TABLE of ra_customer_trx_lines.inventory_item_id%TYPE index by binary_integer;
17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;

Line 21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;

17: TYPE t_item_exception_rate_id is TABLE of ra_customer_trx_lines.item_exception_rate_id%TYPE index by binary_integer;
18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;

Line 22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;

18: TYPE t_description is TABLE of ra_customer_trx_lines.description%TYPE index by binary_integer;
19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;

Line 23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;

19: TYPE t_item_context is TABLE of ra_customer_trx_lines.item_context%TYPE index by binary_integer;
20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;

Line 24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;

20: TYPE t_initial_trx_line_id is TABLE of ra_customer_trx_lines.initial_customer_trx_line_id%TYPE index by binary_integer;
21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;

Line 25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;

21: TYPE t_link_to_cust_trx_line_id is TABLE of ra_customer_trx_lines.link_to_cust_trx_line_id%TYPE index by binary_integer;
22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;

Line 26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;

22: TYPE t_prev_customer_trx_id is TABLE of ra_customer_trx_lines.previous_customer_trx_id%TYPE index by binary_integer;
23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;

Line 27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;

23: TYPE t_prev_customer_trx_line_id is TABLE of ra_customer_trx_lines.previous_customer_trx_line_id%TYPE index by binary_integer;
24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;

Line 28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;

24: TYPE t_accounting_rule_duration is TABLE of ra_customer_trx_lines.accounting_rule_duration%TYPE index by binary_integer;
25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;

Line 29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;

25: TYPE t_accounting_rule_id is TABLE of ra_customer_trx_lines.accounting_rule_id%TYPE index by binary_integer;
26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;

Line 30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;

26: TYPE t_rule_start_date is TABLE of ra_customer_trx_lines.rule_start_date%TYPE index by binary_integer;
27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;

Line 31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;

27: TYPE t_autorule_complete_flag is TABLE of ra_customer_trx_lines.autorule_complete_flag%TYPE index by binary_integer;
28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;

Line 32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;

28: TYPE t_autorule_duration_processed is TABLE of ra_customer_trx_lines.autorule_duration_processed%TYPE index by binary_integer;
29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;

Line 33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;

29: TYPE t_reason_code is TABLE of ra_customer_trx_lines.reason_code%TYPE index by binary_integer;
30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;

Line 34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;

30: TYPE t_last_period_to_credit is TABLE of ra_customer_trx_lines.last_period_to_credit%TYPE index by binary_integer;
31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;

Line 35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;

31: TYPE t_sales_order is TABLE of ra_customer_trx_lines.sales_order%TYPE index by binary_integer;
32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;

Line 36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;

32: TYPE t_sales_order_date is TABLE of ra_customer_trx_lines.sales_order_date%TYPE index by binary_integer;
33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;

Line 37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;

33: TYPE t_sales_order_line is TABLE of ra_customer_trx_lines.sales_order_line%TYPE index by binary_integer;
34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;

Line 38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;

34: TYPE t_sales_order_revision is TABLE of ra_customer_trx_lines.sales_order_revision%TYPE index by binary_integer;
35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;

Line 39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;

35: TYPE t_sales_order_source is TABLE of ra_customer_trx_lines.sales_order_source%TYPE index by binary_integer;
36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;

Line 40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;

36: TYPE t_vat_tax_id is TABLE of ra_customer_trx_lines.vat_tax_id%TYPE index by binary_integer;
37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;

Line 41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;

37: TYPE t_tax_exempt_flag is TABLE of ra_customer_trx_lines.tax_exempt_flag%TYPE index by binary_integer;
38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;

Line 42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;

38: TYPE t_sales_tax_id is TABLE of ra_customer_trx_lines.sales_tax_id%TYPE index by binary_integer;
39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;

Line 43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;

39: TYPE t_location_segment_id is TABLE of ra_customer_trx_lines.location_segment_id%TYPE index by binary_integer;
40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;

Line 44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;

40: TYPE t_tax_exempt_number is TABLE of ra_customer_trx_lines.tax_exempt_number%TYPE index by binary_integer;
41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;

Line 45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;

41: TYPE t_tax_exempt_reason_code is TABLE of ra_customer_trx_lines.tax_exempt_reason_code%TYPE index by binary_integer;
42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;

Line 46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;

42: TYPE t_tax_vendor_return_code is TABLE of ra_customer_trx_lines.tax_vendor_return_code%TYPE index by binary_integer;
43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;

Line 47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;

43: TYPE t_taxable_flag is TABLE of ra_customer_trx_lines.taxable_flag%TYPE index by binary_integer;
44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;

Line 48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;

44: TYPE t_tax_exemption_id is TABLE of ra_customer_trx_lines.tax_exemption_id%TYPE index by binary_integer;
45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;

Line 49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;

45: TYPE t_tax_precedence is TABLE of ra_customer_trx_lines.tax_precedence%TYPE index by binary_integer;
46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;

Line 50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;

46: TYPE t_tax_rate is TABLE of ra_customer_trx_lines.tax_rate%TYPE index by binary_integer;
47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;

Line 51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;

47: TYPE t_uom_code is TABLE of ra_customer_trx_lines.uom_code%TYPE index by binary_integer;
48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;

Line 52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;

48: TYPE t_autotax is TABLE of ra_customer_trx_lines.autotax%TYPE index by binary_integer;
49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;

Line 53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;

49: TYPE t_movement_id is TABLE of ra_customer_trx_lines.movement_id%TYPE index by binary_integer;
50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;

Line 54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;

50: TYPE t_DEF_ussgl_transaction_code is TABLE of ra_customer_trx_lines.default_ussgl_transaction_code%TYPE index by binary_integer;
51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;

Line 55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;

51: TYPE t_DEF_ussgl_trx_code_context is TABLE of ra_customer_trx_lines.default_ussgl_trx_code_context%TYPE index by binary_integer;
52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;

Line 56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;

52: TYPE t_interface_line_context is TABLE of ra_customer_trx_lines.interface_line_context%TYPE index by binary_integer;
53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;

Line 57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;

53: TYPE t_interface_line_attribute1 is TABLE of ra_customer_trx_lines.interface_line_attribute1%TYPE index by binary_integer;
54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;

Line 58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;

54: TYPE t_interface_line_attribute2 is TABLE of ra_customer_trx_lines.interface_line_attribute2%TYPE index by binary_integer;
55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;

Line 59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;

55: TYPE t_interface_line_attribute3 is TABLE of ra_customer_trx_lines.interface_line_attribute3%TYPE index by binary_integer;
56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;

Line 60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;

56: TYPE t_interface_line_attribute4 is TABLE of ra_customer_trx_lines.interface_line_attribute4%TYPE index by binary_integer;
57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;

Line 61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;

57: TYPE t_interface_line_attribute5 is TABLE of ra_customer_trx_lines.interface_line_attribute5%TYPE index by binary_integer;
58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;

Line 62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;

58: TYPE t_interface_line_attribute6 is TABLE of ra_customer_trx_lines.interface_line_attribute6%TYPE index by binary_integer;
59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;

Line 63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;

59: TYPE t_interface_line_attribute7 is TABLE of ra_customer_trx_lines.interface_line_attribute7%TYPE index by binary_integer;
60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;

Line 64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;

60: TYPE t_interface_line_attribute8 is TABLE of ra_customer_trx_lines.interface_line_attribute8%TYPE index by binary_integer;
61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;

Line 65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;

61: TYPE t_interface_line_attribute9 is TABLE of ra_customer_trx_lines.interface_line_attribute9%TYPE index by binary_integer;
62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;

Line 66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;

62: TYPE t_interface_line_attribute10 is TABLE of ra_customer_trx_lines.interface_line_attribute10%TYPE index by binary_integer;
63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;

Line 67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;

63: TYPE t_interface_line_attribute11 is TABLE of ra_customer_trx_lines.interface_line_attribute11%TYPE index by binary_integer;
64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;

Line 68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;

64: TYPE t_interface_line_attribute12 is TABLE of ra_customer_trx_lines.interface_line_attribute12%TYPE index by binary_integer;
65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;

Line 69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;

65: TYPE t_interface_line_attribute13 is TABLE of ra_customer_trx_lines.interface_line_attribute13%TYPE index by binary_integer;
66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;

Line 70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;

66: TYPE t_interface_line_attribute14 is TABLE of ra_customer_trx_lines.interface_line_attribute14%TYPE index by binary_integer;
67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;

Line 71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;

67: TYPE t_interface_line_attribute15 is TABLE of ra_customer_trx_lines.interface_line_attribute15%TYPE index by binary_integer;
68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;

Line 72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;

68: TYPE t_attribute_category is TABLE of ra_customer_trx_lines.attribute_category%TYPE index by binary_integer;
69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;

Line 73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;

69: TYPE t_attribute1 is TABLE of ra_customer_trx_lines.attribute1%TYPE index by binary_integer;
70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;

Line 74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;

70: TYPE t_attribute2 is TABLE of ra_customer_trx_lines.attribute2%TYPE index by binary_integer;
71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;

Line 75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;

71: TYPE t_attribute3 is TABLE of ra_customer_trx_lines.attribute3%TYPE index by binary_integer;
72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;

Line 76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;

72: TYPE t_attribute4 is TABLE of ra_customer_trx_lines.attribute4%TYPE index by binary_integer;
73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;

Line 77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;

73: TYPE t_attribute5 is TABLE of ra_customer_trx_lines.attribute5%TYPE index by binary_integer;
74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;

Line 78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;

74: TYPE t_attribute6 is TABLE of ra_customer_trx_lines.attribute6%TYPE index by binary_integer;
75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;

Line 79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;

75: TYPE t_attribute7 is TABLE of ra_customer_trx_lines.attribute7%TYPE index by binary_integer;
76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;

Line 80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;

76: TYPE t_attribute8 is TABLE of ra_customer_trx_lines.attribute8%TYPE index by binary_integer;
77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;

Line 81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;

77: TYPE t_attribute9 is TABLE of ra_customer_trx_lines.attribute9%TYPE index by binary_integer;
78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;

Line 82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;

78: TYPE t_attribute10 is TABLE of ra_customer_trx_lines.attribute10%TYPE index by binary_integer;
79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;

Line 83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;

79: TYPE t_attribute11 is TABLE of ra_customer_trx_lines.attribute11%TYPE index by binary_integer;
80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;

Line 84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;

80: TYPE t_attribute12 is TABLE of ra_customer_trx_lines.attribute12%TYPE index by binary_integer;
81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;

Line 85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;

81: TYPE t_attribute13 is TABLE of ra_customer_trx_lines.attribute13%TYPE index by binary_integer;
82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;

Line 86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;

82: TYPE t_attribute14 is TABLE of ra_customer_trx_lines.attribute14%TYPE index by binary_integer;
83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;

Line 87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;

83: TYPE t_attribute15 is TABLE of ra_customer_trx_lines.attribute15%TYPE index by binary_integer;
84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;

Line 88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;

84: TYPE t_global_attribute_category is TABLE of ra_customer_trx_lines.global_attribute_category%TYPE index by binary_integer;
85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;

Line 89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;

85: TYPE t_global_attribute1 is TABLE of ra_customer_trx_lines.global_attribute1%TYPE index by binary_integer;
86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;

Line 90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;

86: TYPE t_global_attribute2 is TABLE of ra_customer_trx_lines.global_attribute2%TYPE index by binary_integer;
87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;

Line 91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;

87: TYPE t_global_attribute3 is TABLE of ra_customer_trx_lines.global_attribute3%TYPE index by binary_integer;
88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;

Line 92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;

88: TYPE t_global_attribute4 is TABLE of ra_customer_trx_lines.global_attribute4%TYPE index by binary_integer;
89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;

Line 93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;

89: TYPE t_global_attribute5 is TABLE of ra_customer_trx_lines.global_attribute5%TYPE index by binary_integer;
90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;

Line 94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;

90: TYPE t_global_attribute6 is TABLE of ra_customer_trx_lines.global_attribute6%TYPE index by binary_integer;
91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;

Line 95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;

91: TYPE t_global_attribute7 is TABLE of ra_customer_trx_lines.global_attribute7%TYPE index by binary_integer;
92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;

Line 96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;

92: TYPE t_global_attribute8 is TABLE of ra_customer_trx_lines.global_attribute8%TYPE index by binary_integer;
93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;

Line 97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;

93: TYPE t_global_attribute9 is TABLE of ra_customer_trx_lines.global_attribute9%TYPE index by binary_integer;
94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;

Line 98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;

94: TYPE t_global_attribute10 is TABLE of ra_customer_trx_lines.global_attribute10%TYPE index by binary_integer;
95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;

Line 99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;

95: TYPE t_global_attribute11 is TABLE of ra_customer_trx_lines.global_attribute11%TYPE index by binary_integer;
96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;

Line 100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;

96: TYPE t_global_attribute12 is TABLE of ra_customer_trx_lines.global_attribute12%TYPE index by binary_integer;
97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;

Line 101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;

97: TYPE t_global_attribute13 is TABLE of ra_customer_trx_lines.global_attribute13%TYPE index by binary_integer;
98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;

Line 102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;

98: TYPE t_global_attribute14 is TABLE of ra_customer_trx_lines.global_attribute14%TYPE index by binary_integer;
99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;

Line 103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;

99: TYPE t_global_attribute15 is TABLE of ra_customer_trx_lines.global_attribute15%TYPE index by binary_integer;
100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;

Line 104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;

100: TYPE t_global_attribute16 is TABLE of ra_customer_trx_lines.global_attribute16%TYPE index by binary_integer;
101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;

Line 105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;

101: TYPE t_global_attribute17 is TABLE of ra_customer_trx_lines.global_attribute17%TYPE index by binary_integer;
102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;

Line 106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;

102: TYPE t_global_attribute18 is TABLE of ra_customer_trx_lines.global_attribute18%TYPE index by binary_integer;
103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;

Line 107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;

103: TYPE t_global_attribute19 is TABLE of ra_customer_trx_lines.global_attribute19%TYPE index by binary_integer;
104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;

Line 108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;

104: TYPE t_global_attribute20 is TABLE of ra_customer_trx_lines.global_attribute20%TYPE index by binary_integer;
105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;

Line 109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;

105: TYPE t_created_by is TABLE of ra_customer_trx_lines.created_by%TYPE index by binary_integer;
106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;

Line 110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;

106: TYPE t_create_date is TABLE of ra_customer_trx_lines.creation_date%TYPE index by binary_integer;
107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;

Line 111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;

107: TYPE t_updated_by is TABLE of ra_customer_trx_lines.last_updated_by%TYPE index by binary_integer;
108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;

Line 112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;

108: TYPE t_update_date is TABLE of ra_customer_trx_lines.last_update_date%TYPE index by binary_integer;
109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;

Line 113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;

109: TYPE t_prog_appl_id is TABLE of ra_customer_trx_lines.program_application_id%TYPE index by binary_integer;
110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;

Line 114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;

110: TYPE t_last_update_login is TABLE of ra_customer_trx_lines.last_update_login%TYPE index by binary_integer;
111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;

Line 115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;

111: TYPE t_conc_program_id is TABLE of ra_customer_trx_lines.program_id%TYPE index by binary_integer;
112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;

Line 116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;

112: TYPE t_program_update_date is TABLE of ra_customer_trx_lines.program_update_date%TYPE index by binary_integer;
113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;

Line 117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;

113: TYPE t_set_of_books_id is TABLE of ra_customer_trx_lines.set_of_books_id%TYPE index by binary_integer;
114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;

Line 118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;

114: TYPE t_gross_unit_selling_price is TABLE of ra_customer_trx_lines.gross_unit_selling_price%TYPE index by binary_integer;
115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;

Line 119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;

115: TYPE t_gross_extended_amount is TABLE of ra_customer_trx_lines.gross_extended_amount%TYPE index by binary_integer;
116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;
123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;

Line 120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;

116: TYPE t_amount_includes_tax_flag is TABLE of ra_customer_trx_lines.amount_includes_tax_flag%TYPE index by binary_integer;
117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;
123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;
124: TYPE t_br_adjustment_id is TABLE of ra_customer_trx_lines.br_adjustment_id%TYPE index by binary_integer;

Line 121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;

117: TYPE t_warehouse_id is TABLE of ra_customer_trx_lines.warehouse_id%TYPE index by binary_integer;
118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;
123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;
124: TYPE t_br_adjustment_id is TABLE of ra_customer_trx_lines.br_adjustment_id%TYPE index by binary_integer;
125: TYPE t_wh_update_date is TABLE of ra_customer_trx_lines.wh_update_date%TYPE index by binary_integer;

Line 122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;

118: TYPE t_translated_description is TABLE of ra_customer_trx_lines.translated_description%TYPE index by binary_integer;
119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;
123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;
124: TYPE t_br_adjustment_id is TABLE of ra_customer_trx_lines.br_adjustment_id%TYPE index by binary_integer;
125: TYPE t_wh_update_date is TABLE of ra_customer_trx_lines.wh_update_date%TYPE index by binary_integer;
126:

Line 123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;

119: TYPE t_taxable_amount is TABLE of ra_customer_trx_lines.taxable_amount%TYPE index by binary_integer;
120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;
123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;
124: TYPE t_br_adjustment_id is TABLE of ra_customer_trx_lines.br_adjustment_id%TYPE index by binary_integer;
125: TYPE t_wh_update_date is TABLE of ra_customer_trx_lines.wh_update_date%TYPE index by binary_integer;
126:
127:

Line 124: TYPE t_br_adjustment_id is TABLE of ra_customer_trx_lines.br_adjustment_id%TYPE index by binary_integer;

120: TYPE t_request_id is TABLE of ra_customer_trx_lines.request_id%TYPE index by binary_integer;
121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;
123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;
124: TYPE t_br_adjustment_id is TABLE of ra_customer_trx_lines.br_adjustment_id%TYPE index by binary_integer;
125: TYPE t_wh_update_date is TABLE of ra_customer_trx_lines.wh_update_date%TYPE index by binary_integer;
126:
127:
128: PROCEDURE bulk_insert_cust_trx_lines (

Line 125: TYPE t_wh_update_date is TABLE of ra_customer_trx_lines.wh_update_date%TYPE index by binary_integer;

121: TYPE t_extended_acctd_amount is TABLE of ra_customer_trx_lines.extended_acctd_amount%TYPE index by binary_integer;
122: TYPE t_br_ref_customer_trx_id is TABLE of ra_customer_trx_lines.br_ref_customer_trx_id%TYPE index by binary_integer;
123: TYPE t_br_ref_payment_schedule_id is TABLE of ra_customer_trx_lines.br_ref_payment_schedule_id%TYPE index by binary_integer;
124: TYPE t_br_adjustment_id is TABLE of ra_customer_trx_lines.br_adjustment_id%TYPE index by binary_integer;
125: TYPE t_wh_update_date is TABLE of ra_customer_trx_lines.wh_update_date%TYPE index by binary_integer;
126:
127:
128: PROCEDURE bulk_insert_cust_trx_lines (
129: p_customer_trx_line_id IN OUT NOCOPY t_customer_trx_line_id,