Expand my Community achievements bar.

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