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: 

checkbox and radio button

Former Member
0 Kudos

Hello friends,

Can I make a check box non-editable.

Can i make a radiobutton in no-display.

If yes how?

Thanks,

Raju.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

You can use 'Loop at screen' and use the 'Active' / 'Input' parameter to change it as per your requirements.

Regards,

Nirmal

PS :

Overview of all SCREEN fields:

Field Length Type Meaning

SCREEN-NAME 30 C Field name

SCREEN-GROUP1 3 C Analysis of

Modif group 1

SCREEN-GROUP2 3 C Analysis of

Modif group 2

SCREEN-GROUP3 3 C Analysis of

Modif group 3

SCREEN-GROUP4 3 C Analysis of

Modif group 4

SCREEN-REQUIRED 1 C Required field

SCREEN-INPUT 1 C Field ready for input

SCREEN-OUTPUT 1 C Displayed field

SCREEN-INTENSIFIED 1 C Field intensified

SCREEN-INVISIBLE 1 C Field invisible

SCREEN-LENGTH 1 X Field length

SCREEN-ACTIVE 1 C Field active

2 REPLIES 2

Former Member
0 Kudos

Hi,

You can use 'Loop at screen' and use the 'Active' / 'Input' parameter to change it as per your requirements.

Regards,

Nirmal

PS :

Overview of all SCREEN fields:

Field Length Type Meaning

SCREEN-NAME 30 C Field name

SCREEN-GROUP1 3 C Analysis of

Modif group 1

SCREEN-GROUP2 3 C Analysis of

Modif group 2

SCREEN-GROUP3 3 C Analysis of

Modif group 3

SCREEN-GROUP4 3 C Analysis of

Modif group 4

SCREEN-REQUIRED 1 C Required field

SCREEN-INPUT 1 C Field ready for input

SCREEN-OUTPUT 1 C Displayed field

SCREEN-INTENSIFIED 1 C Field intensified

SCREEN-INVISIBLE 1 C Field invisible

SCREEN-LENGTH 1 X Field length

SCREEN-ACTIVE 1 C Field active

Former Member
0 Kudos

Hi,

Try this

AT SELECTION-SCREEN OUTPUT.

loop at screen.

if screen-name eq <checkbox nam>.

screen-active = 0.

endif.

modify screen.

endloop.

You can check the variouse field in screen tablee to contol other properties.

Regards

Sudhir Atluru

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Feb 7, 2008 2:28 PM