Search This Blog

Tuesday, 11 November 2025

Oracle APPS DBA - SQL query to get the print jobs from users

 Use the following query


select distinct fcr.printer, fu.user_name, 

fu.description, count(*) jobs

from apps.fnd_concurrent_requests fcr, apps.fnd_user fu

where fcr.requested_by = fu.user_id

and (fcr.printer is not null and fcr.printer not in  ('noprint','LOCAL_PRINT','LOCAL','LOCAL_PRINTTO', 'LOCAL_PREVIEW'))

group by fcr.printer, fu.user_name, fu.description;



No comments:

remove spaces from SQL script in notepad++

  Go to  Search -> Replace Select "Regular expression" under  Search mode . Use  ^\s*  for " Find what " and leave ...