... and I've used the data passed in the IT_KEY_TAB to fill the mandatory fields of my helpdesk webservice.
At the end of the method I'm filling the incident ID so I can show it to the ...
I'm playing lately with TFS web services in ABAP and as I'm lazy guy I wanted to make my life a bit easier while working with the JSON results.
There is already a nice class /UI2/CL_JSON available which ...
...
data: g_filename type string.
data: g_path type string.
"get path
parameters: p_path type string obligatory.
at selection-screen on value-request for p_path.
cl_gui_frontend_services=>file_save_dialog( ...
... is not the best solution, especially when working on slow connections via VPN or similar. So with help there goes cl_gui_frontend_services=>execute. This method allows you to run every file on PC directly ...