一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表

i042416發表於2020-09-10

If you need a list of all transparent tables used in a given ABAP class ( or function module, objects which belong to a given transport request, etc ) for analysis usage, you could follow the tips below, it is very simple but efficient.

Suppose you need to scan ABAP class CL_CRM_OPPORTUNITY_IMPL to find out all transparent tables used by this class.

(1) use tcode SCI, create a new check variant:


一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


Enable “Table Names from SELECT statements” and save variant.


一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


(2) create a new inspection:


一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


Specify the class to be scanned, and load the check variant created in step one, then execute the inspection.


一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


(3) Once inspection is done, you see a green light and could get the inspection result by clicking button below:


一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


All accessed tables are listed there:


一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


Double click on each entry and the ABAP code will automatically be opened. Quite easy, isn’t it?


一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


Summary

As we know that the code inspection is done statically by scanning source code so any other tables which are accessed dynamically by dynamic SQL in the runtime will not appear in the scan result of code inspector. If you need to get the COMPLETE list of the tables involved within a given part of ABAP codes, it is recommended to use transaction code ST05, ST12 or SAT to trace the scenario in the runtime.

Further reading

(1) ABAP Code inspector is far more than a static code scanner but in my opinion a powerful weapon which is for every ABAPer worth adding it to your toolbox. For more extensive usage on it to make your life easier, please read this document  Useful tips regarding ABAP code inspector that you may not know.

(2) Besides the approach to get accessed table list introduced in this blog, there is another approach using transaction code SQF, which is also done based on static code scan. For details please read  ABAP static analysis tool SQF.

要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":

一個小技巧,快速找出一段ABAP程式碼裡訪問到的所有透明表


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2718409/,如需轉載,請註明出處,否則將追究法律責任。

相關文章