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

problem with check box default value

Former Member
0 Likes
2,761

hi,

how to make checkbox default checked in module pool sceen.

that checkbox valuse not cuming from selection-screen.

thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,350

Goto module pool program ,here use PBO - Keep the value has 'X'.

PBO.

module initilizae.

module initilizae.

p_check = 'X'.

endmodule.

Thanks

Seshu

6 REPLIES 6
Read only

Former Member
0 Likes
1,351

Goto module pool program ,here use PBO - Keep the value has 'X'.

PBO.

module initilizae.

module initilizae.

p_check = 'X'.

endmodule.

Thanks

Seshu

Read only

0 Likes
1,350

yeah i get ur answers but how it would be check mark come on checkbox on screen.

Read only

0 Likes
1,350

Hello Jony,

PBO Event will trigger before screen displays ,basically PBO Act like initilization to variables ,GUI Status.

Hope you got it.

Thanks

Seshu

Read only

Former Member
0 Likes
1,350

Hi Jony,

Set the checkbox field to 'X' in the PBO of the screen.

Hope this helps.

Thanks

Sanjeev

Read only

Former Member
0 Likes
1,350

hi,

Go to PBO and initialize the check box to 'X'.

check = 'X'.

Thanks,

Sri.

Read only

Former Member
0 Likes
1,350

Hi Jony,

First declare a variable v_check in program and activate

DATA : V_CHECK.

then in the screen, click on the Get from program button on screen and select V_CHECK and drag it on screen.

Now in PBO ,

V_CHECK = 'X'.