Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
I am trying to store data being pulled in from a JSON file into an InfoTable and I keep getting this error with one of my values from the JSON file:
Solved! Go to Solution.
Had you tried data.array[i].isbn?
Maybe better you print the JSON content to the log console:
logger.info(" JSON content "+JSON.stringify(data));
Hi! How/where is your "data" variable set? As an input to the service or as code above the screenshot?
Had you tried data.array[i].isbn?
Maybe better you print the JSON content to the log console:
logger.info(" JSON content "+JSON.stringify(data));
This worked for me! Thank you so much.