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: 

disable parameter field in reports

Former Member
0 Kudos

hai

while doing reports I need to disable the parameter field (i.e input field) any ways to disable this

Edited by: Julius Bussche on Sep 8, 2008 7:40 AM

5 REPLIES 5

vinod_vemuru2
Active Contributor
0 Kudos

Hi,

Check below logic.

AT SELECTION-SCREEN OUTPUT.

LOOP AT screen.

CHECK screen-name = 'your parameter name'.

screen-input = 0. " Make field input disabled.

screen-active = 0. "Field disappears from screen.

MODIFY screen.

ENDLOOP.

Always use proper subject so that ur thread wont be locked

Thanks,

Vinod.

0 Kudos

thank you...

0 Kudos

Thank you Vinod.

0 Kudos

Thank you Julius

Cheers

0 Kudos

LOL

I love SCN!!!

pk