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

default check box

Former Member
0 Likes
8,963

This question might be very easy for you ABAP gurus..I'm just trying to find out how to set a default checkbox in ABAP (the box being already checked as the selection screen shows up)

Thanks in advance.

Ol Pom

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
3,770

hi,

specify it as like this

PARAMETERS : p_func AS CHECKBOX DEFAULT 'X'.

6 REPLIES 6
Read only

Former Member
0 Likes
3,771

hi,

specify it as like this

PARAMETERS : p_func AS CHECKBOX DEFAULT 'X'.

Read only

Former Member
0 Likes
3,770

PARAMETERS P_BOX AS CHECKBOX DEFAULT 'X'.

Message was edited by:

Martin Shinks

Read only

Former Member
0 Likes
3,770

HI!

PARAMETERS: p_check AS CHECKBOX DEFAULT 'X'.

Regards

Tamá

Read only

Former Member
0 Likes
3,770

Hello,

PARAMETERS: SP_CHECK AS CHECKBOX DEFAULT 'X'.

Vasanth

Read only

0 Likes
3,770

hi ,

PARAMETERS: P_matnr as checkbox default 'X'

regards,

sudha .

Read only

Former Member
0 Likes
3,770

thanks everyone...