Sunday, January 22, 2012

Oracle Configurator CZInfo.jsp page

I have found CZInfo.jsp a very useful page while working with Oracle applications.
It can be accessed on any EBS instance by directly typing following URL (replace your instance host name and port number)
http://cztest.corp.mycompany.com:8001/OA_HTML/CZInfo.jsp
You will be able to see output of the page only when FND: Diagnostics (profile option) are enabled.

This page will list following:
  • System Properties
    • It will list all Java System Properties. Many times useful to check if any changes in jserv.properties (11.5.10) or in oc4j.properties (R12) have taken effect or not and to observe many other things.
    • You can observe java classpath, few environment variables, and DBC file location. Explore this more to find what more you can do :)
  • Publication Lookup
    • Useful to do publication lookup for given inventory_item_id/organization_id or product_key.
    • It will give publication_id, published model_id and ui_def_id.
  • JRAD documents for a given UI
    • If you have ever wondered that how XML pages of Configurator UI page (developed in Configurator Developer) are structured or what is stored in MDS repository, you can use this feature to find its details.
    • Enter the ui_def_id of the UI. It will display pages and templates used by the UI. You can get ui_def_id from cz_ui_defs table.
    • Sometimes very useful for debugging UI corruption issue.
  • JRAD documents by Path
    • Here you can specify any JRAD document for Oracle application and can see its XML structure. 
    • Sometimes useful to find personalization of the page and other details.
  • ARCS version of class loaded in the JVM
    • This is the most useful feature.
    • You can find any java class located on the system (in classpath). It will display the location on the class in middle-tier.
    • Sometimes your CX archive class may be present in file system and due to that, you will not be able to see changes from your archive uploaded in Configurator developer. You can check if the same class is there on the file system.
    • It will also list arcs (Oracle source control) version of the file. Many times useful and asked by Oracle Support to check the version of specific class to validate if the new fix has been applied properly on the instance.

No comments:

Post a Comment