DBA Data[Home] [Help]

APPS.XTR_REPLICATE_BANK_BALANCES dependencies on XTR_BANK_BALANCES_V

Line 831: FROM XTR_BANK_BALANCES_V A,

827:
828: -- Check whether the balance does not already exist for
829: CURSOR C_DUPLICATE_DATE IS
830: SELECT 1
831: FROM XTR_BANK_BALANCES_V A,
832: XTR_BANK_ACCOUNTS_V B
833: WHERE A.BALANCE_DATE = p_balance_date
834: AND A.ACCOUNT_NUMBER = B.ACCOUNT_NUMBER
835: AND A.COMPANY_CODE = B.PARTY_CODE

Line 1428: FROM XTR_BANK_BALANCES_V

1424: -- is deleting the balance
1425:
1426: CURSOR C_BAL_DATE IS
1427: SELECT max(BALANCE_DATE)
1428: FROM XTR_BANK_BALANCES_V
1429: WHERE ACCOUNT_NUMBER = p_account_number
1430: AND COMPANY_CODE = p_company_code
1431: AND BALANCE_DATE < p_balance_date;
1432: