How to Find the Self Service Related File Location and Versions (文档 ID 781385.1)

In this Document

Goal
  Solution

Applies to:

Oracle Self-Service Human Resources - Version 11.5.10.2 to 12.1.3 [Release 11.5.10 to 12.1]

Oracle Talent Management - Version 11.5.10.2 to 12.1.2 [Release 11.5.10 to 12.1]

Oracle Performance Management - Version 11.5.10.2 to 12.1.3 [Release 11.5.10 to 12.1]

Information in this document applies to any platform.

***Checked for relevance on 20-FEB-2013***

Goal

How to Find the Self Service Related File Location and Versions?

Solution

Review the Following for an Example of How to Find the Self Service Related File Location and Versions

Let us take for example the following file name:      UpdatePMPageButtonBarCO.java file

  1. Navigate to $JAVA_TOP
  2. Do a find command by starting with a back slash
  3. Important: You will search for .class and not .java
    \

    > find . -name UpdatePMPageButtonBarCO.class





    The output will be like this:

    ./oracle/apps/per/wpm/perfmgmtplans/webui/UpdatePMPageButtonBarCO.class
  4. After Then you need to grep it's Header to get the .java version
    \

    > strings -a \

    > ./oracle/apps/per/wpm/perfmgmtplans/webui/UpdatePMPageButtonBarCO.class \

    > | grep Header





    The output would be like this:

    Q$Header: UpdatePMPageButtonBarCO.java 115.8 2008/04/10 13:14:43 rvagvala noship $


  5. There is one more way to get the file version:
    Click on Diagnostics Link on top of the page >

    Show Pool Monitor >

    Click on AMs >

    Versions >





    In the Class Name field pass: oracle.apps.per.wpm.perfmgmtplans.webui.UpdatePMPageButtonBarCO

    and then click on 'Go'
  6. Sometimes you would like to know which patch delivered which version of a specific file, for that you can use the following example:
    select distinct app_short_name,b.bug_number,

    version,f.filename,

    to_char(prb.creation_date,'dd-mon-yyyy, hh24:mi:ss') Patch_date

    from

    ad_file_versions v,

    ad_files f,

    ad_patch_run_bug_actions prba,

    ad_patch_run_bugs prb,

    ad_bugs b

    where

    v.file_id=f.file_id

    and f.file_id=prba.file_id

    and prba.patch_run_bug_id = prb.patch_run_bug_id

    and prb.bug_id=b.bug_id

    and prba.patch_file_version_id=v.file_version_id

    and f.filename='UpdatePMPageButtonBarCO.class'



    The output will list each of the patches which updated the file version.

How to Find the Self Service Related File Location and Versions的更多相关文章

  1. node-webkit教程(10)Platform Service之File dialogs

    node-webkit教程(10)Platform Service之File dialogs 文/玄魂 目录 node-webkit教程(10)Platform Service之File dialog ...

  2. Log file location for Oracle E-Business Suite R12

    Log file location in Oracle E-Business Suite R12 - Apache, OC4J and OPMN: $LOG_HOME/ora/10.1.3/Apach ...

  3. IDEA中新建Module时Module name、Content root、Module file location的含义

    如下图测试: 最开始默认情况下,Content root.Module file location两行,最末尾的数据跟Module name是相同的. 现在对三行数据,强制进行不同的命名,Finish ...

  4. [ERROR] Can't find error-message file '/data/mysql/share/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.

    1. MySQL5.7.21启动时报错: [ERROR] Can't find error-message file '/data/mysql/3307/share/errmsg.sys'. Chec ...

  5. Lotus Notes Error: your mail file cannot be located. use file location manage location to ensure that your mail file is specified correctly

    在notes客户端中,当我们切换到另一个ID的时候,通过程序发送邮件,会报错:

  6. ubuntu18.04 安装hadoop 2.7.3+hive 2.3.4

    1. 安装hadoop 详细请参见本人的另外一片博文<Hadoop 2.7.3 分布式集群安装> 2. 下载hive 2.3.4 解压文件到/opt/software -bin.tar.g ...

  7. Centos 7.6 安装selenium+firefox+google chrome(支持xshell运行)

    1. 查看Linux 版本 [root@penguin selenium]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) ...

  8. Systemd: Service File Examples

    大多数Linux发行版使用 systemd作为系统服务管理工具. systemctl是systemd的主要命令,用于管理控制服务. 这篇文章中将介绍如何创建允许你使用systemctl命令的sysyt ...

  9. Virtual Machine Definition File 2.2

    Virtual Machine Definition File 2.2 http://archives.opennebula.org/documentation:archives:rel2.2:tem ...

随机推荐

  1. Gradle学习之构建java与web项目

    一.使用Gradle的java插件构建Java项目 1)Gradle插件包含了若干个接口定义和已有的任务项,语法结构:apply plugin:'插件名' ,此处我们定义插件 apply plugin ...

  2. c语言的第三次作业

    (一)改错题 计算f(x)的值:输入实数x,计算并输出下列分段函数f(x)的值,输出时保留1位小数. 输入输出样例1: Enterr x: 10.0 f(10.0) = 0.1 输入输出样例2: En ...

  3. c语言程序第2次作业

    (一)改错题 1.输出带框文字:在屏幕上输出以下3行信息. 错误信息1:{{uploading-image-560144.png(uploading...)} 错误原因:stdio误写为stido 错 ...

  4. jquery 数组操作 $.unique() $.inArray()

    1.去除重复 $.unique() $.unique() 去掉重复的元素 注意 : 执行unique之前,要先调用sort对数组的内容进行排序. <script src="http:/ ...

  5. Missing URI template variable 'XXXX' for method parameter of type String

    原因:就是spring的controller上的@RequestMapping的实参和方法里面的形参名字不一致 方法:改成一样就可. ps.还能用绑定的方法,不建议,因为太麻烦了 @RequestMa ...

  6. JAVA GC垃圾收集器的分析

    本篇文章主要介绍了"JAVA GC垃圾收集器的分析",主要涉及到JAVA GC垃圾收集器的分析方面的内容,对于JAVA GC垃圾收集器的分析感兴趣的同学可以参考一下.       ...

  7. Linux的哲学思想

    1.一切皆文件:2.单一目的的小程序:3.组合小程序完成复杂任务:4.文本文件保存配置信息:5.尽量避免捕获用户接口:6.提供机制,而非策略. 说到底Linux的哲学思想在于方便和更好的管理后台,不同 ...

  8. MarkDown语法学习

    功能性需求 输入密码 输入账号 多少度 输入 多少~~@~~度 sdsd 多少度 D是多少啊 [百度]http://www.baidu.com 百度 版本 内容 时间 v0. 需求描述 2018-4- ...

  9. 关于 minor allele frequency(次等位基因频率)的理解

    引用自NCBI的概念(https://www.ncbi.nlm.nih.gov/projects/SNP/docs/rs_attributes.html#gmaf) Global minor alle ...

  10. mysql 常见语句

    事务 默认是开启了autocommit,可以通过show variables like 'autocommit';查看. 如果临时需要取消autocommit,可以通过START TRANSACTIO ...