zoukankan      html  css  js  c++  java
  • 如何提取SAP UI5应用的技术信息

    Suppose I need to find out the implementation of button “Create” in Customer Engagement Initiative (CEI):

    We could observe that once button is clicked, a pop up appears:

    And I have to find out how is this implemented.

    Step1 Launch the application via Chrome.

    Click F12 to open Chrome developer tool, and click “Inspect Element” button, and put the mouse onto the Create button,

    and click it. Then the html source code of this button is automatically located. However in “Event Listeners” in the right part, still I could not find information I want:

    Step2 Go to tab “Sources”, enable Event Listener Breakpoints with type = Mouse.click.

    Then switch application to debug mode by clicking “Pause” button:

    Then click the Create button, and expand the “Call Stack” tab:

    In callstack hierarchy you could see lots of framework stuff ( sap-ui-core.js ), and the highlighted entry below is just what I am looking for.

    Double click on it, and the JavaScript code to open the popup window is automatically displayed. It is implemented in js view CUAN_INI_OW_WSI.view.js:228.

    In CEI, you could also find the corresponding deployed js view in ABAP backend, using tcode SE80 to open the BSP application.

    or we can also find CUAN_INI_OW_WSI.view.js manually in Sources tab:

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    Codeforces Round #311 (Div. 2)题解
    firefox 被劫持hao123 主页
    国有航空为啥“放下身段”读春秋?
    ORACLE中常见SET指令
    最大概率法分词及性能測试
    怎样利用JDBC连接并操作Oracle数据库
    hdu5240
    代码调试过程中easy遇到的问题
    最简单的基于FFmpeg的AVDevice样例(读取摄像头)
    FPGA 功耗结构设计
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13638683.html
Copyright © 2011-2022 走看看