Create report program testing fields
Sometimes I need to use a field for testing in report programs that is not available on the parameter selection screen. Use the sample code below to create a field visible for testing in your test system but invisible in the production system.
The code was written in R/3 4.0B and should work in most other versions.
select-option: s_werks for mard-werks modif id vis.
Add this code before the START-OF-SELECTION event:
at selection-screen output.
if sy-sysid = 'PRD'.
loop at screen.
check screen-group1 = 'VIS'.
screen-active = '0'.
modify screen.
endloop.
endif.
When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.
Hannah Smalltree, Editorial Director
Dig Deeper
-
People who read this also read...
This was first published in September 2003
Disclaimer:
Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.
Join the conversationComment
Share
Comments
Results
Contribute to the conversation