2008 Jan 04 4:36 PM
hi,
how to make checkbox default checked in module pool sceen.
that checkbox valuse not cuming from selection-screen.
thanks.
2008 Jan 04 4:39 PM
Goto module pool program ,here use PBO - Keep the value has 'X'.
PBO.
module initilizae.
module initilizae.
p_check = 'X'.
endmodule.
Thanks
Seshu
2008 Jan 04 4:39 PM
Goto module pool program ,here use PBO - Keep the value has 'X'.
PBO.
module initilizae.
module initilizae.
p_check = 'X'.
endmodule.
Thanks
Seshu
2008 Jan 04 4:52 PM
yeah i get ur answers but how it would be check mark come on checkbox on screen.
2008 Jan 04 5:02 PM
Hello Jony,
PBO Event will trigger before screen displays ,basically PBO Act like initilization to variables ,GUI Status.
Hope you got it.
Thanks
Seshu
2008 Jan 04 4:41 PM
Hi Jony,
Set the checkbox field to 'X' in the PBO of the screen.
Hope this helps.
Thanks
Sanjeev
2008 Jan 04 4:43 PM
hi,
Go to PBO and initialize the check box to 'X'.
check = 'X'.
Thanks,
Sri.
2008 Jan 04 5:01 PM
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'.