‎2006 Jun 21 7:19 AM
Hi All,
i'm in need of example code of using check boxes in dialog programming.
can anyone provide this?It would be helpful for me.
Thanks & Regards,
Anil.
‎2006 Jun 21 7:23 AM
Pl. check the below link...
http://www.allsaplinks.com/dialog_programming.html
If useful award points.
‎2006 Jun 21 7:26 AM
Hi Anil,
check the following link
http://help.sap.com/saphelp_nw04/helpdata/en/e6/83a0375b5dd003e10000009b38f8cf/content.htm
Hope it helps.
Regards,
Kinshuk
‎2006 Jun 21 7:26 AM
Hi,
Check the program
demo_dynpro_check_radio
DATA: radio1(1) TYPE c, radio2(1) TYPE c, radio3(1) TYPE c,
field1(10) TYPE c, field2(10) TYPE c, field3(10) TYPE c,
box TYPE c.
DATA: ok_code TYPE sy-ucomm,
save_ok TYPE sy-ucomm.
CALL SCREEN 100.
MODULE user_command_0100 INPUT.
save_ok = ok_code.
CLEAR ok_code.
CASE save_ok.
WHEN 'RADIO'.
IF radio1 = 'X'.
field1 = 'Selected!'.
CLEAR: field2, field3.
ELSEIF radio2 = 'X'.
field2 = 'Selected!'.
CLEAR: field1, field3.
ELSEIF radio3 = 'X'.
field3 = 'Selected!'.
CLEAR: field1, field2.
ENDIF.
WHEN 'CANCEL'.
LEAVE PROGRAM.
ENDCASE.
ENDMODULE.
Sameena
Message was edited by: sameena attarwala
‎2006 Jun 21 7:33 AM
Hi Anil ,
<b>1</b>.
For Check boxes and Radiobuttons
Check this Std Demo program SAP.
<b>demo_dynpro_check_radio.</b>
<b>2</b>.
For Demo programs on Dialog programming
Use ABAPDOCU Transaction code=>ABAP User Dialogs=>Screens=>Processing screens.
I hope that it is helpful to u .
<b>Thanks,
Venkat.O</b>
‎2006 Jul 17 9:36 AM
‎2006 Jul 17 9:50 AM
‎2006 Jul 17 10:08 AM
Hello,
Please check the transaction BIBS for sample programs for check boxes ..
Reward if helps
Thanks,
krishna