Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Hi, looking to see if anyone has experience in this.
I received JSON payload as following structure:
{
"entities": [
"SYSID": "P-8601",
"Name": "1280",
"C_Customer": {
"Name": "HAVECO"
}
},
"SYSID": "P-09301",
"Name": "1283",
],
I want to use the JSON Tool to store this data in a table. I put in "entities" as the Base Object, then referenced the data as
entities.Name
entities.C_Customer.Name
However I got nothing updated in my table.
Where am I doing incorrectly?
Thank you.
Turned out to be a typo in my REST call that prevented getting the proper data back.
So the way I referenced the data is correct.
Hi, looking to see if anyone has experience in this.
I received JSON payload as following structure:
{
"entities": [
{
"SYSID": "P-8601",
"Name": "1280",
"C_Customer": {
"Name": "HAVECO"
}
},
{
"SYSID": "P-09301",
"Name": "1283",
"C_Customer": {
"Name": "HAVECO"
}
}
],
}
I want to use the JSON Tool to store this data in a table. I put in "entities" as the Base Object, then referenced the data as
entities.Name
entities.C_Customer.Name
However I got nothing updated in my table.
Where am I doing incorrectly?
Thank you.