首页 > Web开发 > 详细

SAP WebClient UI的白屏问题分析

时间:2020-08-26 22:35:58      阅读:89      评论:0      收藏:0      [点我收藏+]

Issue

Once product hyperlink in sales order line item is clicked, it is expected that product overview page is opened.

技术分享图片

Instead the empty screen is displayed now:

技术分享图片

Most efficient way to find root cause
Follow this blog how to persist the UI exception so you can view them later to register the custom error log in your system.

(1) Specify the error date and user name who has encountered with this error:

技术分享图片

From the query result you can find the exact code where this error is raised:

技术分享图片

(2) Set breakpoint on mentioned included: ICOM_PRCAT_IL_REL_APIF02.
The error is raised in the context of partner determination procedure related logic.

技术分享图片

COM_PRODUCT_GET_PARTNER_PROC returns with error code 3: data_inconsistent.

技术分享图片

Due to this error, we move to the ELSE branch where the MESSAGE ID statement is executed. Since we are currently in WebClient UI runtime environment as a result exception is raised with error message “Message E COM_HIERARCHY 000 cannot be processed in plugin mode HTTPS”.

技术分享图片

(3) The root cause of sy-subrc 3 ( data_inconsistent ) error is a corrupted product category assigned to the given product.

技术分享图片

This product category does not have any hierarchy ID assigned so function module COM_HIERARCHY_READ raises the exception data_inconsistent.

技术分享图片

Once I remove this erroneous category from product, the product overview page could be opened again.

技术分享图片

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
技术分享图片

SAP WebClient UI的白屏问题分析

原文:https://www.cnblogs.com/sap-jerry/p/13568345.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!