Table of Account Receivables in oracle R12
The Accounts Receivable (AR) module in Oracle R12 involves several tables that store data related to customer transactions, invoices, receipts, and more. Here's an overview of some key tables in the Oracle R12 Accounts Receivable module:
Key Tables in Oracle R12 Accounts Receivable:
RA_CUSTOMERS
- Purpose: Stores customer information.
- Key Columns:
CUSTOMER_ID
,CUSTOMER_NAME
,STATUS
,CUSTOMER_NUMBER
RA_CUSTOMER_TRX_ALL
- Purpose: Stores invoice headers for all transactions such as invoices, credit memos, debit memos, etc.
- Key Columns:
CUSTOMER_TRX_ID
,TRX_NUMBER
,TRX_DATE
,BILL_TO_CUSTOMER_ID
,STATUS
RA_CUSTOMER_TRX_LINES_ALL
- Purpose: Stores the line-level details of transactions recorded in
RA_CUSTOMER_TRX_ALL
. - Key Columns:
CUSTOMER_TRX_LINE_ID
,CUSTOMER_TRX_ID
,LINE_NUMBER
,DESCRIPTION
,LINE_TYPE
- Purpose: Stores the line-level details of transactions recorded in
AR_RECEIVABLE_APPLICATIONS_ALL
- Purpose: Stores information about the application of receipts to invoices and other transactions.
- Key Columns:
APPLICATION_ID
,CASH_RECEIPT_ID
,CUSTOMER_TRX_ID
,APPLIED_AMOUNT
,STATUS
AR_CASH_RECEIPTS_ALL
- Purpose: Stores information about cash receipts.
- Key Columns:
CASH_RECEIPT_ID
,RECEIPT_NUMBER
,CUSTOMER_ID
,RECEIPT_DATE
,RECEIPT_AMOUNT
AR_PAYMENT_SCHEDULES_ALL
- Purpose: Stores information on the payment schedules for invoices, including outstanding balances.
- Key Columns:
PAYMENT_SCHEDULE_ID
,CUSTOMER_TRX_ID
,DUE_DATE
,AMOUNT_DUE_REMAINING
,STATUS
AR_ADJUSTMENTS_ALL
- Purpose: Stores adjustment records made against customer invoices or receipts.
- Key Columns:
ADJUSTMENT_ID
,CUSTOMER_TRX_ID
,ADJUSTMENT_TYPE
,ADJUSTED_AMOUNT
,STATUS
HZ_PARTIES
- Purpose: Stores information about parties involved in transactions (can be customers, suppliers, employees, etc.).
- Key Columns:
PARTY_ID
,PARTY_NAME
,PARTY_NUMBER
,PARTY_TYPE
RA_BATCHES_ALL
- Purpose: Stores information on batches of invoices.
- Key Columns:
BATCH_ID
,BATCH_SOURCE_ID
,BATCH_NAME
,BATCH_DATE
,STATUS
RA_INTERFACE_ERRORS_ALL
- Purpose: Stores errors encountered during the AutoInvoice process.
- Key Columns:
INTERFACE_LINE_ID
,ERROR_CODE
,ERROR_MESSAGE
Comments
Post a Comment