Expand my Community achievements bar.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

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

Avatar

Level 2

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?

 

1 Accepted Solution

Avatar

Correct answer by
Level 2

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

View solution in original post

2 Replies

Avatar

Correct answer by
Level 2

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

Avatar

Level 2

Yes Correct, that worked.Thanks for the response.