Skip to main content

AR: Transaction Write-Offs

What do I mean when I say Transaction Write-Offs?

I mean to say that a customer’s transaction is outstanding for a longest period and you have no clue as to if the customer is going to pay or not, you cannot trace the customer and now you want to write-off that transaction.
Yep it’s called Bad Debts.
How to enter bad debts in Oracle Receivables? That’s your question.
Here’s my answer and Oracle Receivable’s standard functionality:
There is no such term in Receivables as Bad Debts. Receivables suggests that you “adjust” the particular transaction. Yes! Adjustments is type of write off that will cater your Bad Debt scenario.
These are setup and transactions steps for creating and entering Bad Debt Adjustments
Setup Steps:
  1. Create a Receivables Activity with Adjustment type. I think adjustment is called a receivable activity because it write offs the outstanding balance on customer.
  2. Assign Approval Limit of user to write off amounts. Obviously you cannot let anyone just write off the outstanding balance so you have to define the user’s limit.
Transaction Steps:
  1. Query the transaction to write off
  2. Adjust the transaction
Here are the details for Setups:
1.Creating Receivables Activity:
Navigation: AR>Setup>Receipt>Receivables Activity
  1. Select the Operating Unit for which the activity is being defined.
  2. Enter the Activity Name like Bad Debts Adjustments or Uncollectible Adjustemtns
  3. Enter the Description (Optional)
  4. Select the Type as Adjustments. Since it is defaulted for a new setup so move on.
  5. Let the GL Account Source as Activity GL Account
  6. Select Tax Rate Code Source as None.
  7. Enter the Expense Account in Activity GL Account.
  8. Save the Setup
2.Assign the Approval Limits:
Navigation: AR>Setup>Transaction>Approval Limits
  1. Query the User Name
  2. Select the Document Type as Adjustment
  3. Enter the Currency, in case multiple currencies are used
  4. Enter the From Amount. This value should be in negative, as the adjustment amount will be -ve of the invoice amount.
  5. Enter the To Amount. Do I really need to tell that it should be greater then From Amount?
  6. Leave Primary Check box uncheck as it does not relate to adjustment
  7. More Tabbed region also does not relate to adjustments.
  8. Save the Approval Limit
With this your Bad Debts or Transaction Write-Off is ready to work :)
The question remains about how to use this adjustment?
Hmm… Ok here goes the transaction steps :)
As I said, Query the transaction you want to write off. The Transaction should be Complete. Now do the following
  1. Go to Action Menu and select Adjust
  2. Select the Activity Name you’ve created for Bad Debt or Write-Off
  3. If the whole transaction amount needs to write-off then select Type as Invoice. If partial amount needs to be write-off then select Line.
  4. If you select Type as Line then you have to enter the negative amount to be write-off otherwise for Invoice Type the whole outstanding amount comes in automatically.
  5. You have to create the accounting of adjustment separately or run the Create Accounting Report
When you save the transaction the outstanding amount is write off and following Account Entry is created for Adjustment
Activity GL Account / Adjustment               DR
Receivables                                            CR

Comments

Popular posts from this blog

Create Accounting for a Payment generates errors 95333 and 95359

Create Accounting for a Payment generates errors 95333 and 95359 Error: 95333: A conversion rate does not exist to convert USD to AUD for the conversion type Corporate and conversion date 20-MAR-09 for line -25. Please use the Daily Rates form in General Ledger to enter a conversion rate for these currencies, conversion date and conversion type. 95359: There is no accounted amount for the subledger journal entry line. Please inform your system administrator or support representative that: The source assigned to the accounting attribute Accounted Amount has no value for extract line number 88547. Please make sure the source assigned to the accounting attribute Accounted Amount has a valid value, or assign a different source to this accounting attribute. Solution: 1. Specify a conversion rate for the currencies and conversion date mentioned in the error message 95333 Navigation under the General Ledger responsibility: Setup > Currencies > Currency Rates Manager > Daily Rates ...

Public API’s for FA Transactions

Public API’s for FA Transactions So far Oracle FA is have all the good things except the lack on reporting.Oracle FA is now offer lot of public API's that can be used to interfacing with third party or Oracle application other modules. Here are some of transaction's API's:   Additions API if you have requirement to add assets directly via PL/SQL then use  FA_ADDITION_PUB.DO_ADDITION. If you have selected the Allow CIP Assets check box on the Book Controls window of a tax book when adding CIP assets using the Additions API, the this API automatically adds those CIP assets to that tax book at the same time that they are added to the corporate book. Adjustments API you can make cost adjustments to your assetsdirectly via PL/SQL using  FA_ADJUSTMENT_PUB.DO_ADJUSTMENT  for any  process adjustment. Detail can be found in appendix H) You can use this API if you have a custom interface that makes it difficult to use with the existing Oracle Assets interfaces for adjusti...

AP Table Relation Oracle Apps

AP Table Relation Oracle Apps ORACLE PAYABLE TABLE RELATION Source Table Dependent Table Condition AP_INVOICE_LINES_ALL AIL ZX_LINES_SUMMARY ZLS AIL.invoice_id = ZLS.trx_id and  ZLS.application_id  = 200 and  ZLS.entity_code  = 'AP_INVOICES' and  ZLS.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.summary_tax_line_id = ZLS.summary_tax_line_id AP_INVOICE_LINES_ALL AIL ZX_LINES ZL AIL.invoice_id = ZL.trx_id and  ZL.application_id  = 200 and  ZL.entity_code  = 'AP_INVOICES' and  ZL.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.line_number = ZL.trx_line_number AP_INVOICE_DISTRIBUTIONS_ALL AID ZX_REC_NREC_DIST ZD AID.invoice_id = ZD.trx_id and  ZD.application_id  = 200 and  ZD.entity_code  = 'AP_INVOICES' and  ZD.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and...