Posts by Santhoshkumar Subramani

FNDLOAD SYSNTAX FOR ALL APPLICATION OBJECTS IN EBS R12.2

Description: Following steps are used to upload the application objects using FNDLOAD. FNDLOAD Syntax These are the extensive list which can be done through FNDLOAD — Concurrent Programs, Executables —…

Read More

FORMS COMPILATION IN EBS R12

Description: Following steps are used to compile the forms in EBS R.12. Steps: Step 1: Login to application user in application server through winscp and go to $AU_TOP/forms/US step 2:…

Read More

FIND APEX USERS LOGIN DETAILS

Description: Following sql script is used to find the Application Express users , who all are logged in previous days or specific period (months , years) . Steps: 1.Login as…

Read More

ORA-29283: invalid file operation ORA-06512: at “SYS.UTL_FILE”, line 536 ORA-29283: invalid file operation

Description: The oracle OS user does not have the appropriate privileges on the OS directory, or if the path specified in the database does not match to an actual path,…

Read More

CREATING DATABASE SCHEDULER JOBS

Description: Scheduler jobs are the automated process handled by the database scheduler in oracle. It will run the scheduler jobs in a specific server time intervals like daily , weekly…

Read More

READ AND INSERT THE FILE NAMES FROM DIRECTORY TO DATABASE TABLE USING JAVA SOURCE

1.CREATE TABLE FOR THE FILES create global temporary table FILE_NAME ( filename varchar2(255) ) 2.CREATE JAVA SOURCE. This java is used to read the file from directory and insert the…

Read More

TERMINATE THE CONCURRENT PROGRAMS WHILE STUCKED IN A OPP (Output Post Processor) in R12.1.3

1.Find which programs are stucked in OPP using below query. set lines 200; set pages 300; SELECT a.request_id, substr(e.user_concurrent_program_name,1,80) Program,d.sid, d.serial# ,d.status,to_char(d.logon_time,’DD-MON-YY HH24:MI:SS’)logon, round(d.last_call_et/60) LCT FROM apps.fnd_concurrent_requests a, apps.fnd_concurrent_processes b,…

Read More

STEPS TO INSTALL oci-cli TOOL FOR UPLOAD FILES TO ORACLE CLOUD INFRASTRICTURE.

PYTHON: If you’re using Oracle Linux 7, you can use yum to install the CLI. sudo yum install python36-oci-cli The CLI will be installed to the Python site packages: /usr/lib/python3.6/site-packages/oci_cli…

Read More

SETTING A PROFILE FOR ENABLE DIAGNOSTICS OPTION TO A SPECIFIC USER IN R12

Below the steps for enable DIAGNOSTICS option to a specific user in R.12. 1.Login as a sysadmin user in front end. 2.In the EBS dashboard , choose SYSTEM ADMINISTRATOR Responsibility…

Read More

QUERY TO FIND THE WORKFLOW SERVICE COMPONENETS STATUS

This following query is used to fetch the status of the workflow service components. login as APPS user, SQL> desc apps.fnd_svc_components; Name Null? Type —————————————– ——– —————————- COMPONENT_ID NOT NULL…

Read More