Thursday 31 January 2013

oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference



I tried Mirgraing it on EBS but i'm getting below error error is
:oracle.adf.mds.MetadataDefException: Unable to find component with absolute
reference = /xxidea/oracle/apps/fa/ats/webui/SplitPG



Solution:


1)Please check your below path is correct

"OA.jsp?page=/xxidea/oracle/apps/fa/ats/webui/SplitPG

2)Run Below Command in database editor and check Result

  DECLARE
  BEGIN
  jdr_utils.printdocument
  (p_document => '/xxidea/oracle/apps/fa/ats/webui/SplitPG');
  END;

  if  Result not found then Run below scripts to insert Page in Your MDS repository

  java \
oracle.jrad.tools.xml.importer.XMLImporter \
/$JAVA_TOP/xxidea/oracle/apps/fa/ats/webui/SplitPG.xml \
-username <USERNAME> \
-password <PASSWORD> \
-rootdir /$JAVA_TOP/ \
-dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=<hostname>)(PORT=<port>)) (CONNECT_DATA= (SID=<InstanceName>)))"

After Succefully Import Run Below scripts One More Time in data base editor,This time xml result should dsiplay in Database output.

 DECLARE
  BEGIN
  jdr_utils.printdocument
  (p_document => '/xxidea/oracle/apps/fa/ats/webui/SplitPG');
  END;
 

2 comments:

Attaullah said...

Thanks, very precise and short answer to the exception.

Anonymous said...

Great post.