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: 

problem with check box default value

former_member181995
Active Contributor
0 Kudos
1,743

hi,

how to make checkbox default checked in module pool sceen.

that checkbox valuse not cuming from selection-screen.

thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
332

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

Former Member
0 Kudos
333

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

PBO.

module initilizae.

module initilizae.

p_check = 'X'.

endmodule.

Thanks

Seshu

0 Kudos
332

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

0 Kudos
332

Hello Jony,

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

Hope you got it.

Thanks

Seshu

Former Member
0 Kudos
332

Hi Jony,

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

Hope this helps.

Thanks

Sanjeev

Former Member
0 Kudos
332

hi,

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

check = 'X'.

Thanks,

Sri.

Former Member
0 Kudos
332

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'.