Crafting a Detailed SQL Query in Oracle Fusion Cloud for Seamless ERP Data Migration

SQL Query

In today’s fast-paced business environment, the ability to migrate data between different ERP systems is a critical skill. Whether upgrading systems or consolidating data across platforms, ensuring data integrity and accuracy is paramount. Recently, I had the opportunity to develop a custom SQL query in Oracle Fusion Cloud to generate a comprehensive receipt report for a client. This report is pivotal in their migration process to SAP, another leading ERP system. In this blog post, Iโ€™ll walk you through the details of this query and its business significance, with a focus on key concepts in Oracle Fusion Accounts Receivables.

Understanding the Business Requirement for crafting SQL Query

The client needed a report encapsulating detailed receipt information over a specified period. This data is essential for verifying the completeness and accuracy of transactions during the migration to SAP. The report needed to include:ย ย 

  • Receipt Number: Unique identifier for each receipt.ย ย 
  • Receipt Date: Date when the receipt was generated.ย ย 
  • Receipt Method: The method used to receive the payment.ย ย 
  • Currency: The currency in which the transaction was made.ย ย 
  • Applied Amount: Amount that has been applied to invoices.ย ย 
  • Unapplied Amount: Amount that has not been applied to any invoice.ย ย 
  • Unidentified Amount: Amount that cannot be identified against any customer or invoice.ย ย 
  • Total Amount: Sum of applied, unapplied, and unidentified amounts.ย ย 
  • Receipt Status: Current receipt status (e.g., Applied, Unapplied, Reversed).ย ย 
  • Customer Name and Account Number: Identifying customer details.ย ย 
  • Operating Unit: The business unit handling the transaction.ย ย 

Exploring a career path in SQL?
Get started with our FREE Overview of Oracle SQL Training

Key Functional Concepts in Fusion Accounts Receivables

Before diving into the query, it’s crucial to understand some key functional concepts in Oracle Fusion Accounts Receivables:ย ย 

  • Receipts: In Accounts Receivables, a receipt represents the payment received from a customer. Each receipt has a unique identifier, date, method, currency, and status.ย ย 
  • Receipt Methods: This defines how the payment was received, such as cash, check, or electronic transfer. Receipt methods are configured in the system to handle different payment channels.ย ย 
  • Receipt Statuses: Receipts can have various statuses such as ‘Applied’, ‘Unapplied’, ‘Reversed’, etc. These statuses indicate the processing state of the receipt within the financial system.ย ย 
  • Customer Accounts and Parties: Customer accounts are linked to parties (entities) within Oracle Fusion. This relationship is crucial for tracking payments and outstanding balances.ย ย 
  • Operating Units: These represent different segments or divisions within an organization. Operating units manage their transactions separately but can consolidate data for reporting purposes.

The SQL Query Explainedย ย 

Below is the SQL query developed to meet these requirements: 

SELECTย ย 
ย ย ย  arcr.receipt_number,ย 
ย ย ย  arcr.receipt_date,ย 
ย ย ย  arm.name AS receipt_method,ย 
ย ย ย  arcr.currency_code AS currency,ย 
ย ย ย  SUM(CASE WHEN araa.status = ‘UNAPP’ THEN araa.AMOUNT_APPLIED ELSE 0 END) AS unapp_amount,ย 
ย ย ย  SUM(CASE WHEN araa.status = ‘APP’ THEN araa.AMOUNT_APPLIED ELSE 0 END) AS app_amount,ย 
ย ย ย  SUM(CASE WHEN araa.status = ‘UNID’ THEN araa.AMOUNT_APPLIED ELSE 0 END) AS unid_amount,ย 
ย ย ย  SUM(araa.AMOUNT_APPLIED) AS total_amount,ย 
ย ย ย  CASE arcr.statusย 
ย ย ย ย ย ย ย  WHEN ‘APP’ THEN ‘Applied’ย 
ย ย ย ย ย ย ย  WHEN ‘NSF’ THEN ‘Non-Sufficient Funds’ย 
ย ย ย ย ย ย ย  WHEN ‘STOP’ THEN ‘Stop Payment’ย 
ย ย ย ย ย ย ย  WHEN ‘UNAPP’ THEN ‘Unapplied’ย 
ย ย ย ย ย ย ย  WHEN ‘CC_CHARGEBACK_REV’ THEN ‘Credit Card Chargeback Reversal’ย 
ย ย ย ย ย ย ย  WHEN ‘REV’ THEN ‘Reversed’ย 
ย ย ย ย ย ย ย  WHEN ‘UNID’ THEN ‘Unidentified’ย 
ย ย ย ย ย ย ย  ELSE ‘Unknown Status’ย 
ย ย ย  END AS status,ย 
ย ย ย  HCA.account_name AS customer_name,ย 
ย ย ย  HCA.account_number AS cust_account_num,ย 
ย ย ย  hou.nameย 

FROMย ย 
ย ย ย  ar_cash_receipts_all arcrย 
ย ย ย  JOIN AR_RECEIPT_METHODS arm ON arm.receipt_method_id = arcr.receipt_method_idย 
ย ย ย  LEFT JOIN HZ_CUST_ACCOUNTS HCA ON arcr.PAY_FROM_CUSTOMER = HCA.CUST_ACCOUNT_IDย 
ย ย ย  LEFT JOIN HZ_PARTIES HP ON HCA.PARTY_ID = HP.PARTY_IDย 
ย ย ย  JOIN hr_operating_units hou ON hou.ORGANIZATION_ID = arcr.org_idย 
ย ย ย  JOIN Ar_Receivable_Applications_All araa ON arcr.cash_receipt_id = araa.cash_receipt_idย 

WHEREย ย 
ย ย ย  hou.name IN (:bu_name)ย 
ย ย ย  AND arcr.receipt_date BETWEEN :start_receipt_date AND :end_receipt_dateย 

GROUP BYย ย 
ย ย ย  arcr.receipt_number,ย ย 
ย ย ย  arcr.receipt_date,ย ย 
ย ย ย  arm.name,ย ย 
ย ย ย  arcr.currency_code,ย ย 
ย ย ย  arcr.status,ย 
ย ย ย  HCA.account_name,ย 
ย ย ย  HCA.account_number,ย 
ย ย ย  hou.nameย 

Detailed Breakdown of the Query

Selecting and Aggregating Dataย 
  1. Receipt Information: The query begins by selecting crucial columns such as receipt_number, receipt_date, receipt_method, and currency. These columns provide the fundamental details of each receipt.ย 
  1. Calculating Amounts:ย 
  • Unapplied Amount: The sum of amounts where the status is ‘UNAPP’.ย 
  • Applied Amount: The sum of amounts where the status is ‘APP’.ย 
  • Unidentified Amount: The sum of amounts where the status is ‘UNID’.ย 
  • Total Amount: The sum of all applied amounts, regardless of their status.ย 

These calculations ensure that the report accurately reflects the financial state of each receipt. 

Translating Status Codesย 
  1. Receipt Status: The CASE statement translates internal status codes into user-friendly descriptions such as ‘Applied’, ‘Unapplied’, ‘Reversed’, etc. This translation is crucial for end-users to quickly understand the status of each receipt.ย 
Joining Tablesย 
  1. Joining Necessary Tables:ย 
  • ar_cash_receipts_all (arcr): Main table containing receipt details.ย 
  • AR_RECEIPT_METHODS (arm): Table with receipt methods.ย 
  • HZ_CUST_ACCOUNTS (HCA): Table with customer account information.ย 
  • HZ_PARTIES (HP): Table with party details linked to customer accounts.ย 
  • hr_operating_units (hou): Table with operating unit details.ย 
  • Ar_Receivable_Applications_All (araa): Table with applications of receipts.ย 

These joins ensure that the query pulls together all necessary data to provide a holistic view of each receipt. 

Filtering and Grouping Dataย 
  1. Filtering by Business Unit and Date Range:ย 
  • The WHERE clause filters receipts by business unit (hou.name IN (:bu_name)) and receipt date (arcr.receipt_date BETWEEN :start_receipt_date AND :end_receipt_date). This allows users to generate reports for specific time periods and business units.ย 
  1. Grouping Results:ย 
  • The GROUP BY clause groups the results by receipt number, date, method, currency, status, customer name, account number, and business unit. This grouping is essential for summarizing the data at the desired granularity.

Conclusionย 

This detailed SQL query in Oracle Fusion Cloud is a powerful tool for generating comprehensive receipt reports. These reports are critical for ensuring data integrity during the migration to another ERP system like SAP. By meticulously selecting, aggregating, and translating data, the query provides a clear and accurate representation of each receipt’s status and financial details. This level of detail not only aids in the migration process but also ensures that the client can trust the accuracy and completeness of their data in the new system. 

Understanding and utilizing key functional concepts in Oracle Fusion Accounts Receivables, such as receipts, receipt methods, and statuses, enhances the ability to create effective queries that meet business needs. By sharing this process and the query itself, I hope to provide insights and practical solutions for professionals involved in similar ERP migration projects.

Author: Kashif Baksh is a Senior Principal Consultant at Fusion Practices

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *