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

相关文章
|
5月前
一个查看 SAP CRM One Order 运行时生成的应用日志(Application Log)的小工具
一个查看 SAP CRM One Order 运行时生成的应用日志(Application Log)的小工具
61 0
SAP QM QS41 试图维护Catalog为3的Code Group, 报错-You need to maintain catalog 3 (Usage Decisions) in Customi
SAP QM QS41 试图维护Catalog为3的Code Group, 报错-You need to maintain catalog 3 (Usage Decisions) in Customi
SAP QM QS41 试图维护Catalog为3的Code Group, 报错-You need to maintain catalog 3 (Usage Decisions) in Customi
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 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 S4HANA 使用BP创建供应商报错 - You cannot create a vendor with grouping G001 - 对策
SAP S4HANA 使用BP创建供应商报错 - You cannot create a vendor with grouping G001 - 对策
如何利用BAPI SD_SALESDOCUMENT_CHANGE修改Sales Order的字段
假设我想修改S/4HANA里Sales Order抬头的Service Date字段SERV_DATE: 首先从数据库表VBKD里查找到SERV_DATE修改之前的值为2020年1月1日
SAP CRM 产品主数据搜索时的权限检查实现 - Product search authorization check
SAP CRM 产品主数据搜索时的权限检查实现 - Product search authorization check
SAP CRM 产品主数据搜索时的权限检查实现 - Product search authorization check
SAP CRM Product simple search的启用步骤
SAP CRM Product simple search的启用步骤
109 0
SAP CRM Product simple search的启用步骤
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,
130 0
SAP CRM服务订单的distribution lock和status profile