2007 Dec 04 1:44 PM
Hi
There is a check box as a parameter in my program
If that checkbox is selected i have to pass a variable "S" in a local variable.
Please provide me the coding
Thanks in advance
Regards
2007 Dec 04 2:00 PM
Hi,
A simple statement.
If chkbox = 'X'.
l_var = 'S'.
endif.
U can write this in ur code.
Regards,
Subbu
Hi
There is a check box as a parameter in my program
If that checkbox is selected i have to pass a variable "S" in a local variable.
Please provide me the coding
Thanks in advance
Regards
2007 Dec 04 2:00 PM
Hi,
A simple statement.
If chkbox = 'X'.
l_var = 'S'.
endif.
U can write this in ur code.
Regards,
Subbu
2007 Dec 04 2:52 PM
Hi,
Please use the below code.
clear:v_variable.
If p_checkbox = 'X'.
v_variable = 'S'.
endif.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |