Application Development and Automation 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: 
Read only

disable parameter field in reports

Former Member
0 Likes
771

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

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
Read only

vinod_vemuru2
Active Contributor
0 Likes
742

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.

Read only

0 Likes
742

thank you...

Read only

0 Likes
742

Thank you Vinod.

Read only

0 Likes
742

Thank you Julius

Cheers

Read only

0 Likes
742

LOL

I love SCN!!!

pk