EBS R12: 通过FND_PRODUCT_INSTALLATIONS中字段STATUS确认安装使用了哪些产品(或模块)

简介:

EBS R12.1.3   

我们可以通过表  FND_PRODUCT_INSTALLATIONS 中的  STATUS 字段来确认产品是否有安装并使用 (其实在rapid install的时候产品都会
被安装,只是一部分没有licensed,  没有被激活  ), 查询STATUS 可以得到如下的几个状态 : 
 
I - Installed (完全安装且是licensed了的,因为默认情况下,所有的products都会被installed, 但不是都被licensed) 
S - Shared (product is a Share install, 表示作为共享的产品而安装的,当然也是licensed的)
N - Not Installed (产品被安装了但是没有licensed)
L - Custom, 之所以是L, 应该表示本地化(localization),客户化的意思 
 
"Installed" means it is already licensed through OAM, while "Not Installed" indicates that the product is installed 
but not yet licensed (by default, all products are installed, but not all of them are licensed). So, it is somehow 
like the "I Agree" button.  
比如  OAFM JVM 是给Map Viewer applications、oracle Transport Agent XML transactions、和web services用的。
我们不知道是否要开启OAFM JVM ,  因为我们不知道这些产品是否在被使用。 那么我们就可以通过查询上表来 
确认是否在使用这些功能或产品 。  

如果在系统中没有用到域服务、运输规划、XML Gateway、web Services,那么就没有必要启动OAFM JVM。我
们可以disabled OAFM .

查询OAFM是否被使用的语句 (not a complete list, doesn’t include web services):

select fa.APPLICATION_SHORT_NAME, fpi.PATCH_LEVEL, DECODE(fpi.STATUS,'I','Installed',
  'S','Shared','N', 'Inactive', fpi.STATUS) Status , fpi.DB_STATUS   from fnd_product_installations fpi,FND_APPLICATION fa
  where fpi.APPLICATION_ID in (   select APPLICATION_ID from FND_APPLICATION 
                                   where APPLICATION_SHORT_NAME in ('CSKF','MST','ECX'))
      and fa.APPLICATION_ID=fpi.APPLICATION_ID;

本文转自ITPUB博客tolywang的博客,原文链接:EBS R12: 通过FND_PRODUCT_INSTALLATIONS中字段STATUS确认安装使用了哪些产品(或模块) ,如需转载请自行联系原博主。

相关文章
|
22天前
|
监控 关系型数据库 MySQL
|
6月前
|
开发者
【Azure Logic App】中国区标准版本的逻辑应用(Standard Logic App)无法查看历史执行记录的解决之道
【Azure Logic App】中国区标准版本的逻辑应用(Standard Logic App)无法查看历史执行记录的解决之道
|
6月前
|
存储 开发框架 监控
【Azure Logic App】添加 Storage Account 来提升 Logic App 的性能
【Azure Logic App】添加 Storage Account 来提升 Logic App 的性能
|
6月前
|
安全 API 网络架构
【Azure Logic App】使用 Easy Auth 在标准逻辑应用(Standard Logic App)中触发工作流
【Azure Logic App】使用 Easy Auth 在标准逻辑应用(Standard Logic App)中触发工作流
|
6月前
|
存储 NoSQL API
【Azure 存储服务】Python模块(azure.cosmosdb.table)直接对表存储(Storage Account Table)做操作示例
【Azure 存储服务】Python模块(azure.cosmosdb.table)直接对表存储(Storage Account Table)做操作示例
SAP WM中阶LT06对物料做上架报错 -Definition of totals level is missing for storage type 004 -
SAP WM中阶LT06对物料做上架报错 -Definition of totals level is missing for storage type 004 -
SAP WM中阶LT06对物料做上架报错 -Definition of totals level is missing for storage type 004 -
SAP WM中阶之存储类型上架策略I(Adding to existing stock)
SAP WM中阶之存储类型上架策略I(Adding to existing stock)
SAP WM中阶之存储类型上架策略I(Adding to existing stock)
SAP QM 创建ROS维护检验工序,系统报错:Work center NMDC_QA plant NMDC does not exist for task list type S
SAP QM 创建ROS维护检验工序,系统报错:Work center NMDC_QA plant NMDC does not exist for task list type S
SAP QM 创建ROS维护检验工序,系统报错:Work center NMDC_QA plant NMDC does not exist for task list type S
SAP WM Storage Type配置界面里的Addn to Stock
SAP WM Storage Type配置界面里的Addn to Stock
SAP WM Storage Type配置界面里的Addn to Stock
SAP RETAIL MM42进入商品的销售视图系统提示: No basic purchase price relevant to pricing found with schema RM0000
SAP RETAIL MM42进入商品的销售视图系统提示: No basic purchase price relevant to pricing found with schema RM0000
SAP RETAIL MM42进入商品的销售视图系统提示: No basic purchase price relevant to pricing found with schema RM0000

热门文章

最新文章