Quantcast
Channel: Cloud Training Program
Viewing all articles
Browse latest Browse all 1906

[Solved] APP-FND-01564: ORACLE error 8102 in request

$
0
0

This post covers one issue that our trainee faced while running Purge Concurrent Request and/or Manager Data.

This Data program ‘Purge Concurrent Request and/or Manager Data‘ to purge:

  • Request log files,
  • Concurrent manager log files,
  • Report output files from product directories maintained by the operating system and Application Object Library tables

If you are looking for Concurrent Managers : Overview & Concepts Oracle EBS R12 for Apps DBAs then check here

To resolve this error ‘APP-FND-01564: ORACLE error 8102 in request’ while running Purge Concurrent Request and/or Manager Data.” follow the steps mentioned below:

Issue 

While running Purge Concurrent Request and/or Manager Data as

1. Login as SYSADMIN -> Responsibility System Administrator

2. Run Concurrent Program “Purge Concurrent Request and/or Manager Data”

Purge Concurrent Manager

Error in logs: 

$APPLCSF/$APPLLOG

+—————————————————————————+
Application Object Library: Version : 12.0.0

Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.

FNDCPPUR module: Purge Concurrent Request and/or Manager Data
+—————————————————————————+

Current system time is 27-DEC-2018 10:38:00

+—————————————————————————+

APP-FND-01564: ORACLE error 8102 in request

Cause: request failed due to ORA-08102: index key not found, obj# 34563, file 25, block 24555 (2).

The SQL statement being executed at the time of the error was: and was executed from the file.
+—————————————————————————+
Start of log messages from FND_FILE
+—————————————————————————+
+—————————————————————————+
End of log messages from FND_FILE
+—————————————————————————+

+—————————————————————————+
Executing request completion options…

Finished executing request completion options.

+—————————————————————————+
Concurrent request completed
Current system time is 27-DEC-2018 10:40:47

Cause

The issue is caused by a mismatch between the key(s) stored in the index and the values stored in the table, because of corruption.

Solution

Please run the following steps

SQL> select owner,object_name, object_type from dba_objects where object_id=34563;

OWNER OBJECT_NAME OBJECT_TYPE
—————————— ———————————-
APPLSYS FND_CONCURRENT_REQUESTS_N1 INDEX

SQL> Analyze Index APPLSYS.FND_CONCURRENT_REQUESTS_N1 validate structure online;

Index analyzed.

SQL> select dbms_metadata.get_ddl(‘INDEX’,’FND_CONCURRENT_REQUESTS_N1′,’APPLSYS’) from dual;

DBMS_METADATA.GET_DDL(‘INDEX’,’FND_CONCURRENT_REQUESTS_N1′,’APPLSYS’)
——————————————————————————–

CREATE INDEX “APPLSYS”.”FND_CONCURRENT_REQUESTS_N1″ ON “APPLSYS”.”FND_CONCURR

SQL> select TABLE_NAME,INDEX_NAME,COLUMN_NAME,COLUMN_POSITION from dba_ind_columns where TABLE_NAME in (‘FND_CONCURRENT_REQUESTS’) order by 1,2,COLUMN_POSITION;

ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N1 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N2 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N3 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N4 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N5 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N6 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N7 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N8 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N9 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N10 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_N11 rebuild online;
ALTER INDEX APPLSYS.FND_CONCURRENT_REQUESTS_U1 rebuild online;

Related/Further Readings

This post is from our Oracle Apps DBA (R12.2) Training, in which we cover  Architecture & Changes in Oracle E-Business Suite R12.2, Staging & Installation, File System & Important Files in R12.2, Start/Stop, Patching, AD Administration, Cloning, Concurrent Managers, AutoConfig, Password Management, and Troubleshooting and much more

Next Tasks For You

Did you get a chance to download 6 Concurrent Manager CM Must Read Docs For Oracle Apps DBAs EBS R12? If not, then get it now by clicking on the link below.

Get Docs for Oracle Apps DBA

The post [Solved] APP-FND-01564: ORACLE error 8102 in request appeared first on Oracle Trainings.


Viewing all articles
Browse latest Browse all 1906

Trending Articles