‎2007 Jul 26 11:36 AM
Hai ALl
I have one senario .in i need to create check boxes in functionmodule . for that i have to write the code.
could any body suggest me.
how to do this senario in FM
thanks and regards,
Chaitanya
‎2007 Jul 26 11:50 AM
Hi..
Checkbox mean you want to Pass a Parameter with the Values True ('X') OR False ( ' ' ) .
You can Pass a Single Char field and Compare the Values 'X' or ' ' .
<b>Reward if Helpful.</b>
‎2007 Jul 26 12:15 PM
Use data Element : GLX_XFELD ( General Checkbox ) for checkbox..
For check box... if box is checked then value is 'X' else
space.
but in function module it doesn;t matter whether u use data element for checkbox... u can use char type variable of length 1.
and inside code u can check..
v_char1 = 'X'. : it means checkbox is checked.
v_char1 = space " it means checkbox not checked.
Reward if useful
regards
Prax