‎2008 Apr 03 12:57 PM
Good Morning,
I need to see where the statement
TYPE X.is used in all the system programs, functions, objects, etc...
How should i do that? Is there any tool for do it?
Best Regards,
Pedro Gaspar
‎2008 Apr 03 1:03 PM
Hi Pedro,
you can try with program RS_ABAP_SOURCE_SCAN
Give the program name
On the selection screen second block search for TYPE 'X'
‎2008 Apr 03 1:08 PM
Hi,
There are no standard tools for doing so. You will have to develop a program capable of reading the Programs/source code.
You will find the program names in TRDIR. ( search with z* or Y* for your custom ones ).
Then use SCAN or READ REPORT statements to check if these TYPE X declarations appear. ( like doing a Ctrl + F on individual programs ).
Hope it helps.