Monthly Archives: September 2020

EBS User account unable to Autheticate in an SSO Integrated environment

Issue: —— In an EBS-SSO integrated environment – The user Account is active in EBS and the SSO account is provisioned, but still unable to authenticate from the EBS-OAM login…

Read More

Resending Failed Workflow Notifications

Check the status of WF Mailer : ———————————– SQL> select component_status from apps.fnd_svc_components where component_id = (select component_id from apps.fnd_svc_components where component_name = ‘Workflow Notification Mailer’); Find the Failed/Errored Notifications…

Read More

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