Posts by Venkatesh Balasubramanian

Script to get Project Listing

Introduction This Post illustrates the steps required to get Project Listing Query in Oracle EBS R12. Script to get Project Listing Query SELECT pt.project_id, ppa.NAME project_name, ppa.description project_description, ppa.segment1 project_number,…

Read More

Script to Import CRM Resource

Introduction This Post illustrate steps required to Import CRM Resource in Oracle EBS R12. Script to Import CRM Resource DECLARE l_jtf_person_id NUMBER; /*Assign Value*/ l_jtf_user_id NUMBER; /*Assign Value*/ l_user_name VARCHAR2…

Read More

Suppliers Report (XML)

Introduction This Post described Suppliers Report (XML) is used to review the supplier, supplier site, and supplier contact details. 1.Query Fetching Vendor Details: SELECT p.vendor_id c_vendor_id, p.segment1 c_vendor_number, p.vendor_name c_vendor_name,…

Read More

Trial Balance – Detail Report

Introduction Oracle General Ledger Trial Balance report is used to satisfy legal, statutory, and internal management reporting requirements in Portugal. There are five separate reports with a standard layout; however,…

Read More

Uninvoiced Receipts Report

Introduction Uninvoiced Receipts report is designed to provide a preview of all accrual entries that will be posted to your account in a specific month. Script to Uninvoiced Receipts Report…

Read More

Using Oracle Forms to load local files

Introduction This Post illustrates steps required to using the below code In load file “button” using “when-button-pressed” trigger.   DECLARE l_userhome VARCHAR2 (200) := webutil_clientinfo.get_system_property (‘user.home’) || ‘\Desktop’; l_filename VARCHAR2…

Read More

Vendor Ledger Report Query

Introduction This Post illustrates steps required to Vendor Ledger Report Query in Oracle EBS R12. Script to Vendor Ledger Report Query SELECT flag, vendor_num, vendor_name, vendor_site_id, vendor_site_code, state_code, project_code, transaction_type,…

Read More

Zooming: Calling One Form from another Form using Personalization

Introduction This Post illustrates steps required to Calling One Form from another Form using Personalization in Oracle EBS R12. Step 1 Open the main form you want to personalize and…

Read More

Easy to Create or Customize Interactive Reports

Introduction This Post is About to Steps for Create or Customize Interactive Reports in Oracle EBS-R12. Steps Navigate to the Welcome to dashboard. Click your name in the global area…

Read More

DYNAMIC SAMPLING

Introduction  Oracle Database introduced Dynamic Sampling to allow the optimizer to gather additional information at parse time. If database statistics were missing, stale, or insufficient to produce a good execution…

Read More