Below is sample ABAP code to convert JSON data into ABAP internal table. TYPES:BEGINOFty_final,nameTYPEstring,modelTYPEstring,manufacturerTYPEstring,starship_classTYPEstring,ENDOFty_final.DATA:lv_codeTYPEi,lv_urlTYPEstring,li_clientTYPEREFTOif_http_client,lt_errorsTYPETABLEOFstring,lv_error_messag...
Converting from JSON to ABAP internal table is as simple as it can be. Again: no stupid conversion to XML step is needed. Very simple example: REPORT zjson. TYPES: BEGIN OF ty_sales_order, so_number TYPE vbeln_va, sales_org TYPE vkorg, order_date TYPE datum, END OF ty_sales_...