前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SAP BSP(Business Server Page)的源代码搜索工具

SAP BSP(Business Server Page)的源代码搜索工具

作者头像
Jerry Wang
发布2020-05-06 23:27:09
6150
发布2020-05-06 23:27:09
举报

The source code scan report RS_ABAP_SOURCE_SCAN ( or transaction code CODE_SCANNER ) is a good tool for ABAPers.

In my Webclient UI development life, I would also expect that there is also a similar tool which enable the scan on html source code of ui component view, for example I want to search by keyword “ActiveXObject” to get a list of ActiveX control used in Javascript code.

Why RS_ABAP_SOURCE_SCAN could not support html source code scan

In the beginning I plan to enhance RS_ABAP_SOURCE_SCAN instead of development a new tool. All the objects( class, report, function module) which supported by this tool could have their source code read out via keyword READ REPORT.

this is not the case for handler class of ui component view. Although you could still set breakpoint on the ABAP code in view handler class and debug them,

however they are stored in a difference way than normal ABAP class /report, thus it is not possible to fetch their source code from repository via READ REPORT. Besides that you can easily observe the page editor are quite different from normal ABAP Editor for class/report/function module, which means if I enhance RS_ABAP_SOURCE_SCAN, I also need to enhance the navigation logic after I double click on the result list to see the source code in ABAP editor.

So finally I decide to develop a tool on my own.

Develop a tool to allow scan on UI component view source code

There are only two parameters for code scan: Search keyword and UI component whose BSP view’s html source you expect to scan.

You could specify multiple UI component via selection options:

The search result is displayed in ALV. Double click on result row,

and it will automatically navigate to the BSP view editor with the very line which contains the search keyword being highlighted as below:

This tool has simple input and output UI, but it has already 100% fulfilled my html source code scan requirement.

How to make this tool run on your laptop

create a new Z report and copy the source code from attached text file. This tool contains the following parts:

(1) an executable report zbsp_code_view (2) a global class ZCL_BSP_CODE_TOOL (3) a function module ZCALL_EDITOR. Of course you should also have a function group, in my case it is named as zbspeditor. (4) a new screen 0101 used in FM ZCALL_EDITOR. Flow logic:

Element list:

layout design:

Feel free to adapt this tool to meet your own requirement

本文参与?腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-05-04 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客?前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与?腾讯云自媒体分享计划? ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Why RS_ABAP_SOURCE_SCAN could not support html source code scan
  • Develop a tool to allow scan on UI component view source code
  • How to make this tool run on your laptop
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
http://www.vxiaotou.com