Skip to main content
Question

Need help in one desktop plan

  • April 1, 2026
  • 3 replies
  • 28 views

Forum|alt.badge.img

Hello ​@Lisa Kovalskaia 

 

I need to bulk update the description of the rules which include a hyperlink. When I used ONE Desktop Plan it displays as string rather than link. Can you please help?

3 replies

Lisa Kovalskaia
Ataccamer
Forum|alt.badge.img+3

Hi ​@kpillai, it sounds like you perhaps had the hyperlink in a plan text input format. For reach text formatting to be rendered correctly, you’ll need to provide the input as a JSON e.g.

[
  {
    "type": "paragraph",
    "children": [
      { "text": "Documentation: " },
      {
        "type": "a",
        "url": "https://docs.example.com/connectors/new",
        "children": [
          { "text": "New connector" }
        ]
      }
    ]
  }
]

 

You can automate that in your ONE Desktop plan - I’m attaching an example that uses some keywords to determine the structure of the description and wrap it into a JSON syntax. This example is rather dated, you might instead feed your source file to an AI agent and give it the above JSON as an example to have the descriptions prepared for import into Ataccama.

Hope this helps! Let me know if you have any follow up questions!

Lisa


Forum|alt.badge.img
  • Author
  • Data Pioneer
  • April 3, 2026

thanks. I want to display the string as hyperlink in UI. But I am getting syntax:
 

 


Lisa Kovalskaia
Ataccamer
Forum|alt.badge.img+3

@kpillai this looks like an issue with the expression format in one of the columns/fields of the plan. The error suggests that this field expects you to reference a column name, but you’ve provided a string of characters into it. This string doesn’t match any column name in the plan so it complains about “unknown column”.

Would you mind sharing your plan? I won’t be able to run it since I don’t have access to your Ataccama environment, but it will be easier to discuss specifics. Thanks in advance!