Monthly Archives: September 2020

Oracle Learning Management – Training History report

The sample query can be used to extract the Training history report for an employee in Oracle OLM(Learning Management) Query : Oracle Learning Management – Training History report SELECT full_name,…

Read More

Oracle PMS : Employee KRA (Objectives & competencies) report query

The below sample query can be used to extract the objectives , competencies for an employee in Oracle EBS PMS Query: KRA Report (Objectives & Competencies) for an person id,…

Read More

Employee Absence History Query – Oracle EBS

The below sample query can be used to extract the employee absence history in Oracle EBS. Query: Absence history for an person id, if person id is not given on…

Read More

How to delete the XML Publisher report templates and data definitions

XML Publisher report data definitions and data template definitions codes names are unique in nature, if you want to delete the defined templates and definitions you can use the below…

Read More

How to create Payroll Assignment Set using Oracle API

The sample script is used to create an assignment set using an API. You can create an assignment from the assignment set creation window in Oracle but you will not…

Read More

How to delete an element entries using Oracle API

There are scenarios where we are need to delete the element entries created. Here is sample script which can be used to delete(i.e purge, Date track delete mode as ‘ZAP’)…

Read More

Inventory Cycle Count Report

Introduction: This Post illustrates the steps required to fetch the Inventory Cycle Count Report. Script to fetch the Inventory Cycle Count Details SELECT TO_CHAR (cce.creation_date, ‘DD-MON-YYYY’) creation_date, mp.organization_code org, cch.cycle_count_header_name…

Read More

Account Alias Issue Using API

Introduction: This Post illustrates the steps required to Process the Account alias issue Using API. Script DECLARE l_transaction_interface_id NUMBER; l_trx_type_id NUMBER; l_lot_control_code VARCHAR2 (500); l_serial_number_control_code VARCHAR2 (500); l_return_status VARCHAR2 (10);…

Read More

Get Item Available to Transact Quantity

Introduction: This Post illustrates the steps required to get the Item Available to Transact Quantity in Inventory using API. Script FUNCTION xx_item_availble_to_transact ( p_inventory_item_id NUMBER, p_organization_id NUMBER, p_subinventory_code VARCHAR2, p_locater…

Read More

Examples of Partition Methods and Keys for Oracle EBS Tables

This is not an exhaustive list, just an example of some of partitioning designs that may work well for some customers. There are many other examples that are not covered…

Read More