Issue description: when you are launching Fiori UI, there is some Javascript error occurred. The UI stops the rendering, you could only see blank screen. However, in Chrome development tool it shows the error occurs in the framework library file, in my example it is UIComponent.js. How to react to this situation?

如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

put the mouse onto the framework library, and it is available to click:

如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

Then you will be automatically navigated to the exact line of source code in framework library file where the exception is raised. Set a breakpoint there.

如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

Then breakpoint is triggered. However, from the callstack in the right part, you still cannot figure out what is wrong in application – there is no stack related to application – all of them are framework stuff.

如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

Don’t worry! Type “e” in Watch tab to inspect the content of exception object e. In its attribute stack there is (…). Single click it:

如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

And this callstack containing Fiori application “crm_mycal” is just what I am looking for. The exact line number 862 in the file NewAppointment.controller.js is also mentioned there.

如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

Now I can immediately find out the root cause: in line 861, the responsible employee of current log on user is returned and stored in variable oEmpResp. If current user didn’t assign any responsible employee, oEmpesp will be initial and the subsequent access in line 862 will lead to the error “Cannot read property ‘PartnerNo’ of undefined” mentioned in the beginning of this blog.

如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
如何找到SAP UI5里阻止页面继续加载的出问题的具体代码位置

相关文章:

  • 2022-01-13
  • 2021-08-30
  • 2021-06-03
  • 2022-12-23
  • 2021-09-02
  • 2021-09-07
  • 2022-02-09
  • 2021-12-17
猜你喜欢
  • 2021-10-29
  • 2021-09-08
  • 2022-12-23
  • 2021-07-06
  • 2021-04-21
  • 2022-12-23
相关资源
相似解决方案