‎2012 Dec 11 2:58 PM
Hi,
we have reports containing only form routines to be used in sapscript like
[code]
/: perform get_values in program xyz
/: using ....
/: endperform.
[/code]
The report xyz is never reported in the workloadstats as being used. The where-used-list does not give a hint neither for the report nor for the form routines where they are used in a sapscript.
How can i find out that report xyz is used in a sapscript?
//Rainer
‎2012 Dec 11 7:43 PM
Hi Rainer,
I believe there is no such tool. I've found a program developed by Andrea Olivieri that seems to be useful for you.
ps: the program of the above link uses the function READ_FORM to read the sapscript source and use REGEX to scan it.
Hope it helps.
Regards,
Christian
‎2012 Dec 11 7:43 PM
Hi Rainer,
I believe there is no such tool. I've found a program developed by Andrea Olivieri that seems to be useful for you.
ps: the program of the above link uses the function READ_FORM to read the sapscript source and use REGEX to scan it.
Hope it helps.
Regards,
Christian
‎2012 Dec 11 8:20 PM
Hi Rainer,
Despite it's indeed required very often I don't think we have this kind of search tool...
What you could do is to look for an entry in table TTXFP (where you can find all printing programs linked to forms) using your main program name as selection criteria. If you find something there it would be a good indicator (also it will give you the form name so you would be able to do some research in it).
Edgar
‎2012 Dec 12 5:28 AM
Hi Rainer,
Look for an entry in table TNAPR ( you can find processing programs assigned to output type) using your report name as selection criteria. If you find something there, it will give you the sap script name where the particular report has been used.
~Athreya