本文介绍了在包中的所有程序中搜索 MODIFY 语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想搜索所有程序 - 在一个包内 - 使用该语句:

I want to search all programs - within a package - that use the statement:

从 wa_itab_xyz 修改 itab_xyz

modify itab_xyz from wa_itab_xyz

最好使用 itab* 等通配符搜索字符串对于一系列 itab_(values),如 itab_abc、itab_def、itab_ghi等等.

如何在 SAP ABAP 中执行此操作?

How do i do this in SAP ABAP?

下面是一个包中所有程序的截图,可以从中搜索.

Below is a screenshot of all programs within a package one can search from.

推荐答案

一种可能是使用程序 RS_ABAP_SOURCE_SCAN.可以按包限制选择,也可以在代码中输入特定字符串进行搜索.

One possibility would be to use program RS_ABAP_SOURCE_SCAN.You can restrict the selection by package and you can also enter a specific string to search for in the code.

这篇关于在包中的所有程序中搜索 MODIFY 语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 06:39