Posts by Venkatesh Balasubramanian

Send the Email in Autonomous Data Warehouse

Introduction: This Post illustrates the steps required to Send the Email in Autonomous Data Warehouse. Script to Send Email CREATE OR REPLACE PROCEDURE xx_sample_send_mail ( p_to IN VARCHAR2, p_from IN…

Read More

Query for Item with BOM Details

Introduction: This Post illustrates the steps required to Fetch Item with BOM Details. Script to Fetch the Item with BOM Details SELECT msi.segment1 item, msi.description item_description, msi.organization_id, msi.primary_unit_of_measure primary_uom, msi.item_type,…

Read More

Query to find the stuck records in Inventory Transaction

Introduction: This Post illustrates the steps required to check the stuck records in Inventory transactions. Scripts: –Unprocessed Material Transactions SELECT * FROM mtl_material_transactions_temp WHERE organization_id = (SELECT organization_id FROM apps.org_organization_definitions…

Read More

Query for Fetch the Open Purchase order Data in Oracle EBS

Introduction: This Post illustrates the steps required to fetch the Open Purchase Order Data in Oracle EBS. Script: SELECT pv.segment1 vendor_number, pv.vendor_name AS vendor_name, (SELECT location_code FROM hr_locations_all WHERE location_id…

Read More

Query for Fetch the Sales History Data in Oracle EBS

Introduction: This Post illustrates the steps required to fetch the Sales History Data in Oracle EBS.   Script: SELECT customer_number, customer_name, organization_code, order_number, line_number, sku, invoice_number, invoice_date, quantity_invoiced, unit_selling_price, (invoiced_quantity…

Read More

Change the Employee User accounts to ‘SSO’ from ‘LOCAL’

Introduction: This Post illustrates the steps required to Change the Employee User accounts to ‘SSO’ from ‘LOCAL’ in Oracle EBS . Script: DECLARE l_success BOOLEAN; CURSOR UID IS SELECT user_name,…

Read More

Purge the Employee Records using API in Oracle EBS R12

Introduction: This Post illustrates the steps required to delete the employee records in Oracle EBS HRMS Module. Script: Step 1 –Create Table create table papf_16082018 (person_id number, employee_number varchar2(10)); Step…

Read More

Query for Fetch the Invoice lines not transferred to GL in Oracle

Introduction: This Post illustrates the steps required to Fetch the Invoice lines not transferred to GL in Oracle . Sql Script: SELECT rct.trx_number invoice_number, rctl.line_number, msib.segment1, hp.party_name bill_to_customer, DECODE (rctt.TYPE,…

Read More

Query for Fetch the On Hand Quantity with Available To Transact

Introduction: This Post illustrates the steps required to On Hand Quantity with Available To Transact in Oracle EBS. Script to Fetch the On Hand Quantity with Available To Transact Step-1…

Read More

Query for AR to GL in 11i

Introduction: This Post illustrates the steps required to fetch data from AR to GL  in Oracle EBS 11i.   Script SELECT je_header_id, line_number, trx_number, item_number, customer_number, customer_name, SOURCE, CATEGORY, batch_name,…

Read More