cancel
Showing results for 
Search instead for 
Did you mean: 

Drag and Drop in FPM from List to Form GUIBBs

Former Member
0 Kudos

Hi Gurus,

I am trying drag and drop functionality in FPM between two GUIBBS(List & Form). I have set drag and drag properties in Feeder classes of both GUIBBs, when I tried with LIst & List GUIBBS it is working fine. But not with different GUIBBS like Form and List.

Can any suggest me where I am going wrong.

Code for enabling Drag & Drop


*** In Drag Source Feeder class get_defination()

 ls_dnd_def-type = 'DRAG'.
  ls_dnd_def-tags = 'TEST*'.
  ls_dnd_def-scope = 'G'.
  ls_dnd_def-enabled = 'X'.
  append ls_dnd_def TO et_dnd_definition.

*** In Drop Target Feeder class get_defination()

 ls_dnd_description-tags  = 'TEST*'.
  ls_dnd_description-scope = 'G'.
  ls_dnd_description-enabled = 'X'.
  ls_dnd_description-type = 'DROP'.
  INSERT ls_dnd_description INTO TABLE et_dnd_definition.

Thanks & Regards

Venkat

Accepted Solutions (0)

Answers (3)

Answers (3)

alfredo_gomezripoll
Participant
0 Kudos

I have the same problema and I´m not able to find the reason.

The solution to get the event raised has been to copy configurations from wd standard appl FPM_TEST_DND_FORM and use my own Z feeder class : all  seems to work perfectly , but , if I try to do it from scratch the event  FPM_DROP_COMPLETED it´s not raised .

I´ve compared both configurations/class ( the one that I´ve done from scratch  that it doesn´t raise the event and the one that I´ve adapted copying from standard that it raises perfectly  the event) and I haven´t  seen any difference (maybe I haven´t found) .

Former Member
0 Kudos

did you check in debugger on dropping dragged data FPM_DROP_COMPLELTED event execute.

Former Member
0 Kudos

I cant find any problem from your coding.