DBA Data[Home] [Help]

APPS.OKL_ARINTF_PVT dependencies on RA_INTERFACE_DISTRIBUTIONS_ALL

Line 23: account_class RA_INTERFACE_DISTRIBUTIONS_ALL.account_class%TYPE,

19: --end: | 15-FEB-07 cklee R12 Billing enhancement project |
20:
21: -- rmunjulu R12 Fixes
22: TYPE dist_rec_type IS RECORD (
23: account_class RA_INTERFACE_DISTRIBUTIONS_ALL.account_class%TYPE,
24: dist_amount OKL_TRNS_ACC_DSTRS.amount%TYPE,
25: dist_percent OKL_TRNS_ACC_DSTRS.percentage%TYPE,
26: code_combination_id OKL_TRNS_ACC_DSTRS.code_combination_id%TYPE);
27:

Line 1898: type inv_dist_tbl_type is table of ra_interface_distributions_all%rowtype index by pls_integer;

1894:
1895: l_xfer_tbl xfer_tbl_type;
1896:
1897: type inv_lines_tbl_type is table of ra_interface_lines_all%rowtype index by binary_integer;
1898: type inv_dist_tbl_type is table of ra_interface_distributions_all%rowtype index by pls_integer;
1899: type sales_credits_tbl_type is table of ra_interface_salescredits_all%rowtype index by pls_integer;
1900: type ar_contingency_tbl_type is table of ar_interface_conts_all%rowtype index by pls_integer;
1901:
1902: inv_lines_tbl inv_lines_tbl_type;

Line 4421: INSERT INTO RA_INTERFACE_DISTRIBUTIONS_ALL

4417: END IF;
4418: IF inv_dist_tbl.count > 0 THEN
4419: FORALL indx in inv_dist_tbl.first..inv_dist_tbl.LAST
4420: SAVE EXCEPTIONS
4421: INSERT INTO RA_INTERFACE_DISTRIBUTIONS_ALL
4422: VALUES inv_dist_tbl(indx);
4423: END IF;
4424:
4425: IF SQL%BULK_EXCEPTIONS.COUNT > 0 THEN