200 likes | 343 Views
Integration between HTML 5 Drag & Drop and SAP ABAP HTTP ICF Services. Alessandro Spadoni & Patrizia Rossi October 8th, 2011. Overview.
E N D
Integration betweenHTML 5 Drag & Drop and SAP ABAP HTTP ICF Services Alessandro Spadoni & Patrizia Rossi October8th, 2011
Overview Html 5 has the ability to create drag & dropevents (DnD). The spec defines an event-based mechanism, JavaScript API, and additional markup for declaring that just about any type of element be draggable on a page.
Drag & Dropevents There are number of events which are fired during various stages of the DnDoperation: • Dragstart
Drag & Dropevents There are number of events which are fired during various stages of the DnDoperation: • Dragstart • Drag • Dragenter
Drag & Dropevents There are number of events which are fired during various stages of the DnDoperation: • Dragstart • Drag • Dragenter • Dragover • Dragleave
Drag & Dropevents There are number of events which are fired during various stages of the DnDoperation: • Dragstart • Drag • Dragenter • Dragover • Dragleave • Drop
Drag & Dropevents There are number of events which are fired during various stages of the DnDoperation: • Dragstart • Drag • Dragenter • Dragover • Dragleave • Drop • Dragend
Integration DnD with Sap – Part I Next slide shows a first example of integrationbetweenHtml 5 and Sap. Given a draggableelement of type <table>, we can export his contents (DOM innerHTML) in excel format by calling a Sap SICF Service synchronously submitting an HTML form via POST method. SAP Service parses HTML code as XML using class CL_IXML and our custom class ZCL_HTML_TABLEPARSER. HTTP Response will return a binary Excel as Attachment.
Integration DnD with Sap – Part II Next slide shows a second example of integration. Dragging an AIRLINE image in a target area: On Drop event we can do an AJAX request to Abap SICF Service. Response is a JSON Object containing SFlightsData.
Additional Information Sources W3C Specification: http://dev.w3.org/html5/spec/dnd.html HTML5rocks: http://www.html5rocks.com/en/tutorials/dnd/basics/
ThankYou! Alessandro Spadoni Sap Netweaver Consultant Technis Blu S.R.L. alessandro.spadoni@technisblu.it @alespad Patrizia Rossi Sap Netweaver Consultant Technis Blu S.R.L. patrizia.rossi@technisblu.it @patty_1982