Transferring data from 'Rich Text Field' to AEM Assets using Workfront Fusion | Community
Skip to main content
New Participant
August 16, 2023
Solved

Transferring data from 'Rich Text Field' to AEM Assets using Workfront Fusion

  • August 16, 2023
  • 1 reply
  • 779 views

Hi All,

I am trying to send 'Rich text field' data from Workfront custom form to AEM Assets using Workfront Scenario.

Can anyone provide solution or workaround for this?

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by undu82

I think that the main issue that you are facing is that Rich text fields are in a JSON format like this one:

{ "blocks": [ { "key": "", "text": "Project...", "type": "unstyled", "depth": 0, "inlineStyleRanges": [], "entityRanges": [], "data": {} } ], "entityMap": {} }

 

You will need to read the field, map it using the JSON functionality, and then you will be able to use all the text you need

Hope it helps

1 reply

undu82
undu82Accepted solution
New Participant
August 21, 2023

I think that the main issue that you are facing is that Rich text fields are in a JSON format like this one:

{ "blocks": [ { "key": "", "text": "Project...", "type": "unstyled", "depth": 0, "inlineStyleRanges": [], "entityRanges": [], "data": {} } ], "entityMap": {} }

 

You will need to read the field, map it using the JSON functionality, and then you will be able to use all the text you need

Hope it helps

v-ellurAuthor
New Participant
August 24, 2023

Yes Correct, that worked.Thanks for the response.