Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

customizing a report

LK1
Newcomer
0 Kudos

I would like to customize a standard report.

Is it possibile to create a new report (with a different tcode) based on a standard report like S_ALR_87013340?

I just need to remove some components of the standard report.

Best regards

LK

1 REPLY 1

raymond_giuseppi
Active Contributor
0 Kudos

Creating a new transaction for this report writer generated report will only allow yo specify an initial variant, so you would require to add some code.

The report behind the transaction was generated from report writer, there is at least one provided customer exit for the generated program, GRWTAUTH to add some authority check.

Create a project and activate the exit. Perform some debug, look for a way to access field catalog/layout from this customer exit implementation, set some fields as technical so user wont be able to display them.

If successful don't forget to add a sy-tcode filter as this exit should be called from every report writer generated report. (you could define a BAdI with filter on sy-tcode in the exit include...)