Code: Alles auswählen.
...
create object behaviour_left.
effect = cl_dragdrop=>move + cl_dragdrop=>copy.
call method behaviour_left->add
exporting
flavor = 'Drop'
dragsrc = 'X'
droptarget = ' '
effect = effect.
call method editor1->set_dragdrop
exporting dragdrop = behaviour_left.
create object behaviour_right.
effect = cl_dragdrop=>move + cl_dragdrop=>copy.
call method behaviour_right->add
exporting
flavor = 'Drop'
dragsrc = ' '
droptarget = 'X'
effect = effect.
... Code: Alles auswählen.
call method cl_gui_cfw=>dispatch.