DBA Data[Home] [Help]

APPS.XTR_REPLICATE_BANK_BALANCES dependencies on XTR_BANK_BALANCES_V

Line 833: FROM XTR_BANK_BALANCES_V A,

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

Line 1430: FROM XTR_BANK_BALANCES_V

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