Entries by Oracle ERP Apps Guide

, , , , , ,

How to find INV Onhand Quantity at given date?

–The query inputs the Item ID, organization ID and date.  SELECT   SUM (target_qty), item_id    FROM   (  SELECT   moqv.subinventory_code subinv,                       moqv.inventory_item_id item_id,                       SUM (transaction_quantity) target_qty                […]

, , , , , , ,

Cursors In Oracle

CURSOR : A cursors is a pointer used to fetch rows from a result set Two types of classification s:I.STATIC CURSOR S: Static : Normal cursor (implicit or explicit)Cursor attributes  for implicit and explicit:%FOUND – records fetched successfully%NOTFOUND – no records fetched%ROWCOUNT – Number of records fetched%ISOPEN – returns TRUE if cursor is opena. Implicit : Cannot be […]

, , , , , ,

Submitting Concurrent Program From Back end / PL SQL

Pre-requisites : Step1: Data Definition and Template to be created Step2: Concurrent program needs to be created Steps To Create the PL/SQL package: 1. Initialize the  Session Specific variable using fnd_global.APPS_INITIALIZE 2. Set The BI publisher report layout Before submitting the concurrent program 3. Submit the Concurrent Program Code: (Tested in R12.1.1 ) DECLARE l_user_id […]