Showing posts with label Oracle apps. Show all posts
Showing posts with label Oracle apps. Show all posts

Thursday, July 15, 2021

How to know the version of a Form in Oracle Apps?

 We can know the version of a Form in 2 methods.

Method1: 

Login to application and open the form for which we want to know the version.

Go to Help > About Oracle Applications as shown below








Scroll down to the Current Form section to get the current form version.







Method 2:

Login to UNIX server and go to forms top i.e. $AU_TOP/forms/US and execute the below command

adident Header formname.fmb

Ex: adident Header OEXOEORD.fmb




Wednesday, December 11, 2013

Oracle Inventory Queries

Query to find valid categories in a Category Set:

SELECT mc.concatenated_segments,mc.description
  FROM apps.mtl_category_set_valid_cats mcsvc
      ,apps.mtl_category_sets mcs
      ,apps.mtl_categories_kfv mc
 WHERE mcsvc.category_set_id = mcs.category_set_id
   AND mc.category_id = mcsvc.category_id
   AND mcs.category_set_name = '<category_set_name>';

Query to find manufacturer part number for an item:

SELECT mm.manufacturer_name,
       mp.mfg_part_num,
       mp.description,
       msi.segment1 inv_item,
       msi.description item_desc,
       mp.approval_status
  FROM apps.mtl_system_items msi,
       apps.mtl_mfg_part_numbers mp,
       apps.mtl_manufacturers mm,
       apps.org_organization_definitions o
WHERE mm.manufacturer_id = mp.manufacturer_id
  AND mp.inventory_item_id = msi.inventory_item_id
  AND mp.organization_id   = msi.organization_id
  AND msi.segment1 = '<item_number>'
  AND msi.organization_id = o.organization_id
  AND o.organization_code = '<org_code>';