Book a Demo

Author Topic: w I can accomplish such transformations of tagged value notes?  (Read 2407 times)

meobeou

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
w I can accomplish such transformations of tagged value notes?
« on: January 09, 2019, 12:56:39 pm »
Hello,

I am writing transformations with EA (14.1.1427). I can do most of what I want, but I'm stuck with the transformation of taggesd values that have a memo (notes) as value.
The source for transformation is a Database view, with a SQL that defines the view stored in a tagged value as note (default EA behavior)

Here is the default transformation template I am using:

Class
{
  %TRANSFORM_REFERENCE("Class")%
  %TRANSFORM_TAGS()%
  %TRANSFORM_CURRENT()%
}

and this is the intermediate language result:

Class
{
  XRef{namespace="TA L2P View" name="Class" source="{86D4C40E-7EE4-4958-8D64-0EC3DCB37322}"}
  Tag {
 name = "viewdef"
 value = "<memo>"
}
  Tag {
 name = "EAUML::view::Owner"
 value = "dbo"
}
  version="1.0"
  scope="Public"
  multiplicity=""
  status="Proposed"
  persistence=""
  name="Glossary"
  arguments=""
  phase="1.0"
  visibility=""
  language="SQL Server 2012"
  cardinality=""
  alias=""
  complexity="1"
  stereotype="view"
  author="EXT-ESCH"
  concurrency=""
  notes=""
}

Everything is fine except the fact, that the SQL in the Memo is not transformed. Any idea how I can accomplish such transformations of tagged value notes?

Lee!