Skip to main content
Solved

Document Extraction: Update document data not working

  • October 6, 2025
  • 3 replies
  • 20 views

Forum|alt.badge.img+5

Hi there,

I’m facing an issue while trying to update the extracted document data using Document Automation.
I verified the update using the “Get Node Value” action, and it shows the updated value. However, when I download the CSV, it still displays the old value.

Any help would be greatly appreciated.


 Variable used in “Document Extraction: Get document data”


 

Variable used in “Json: Start session”


 

variables used in “Document Extraction: Update document data”

 

Best answer by Aaron.Gleason

@Dipti 2765 Updating the node value only updates the JSON in the buffer -- not the original file.

If you want to update the document data, you have to use a Json: Get node value with “$$” as the node path, and save the value to a String. Then you can update the document data with that String value.

3 replies

Aaron.Gleason
Automation Anywhere Team
Forum|alt.badge.img+14
  • Automation Anywhere Team
  • Answer
  • October 6, 2025

@Dipti 2765 Updating the node value only updates the JSON in the buffer -- not the original file.

If you want to update the document data, you have to use a Json: Get node value with “$$” as the node path, and save the value to a String. Then you can update the document data with that String value.


Forum|alt.badge.img+5
  • Author
  • October 7, 2025

@Dipti 2765 Updating the node value only updates the JSON in the buffer -- not the original file.

If you want to update the document data, you have to use a Json: Get node value with “$$” as the node path, and save the value to a String. Then you can update the document data with that String value.

Thank you ​@Aaron.Gleason , I already tried this but no luck. Let me try one more time.


Forum|alt.badge.img+5
  • Author
  • October 7, 2025

@Dipti 2765 Updating the node value only updates the JSON in the buffer -- not the original file.

If you want to update the document data, you have to use a Json: Get node value with “$$” as the node path, and save the value to a String. Then you can update the document data with that String value.

@Aaron.Gleason suggested step worked, Thanks