Application Development and Automation 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: 
Read only

check boxes in dialog programming

Former Member
0 Likes
657

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.

7 REPLIES 7
Read only

Former Member
0 Likes
631

Pl. check the below link...

http://www.allsaplinks.com/dialog_programming.html

If useful award points.

Read only

Former Member
0 Likes
631

Hi Anil,

check the following link

http://help.sap.com/saphelp_nw04/helpdata/en/e6/83a0375b5dd003e10000009b38f8cf/content.htm

Hope it helps.

Regards,

Kinshuk

Read only

Former Member
0 Likes
631

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

Read only

venkat_o
Active Contributor
0 Likes
631

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>

Read only

Former Member
0 Likes
631

dummy

Read only

Former Member
0 Likes
631

Hi,

Check this Demo Program <b>RSDEMO02</b>

Regards

vijay

Read only

Former Member
0 Likes
631

Hello,

Please check the transaction BIBS for sample programs for check boxes ..

Reward if helps

Thanks,

krishna