Yearly Archives: 2020

Customer Site Usage Import Error Query – FBDI Oracle Fusion

The below query extracts the error details along with interface attributes of Customer Site Usages import using FBDI in Fusion Applications. SELECT distinct err.message_name ERROR_MESSAGE ,msg.message_text MESSAGE_TEXT ,site_use.* FROM hz_imp_errors…

Read More

Customer Site Import Error Query – FBDI Oracle Fusion

The below query extracts the error details along with interface attributes of Customer Sites import using FBDI in Fusion Applications. SELECT distinct err.message_name ERROR_MESSAGE ,msg.message_text MESSAGE_TEXT ,site.* FROM hz_imp_errors err…

Read More

Customer Contact Points Import Error Query – FBDI Oracle Fusion

The below query extracts the error details along with interface attributes of Customer Contact Points import using FBDI in Fusion Applications. SELECT distinct err.message_name ERROR_MESSAGE ,msg.message_text MESSAGE_TEXT ,cpt.* FROM hz_imp_errors…

Read More

Netting Agreements Details Table

This is the table where all the netting agreement would be storing.   Script: select agreement_name, agreement_id from apps.fun_net_agreements_all;

Read More

API to Check the AP invoice Accounting status

This API is used to check the Accounting status of AP invoices.   Script: DECODE(apps.AP_INVOICES_PKG.GET_POSTING_STATUS( aia.invoice_id ), ‘P’, ‘Partial’, ‘N’, ‘Unaccounted’, ‘Y’, ‘Accounted’);

Read More

Customer Account Import Error Query – FBDI

The below query extracts the error details along with interface attributes of Customer Account import using FBDI in Fusion Applications. SELECT distinct err.message_name ERROR_MESSAGE ,msg.message_text MESSAGE_TEXT ,acc.* FROM hz_imp_errors err…

Read More

Query to Extract GST TAX Type Details Extraction

This Query is used to extract all the TAX Type that are available in the system, Especially used when Migrating the data and reporting purpose.   Script: SELECT ‘GST’ “Tax…

Read More

AR Invoice Image Upload Using SOAP Request – Oracle Fusion

This blog contains sample payload to upload an image file in AR invoice attachments in Oracle Fusion Applications. During fusion implementation, we might come across a client requirement to upload…

Read More

Supplier Contact Import Using FBDI – Oracle Fusion

This blog describes the step by step process of Supplier Contacts migration in Fusion Application using File Based Data Import. Using this process we can create Contact of Suppliers and…

Read More

Script to Find Lower Threshold Tax slab Vendors Registered Details

This Query is useful to fetch the vendor details that are having certificates for lower Tax Deduction rates or Exceptional Tax Deduction case vendors.   Script: SELECT vendor_name, pan_no, org_tan_num,…

Read More