Posts

EBS R12 QUERY TO GET ALL INVENTORY ORGANIZATIONS IN OPERATING UNITS

QUERY TO GET ALL INVENTORY ORGANIZATIONS IN OPERATING UNITS SELECT  LGR.NAME "Ledger"           ,   XLE.NAME "Legal Entity"           ,   HOU1.NAME "Operating Unit"        ,   HOU.NAME "Inventory Organization" ,   hou.organization_id,   MP.ORGANIZATION_CODE "Organization Code"    FROM HR_ALL_ORGANIZATION_UNITS HOU ,   HR_ORGANIZATION_INFORMATION HOI1    ,   HR_ORGANIZATION_INFORMATION HOI2    ,   MTL_PARAMETERS MP                   ,   GL_LEDGERS LGR                      ,   XLE_ENTITY_PROFILES XLE             ...

POPULATE A FIELD BASED ON OTHER FIELD using APPLICATION COMPOSER ( Groovy script )

Image
AIM : Update a field based on other fields or any other logic using server scripts  Groovy script  Groovyscript In this doc shows thw same using a exmple to SUPPLY CHAIN EXECUTION > QUALITY MANAGEMENT > QUALITY ISSUE In picture Based on yellow field we need to fill the green field Step 1 : Create a sandbox and enter into Applicaiton Composer Step 2 : Application Composer > ERP SCM cloud > Quality Issue > Server Scripts > Field Trigger script : if (QualityTypeName == "Non-Conformance - Work in Process") {     setAttribute("Workflow", 300000031016276) } else if (QualityTypeName == "Non-Conformance - Receiving") {     setAttribute("Workflow", 300000031016275) } you can find this workflow ids using report or using GET rest api /fscmRestApi/resources/11.13.18.05/qualityIssues/ Click save and close and publish the sand box.

DOCUMENTATION ON SANDBOX and PERSONALIZATION

Image
DOCUMENTATION ON SANDBOX PERSONALIZATION Prepared by VAMSI GOVATHOTI ROLE: ORACLE APPS TECHNICAL CONSULTANT Contents A) What is a Sandbox? 2 B) Purpose of Sandboxes 2 C) Key Features 2 D) Why Use Sandboxes? 2 1. How to Customize (Enable or Disable) the Fields/Components in the Sandbox 6 2. How to Enable Direct Access from User Interface (UI) to the Desired Destination using an URL 9 3. How to Create “Role Based Access control” to particular Fields / Components 13 4. ‘More Tasks’ Tab to be renamed to 'Create' on Purchase Requisitions page. 18 5. By using Application Composer making field required in sand box 23 6. Personalization by using application composer 27 A) By using Application Composer creating new field in sand box 27 B) Creating of currency field with fixed choice list 32 C) Creating of currency field with dynamic choice list. 36 7. Creating a button in sand box 40 8. Creating a global function for runtime mess...