2019年5月16日 星期四

Oracle EBS: ISP登入問題處理 (java.lang.NullPointerException)

這狀況(java.lang.NullPointerException)遇過多次, 看到文章提出說明及解法, 先記下來.

select *
  from icx_custom_menu_entries
 where 1=1
   and function_type = 'XXX'
   and user_id = ?user_id
  
delete from icx_custom_menu_entries
 where function_type = 'XXX'
   and user_id = ?user_id
以後再發生時試試.


--
關鍵錯誤, 應是登入後主頁異常, 而且是出在Favorities那段:
java.lang.NullPointerException
at oracle.apps.fnd.framework.favorites.webui.ICXFavoritesPortletCO.processRequest (ICXFavoritesPortletCO.java:239)


ICX_CUSTOM_MENU_ENTRIES有一筆 FUNCTION TYPE=XXX 的怪資料.


Ref:
1.处理用户登录ERP系统报错空指针(java.lang.NullPointerException)的问题
https://blog.csdn.net/samt007/article/details/90064383

2019年5月14日 星期二

Oracle EBS: API for OM transaction type

問題: 是否有API可新增或修改OM transaction type?

解答: 沒有. 但可直接update OE_TRANSACTION_TYPES_ALL, 沒有相關table需處理


Ref:
1.API's For OM Transaction Type (Doc ID 1627972.1)

2.Is There Any Standard API To Updated OE_TRANSACTION_TYPES_ALL (Sales Order Type Or Transaction Types)? (Doc ID 2505078.1)