Hi there, I have an integration, the returned result is as above.
How do I extract the information for "MATERIALDOCUMENT"? in the "data" tag of integration in my process model, I add a custom output as "AC!Result.body.BAPI_GOODSMVT_CREATE.Response.MATERIALDOCUMENT", save to a process variable. but nothing is saved in this process variable. anyone can help on this?
Thanks.
Discussion posts and replies are publicly visible
result.body gives you the body as dictionary. You can do an index or just direct mapping.In this example it will give you the dictionary: BAPI_GOODSMVT_CREATE_Response.From there you can index or map to lower values.
I think the issue here is that there is a dot in one of the field names.
AC!Result.body.BAPI_GOODSMVT_CREATE.Response.MATERIALDOCUMENT
Try this
AC!Result.body.'BAPI_GOODSMVT_CREATE.Response'.MATERIALDOCUMENT
it's working, thank you very much.