ERP Cloud General SQL Queries

Oracle ERP Cloud – SQL Query to get Organization Structure along with Legal Entity, Business Unit, Ledger and Flex Values

/******************************************************************* *PURPOSE: SQL Query to get Org Structure along with LE, BU, Ledger and Flex * *AUTHOR: Shailender Thallam * *******************************************************************/ SELECT horg.name enterprise ,… Read More »Oracle ERP Cloud – SQL Query to get Organization Structure along with Legal Entity, Business Unit, Ledger and Flex Values

Oracle ERP Cloud – SQL Query to get Organization Structure along with Legal Entity, Business Unit and Ledger

/******************************************************************* *PURPOSE: SQL Query to get Organization Structure along with LE, BU and Ledger * *AUTHOR: Shailender Thallam * *******************************************************************/ SELECT horg.name enterprise , horg.organization_id… Read More »Oracle ERP Cloud – SQL Query to get Organization Structure along with Legal Entity, Business Unit and Ledger

SQL Query to Fetch BPM Approval Groups Information

/******************************************************************* *PURPOSE: SQL Query to extract BPM Approval Groups Information * *AUTHOR: Shailender Thallam * *******************************************************************/ SELECT fwg.approvalgroupid ,fwg.approvalgroupname, fwgm.member, fwgm.type, fwgm.sequence FROM fa_fusion_soainfra.wfapprovalgroups fwg,… Read More »SQL Query to Fetch BPM Approval Groups Information

SQL Query to list All User Roles in ERP Cloud

SELECT * FROM (SELECT user_info.user_login, user_info.user_id, user_roles.role_name, user_info.creation_date, user_info.first_name, user_info.last_name, user_info.location_code, user_info.location_name, user_info.town, user_info.country, user_info.department, user_info.username, user_info.active_flag FROM (SELECT DISTINCT pp.creation_date creation_date, ppf.first_name first_name, ppf.last_name… Read More »SQL Query to list All User Roles in ERP Cloud