To visualize it a bit better, assume this nonsense example:
- A simple, freestyle HTML/CSS/JS page is served via an HTTP service in ICF.
- The page was populated with data from SPFLI, i. e. an HTML table is displayed showing all the entries from the database table (including the carrid field).
- A button is implemented on the page to trigger an event.
- An entry of the HTML table is selected. Clicking the button triggers the execution of ABAP code, for example like this: The carrid value of the selected table line is passed and based on this value, some ABAP code should be executed (e.g. a SELECT on SFLIGHT/SCARR based on the passed carrid value is executed to populate another table on the page or whatever).
These are my questions:
- Is something in this direction possible at all?
- If not such a freestyle HTML/CSS/JS page, what would be the best technology to do it (UI5, Webdynpro ...) to do further research (Note: it is not meant for a "productive app", rather playing around)?
- Are there any recommendations for demos, tutorials or links especially concerning the ABAP code execution triggering and value passing?