Concurrent Request Queries HISTORY OF CONCURRENT REQUEST (PROGRAM WISE) SELECT DISTINCT t.user_concurrent_program_name, r.request_id, To_char(r.actual_start_date, ‘dd-mm-yy hh24:mi:ss’) “Started at”, To_char(r.actual_completion_date, ‘dd-mm-yy hh24:mi:ss’) “Completed at”, Decode(r.phase_code, ‘C’, ‘Completed’, ‘I’, ‘Inactive’, ‘P ‘, ‘Pending’, ‘R’, ‘Running’, ‘NA’) phasecode, Decode(r.status_code, ‘A’, ‘Waiting’, ‘B’, ‘Resuming’, ‘C’, ‘Normal’, ‘D’, ‘Cancelled’, ‘E’, ‘Error’, ‘F’, ‘Scheduled’, ‘G’, ‘Warning’, ‘H’, ‘On Hold’, ‘I’, ‘Normal’, ‘M’, ‘No Manager’, …
Read More »Oracle Forms Session Queries
Oracle Forms Session Queries
Read More »Query to Monitor RMAN Backups
SELECT Count(*) FROM v$backup_async_io WHERE status = ‘IN PROGRESS’;
Read More »Query to Check Oracle Database Growth
This Query Calculate the Datafile Growth on a Yearly Basis
Read More »Find the Org and Organization mappings
SELECT ood.organization_code Warehouse_code, ood.organization_name Warehouse, ood.operating_unit OU_ID, hou.name OU_Name, hle.name Legal_entity, hle.set_of_books_id, gsob.name SOB FROM org_organization_definitions ood, hr_operating_units hou, hr_legal_entities hle, gl_sets_of_books gsob WHERE …
Read More »How to add System administrator responsibility from backend
Syntax: fnd_user_pkg.addresp(username => v_user_name ,resp_app => ‘SYSADMIN’ ,resp_key => ‘SYSTEM_ADMINISTRATOR’ ,security_group => ‘STANDARD’ ,description => ‘Auto Assignment’ ,start_date => SYSDATE – 10 ,end_date => SYSDATE + 1000); Usage: BEGIN …
Read More »Query to find workflow services are up and running?
Query to find workflow services are up and running?
Read More »How to check online FND_USERS in Oracle Apps
How to check online FND_USERS in Oracle EBS R12
Read More »