EBS Technical

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

Query for Open Work Order

Introduction: This Post illustrates the steps required to Fetch Open work orders in Oracle EBS. Query to Fetch the Open Work Orders   SELECT DISTINCT a.job, a.item item, a.item_description, a.product_category,…

Read More

Query for Open sales Order

Introduction: This Post illustrates the steps required to Fetch Open sales orders in Oracle EBS. Script to Fetch the Open sales Orders   SELECT customer_number, customer_name, organization_code, sku, request_date, schedule_ship_date,…

Read More

Program To Change the Item Cost Groups

Introduction  This Post illustrate steps required to Change the Item Cost Groups in Oracle EBS. Script to Change the Item Cost Groups DECLARE p_item VARCHAR2; p_organization_id NUMBER; p_subinventory VARCHAR2; p_locater…

Read More

API To Create Bank Account Details in Oracle EBS-R12

Introduction This Post illustrate steps required to import bank account details of the suppliers in Oracle EBS R12. Script to import Bank account details for suppliers. PROCEDURE create_banks_accounts (p_change_type VARCHAR2)…

Read More

Query for Lease Expired But Not Terminated

Introduction: This Post illustrates the steps required to Fetch Leases which are Expired but not terminated in Oracle EBS R12. Script to Leases Expired but not terminated SELECT GCC.segment4  SOL_ID…

Read More

Covert to Operating Unit Timezone

Below is the function to get current operating unit Timezone. FUNCTION convert_to_ou_tz(p_date DATE, p_org_id NUMBER DEFAULT fnd_global.org_id) RETURN DATE IS l_timezone VARCHAR2(50); l_new_date DATE; BEGIN SELECT attribute8 INTO l_timezone FROM…

Read More

How to find out correct version of Jdeveloper

You can find correct jdeveloper version using following link. https://support.oracle.com/portal/ Search as Jdev with OA Extension.  

Read More

Remove Entire column in RTF Template

By using following tag we can remove entire column in RTF. <?if@column:ORG_ID!=XXX?>Sales Order/Cust PO<?end if?>

Read More