zcl_mdp_json icon indicating copy to clipboard operation
zcl_mdp_json copied to clipboard

MDP ABAP JSON library that can generate and parse any JSON string.

Results 10 zcl_mdp_json issues
Sort by recently updated
recently updated
newest added

I add this issue from Alejandro's comment on the blog post: https://blogs.sap.com/2016/07/03/an-open-source-abap-json-library-zclmdpjson/comment-page-1/#comment-543786 --- Hello again, Fatih Pense another issue and quick fix for method ZCL_MDP_JSON_DESERIALIZER=>DESERIALIZE (you could document it on...

I add this issue from Alejandro's comment on the blog post: https://blogs.sap.com/2016/07/03/an-open-source-abap-json-library-zclmdpjson/comment-page-1/#comment-538562 --- Just found another bug which generates a dump: Escaped double quotes. This JSON is valid, can be...

I add this issue from Alejandro's comment on the blog post: https://blogs.sap.com/2016/07/03/an-open-source-abap-json-library-zclmdpjson/comment-page-1/#comment-538562 --- Error on this method (which doesn’t seem to have impact, maybe in performance with large data it...

I have following JSON: `{ "resultItems": [ { "nodeId": 1, "errorCode": "ER8104", "errorMessage": "Invalid parameter \"Plugin\".", "values": [], "files": [] } ] }` In method zcl_mdp_json_deserializer->deserialize_object() exception zcx_mdp_json_invalid is raised...

Hi, when I try to deserialize a json string, I receive a "raise exception" on method DESERIALIZE_OBJECT at line 35 when it try to find regex '`\A\s*"([^:]*)"\s*:`' My json seems...

As reported by Yves, JSON causing the error ``` { "SI": [{"zzreference": "1/53201/2018/000001", "land1": null, "fwbas": "40.10", "wears": "EUR", "stcteg": null, "kursf": "1", "wmwst": "0.00", "stras": null, "zztrans": "INSTOR", "pstlz":...

bug

This library is very flexible. However there are times I only need to serialize an row with many columns. Right now I use field-symbol to read column names. This functionality...

enhancement

In SAP 7.30 importing classes is harder. Because there is no source-view button to see whole class in se24. Maybe we can add a helper program to install classes.

enhancement

Abap code in object_get_child_node and array_get_child_node methods uses new features that are not supported in SAP 7.30. This can be solved using "read table" function: ![pastedimage](https://cloud.githubusercontent.com/assets/918653/17935081/c24b344e-6a22-11e6-9f13-9d224e1a354e.png) object_get_child_node: ``` ABAP DATA...

bug