Archive for the ‘Oracle EBS Application’ Category

REP-0004: Warning: Unable to open user preference file

May 3rd, 2026, posted in Oracle EBS Application
Share

appdev@ctssd $ pwd
/u01/erpapp/10.1.2/tools/admin
appdev@ctssd $ cp prefs.ora /export/home/apptest
Share

REP-0004: Warning: Unable to open user preference file while running reports.

May 2nd, 2026, posted in Oracle EBS Application
Share
Error :

Enter Password:
REP-0004: Warning: Unable to open user preference file.
REP-0069: Internal error
REP-57054: In-process job terminated:Finished successfully but output is voided
Cause :

Windows
ORACLE_HOME\CAUPREFS.ORA (user preferences)
ORACLE_HOME\CAGPREFS.ORA (global preferences)
UNIX
your_home_directory/prefs.ora (user preferences)
$ORACLE_HOME/tools/admin/prefs.ora (global preferences)

Share

For Oracle Database Configure Swap Area

January 25th, 2026, posted in Oracle, Oracle EBS Application
Share
If RAM = 1024MB to 2048Mb
then 1.5 times RAM
elseif RAM > 2048MB and 8192MB
then .75 times RAM
  • 1. IF RMAM is 2GB then it lies in 1st condition as per formula then swap area should be 2*1.5= 3 GB
  • 2. If RAM is 4 GB then it lies in 2nd condition as per formula then swap area should be  4 *1 = 4 GB.
  • 3. IF RMAN is 10 GB then it lies in 3rd condition as per formula then swap are should be 10*0.75=7.5 GB
Share

Oracle EBS R12.1.1 File Locations

November 16th, 2025, posted in Oracle EBS Application
Share
Share

Find All Scheduled Requests in EBS R12.2.10

October 5th, 2025, posted in Concurrent Request, Oracle Queries
Share

SELECT request_id id,
nvl(meaning, 'UNKNOWN') status,
user_concurrent_program_name pname,
to_char(request_date, 'DD-MON-RR HH24:MI:SS') submitd,
to_char(requested_start_date, 'DD-MON-RR HH24:MI:SS') requestd
FROM fnd_concurrent_requests fcr,
fnd_lookups fl,
fnd_concurrent_programs_vl fcpv
WHERE phase_code = 'P'
AND (fcr.requested_start_date >= sysdate OR
status_code = 'P')
AND LOOKUP_TYPE = 'CP_STATUS_CODE'
AND lookup_code = status_code
AND fcr.concurrent_program_id = fcpv.concurrent_program_id
AND fcr.program_application_id = fcpv.application_id
ORDER BY request_date, request_id;





Share