Application Development 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: 

GuiXT: Checkbox associated with ABAP variable

former_member185943
Participant
0 Kudos

Hi!

I am trying to do the following:

1. Create the new variable in ABAP program:

DATA: g_checkbox TYPE char1.

2. Create checkbox field on screen by using GuiXT:

CheckBox (3,43) "Check" Name="G_CHECKBOX"

3. Use the variable in ABAP program, e.g.

IF g_checkbox = 'X'.
"... do something
ENDIF.

I did it all, but my checbox at the screen doesn't seem to be associated with ABAP variable. Whatever I enter at the screen, the G_CHECKBOX variable remains empty.

How can I do this?

Thanks!

KR,

Igor

1 REPLY 1

former_member185943
Participant
0 Kudos

I've got confirmation that what I want is not possible with free version of GuiXT.

Igor