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确认安装使用了哪些产品(或模块) ,如需转载请自行联系原博主。

相关文章
|
20天前
|
API
【Azure API 管理】解决API Management添加AAD Group时遇见的 Failed to query Azure Active Directory graph due to error 错误
【Azure API 管理】解决API Management添加AAD Group时遇见的 Failed to query Azure Active Directory graph due to error 错误
|
4月前
|
监控 测试技术
SAP 电商云修改 Product Catalog Staged 版本数据后,同步到 online 版本的 UI 操作
SAP 电商云修改 Product Catalog Staged 版本数据后,同步到 online 版本的 UI 操作
|
4月前
|
存储 监控 数据库
SAP 电商云 product catalog 从 staged 到 online 两个版本之间的同步
SAP 电商云 product catalog 从 staged 到 online 两个版本之间的同步
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
SAP Cloud for Customer 2102版本如何使用Key User Tool创建扩展字段 - extension field
SAP Cloud for Customer 2102版本如何使用Key User Tool创建扩展字段 - extension field
SAP Cloud for Customer 2102版本如何使用Key User Tool创建扩展字段 - extension field
SAP CRM Product simple search的启用步骤
SAP CRM Product simple search的启用步骤
122 0
SAP CRM Product simple search的启用步骤
SAP CRM 产品主数据搜索时的权限检查实现 - Product search authorization check
SAP CRM 产品主数据搜索时的权限检查实现 - Product search authorization check
SAP CRM 产品主数据搜索时的权限检查实现 - Product search authorization check
SAP CRM服务订单的distribution lock和status profile
I would like to share an investigation done today regarding distribution lock in Service Order. My colleague observed that if there is no status profile maintained for Service Order transaction type,
SAP CRM服务订单的distribution lock和status profile
两种使用代码获得SAP CRM product sales status的办法
两种使用代码获得SAP CRM product sales status的办法
142 0
两种使用代码获得SAP CRM product sales status的办法
|
Java
查询单个门店信息接口(alipay.offline.market.shop.querydetail)java沙箱版
1.文档链接:https://docs.open.alipay.com/api_3/alipay.offline.market.shop.querydetail/ 2.作用:调用创建门店信息接口创建门店成功之后,系统商通过该接口可以查询单个门店的详细信息,包括门店基础信息,门店状态等信息 3.
543 12