Book a Demo

Author Topic: ElementClass for ItemConveyed/InformationFlow  (Read 4059 times)

CThompson

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile
ElementClass for ItemConveyed/InformationFlow
« on: June 17, 2014, 09:21:12 am »
Hi,

I am new to EA and SysML so this question might seem amateur.

I have a report template that extracts the elements in a package as well as the connectors between those elements. In addition to the connectors I want to extract the information flow on each connector. I was able to do this with EA's guidelines; however, I was not able to extract the tagged values of the information flow. I am now creating a SQL query to pull the tagged values of the information flow but I can't find how information flows are classed to complete the query. Can anyone help please?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: ElementClass for ItemConveyed/InformationFlow
« Reply #1 on: June 17, 2014, 07:07:46 pm »
There are a couple of useful threads about retrieving the information flow. Try the search button top left.

q.

CThompson

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile
Re: ElementClass for ItemConveyed/InformationFlow
« Reply #2 on: June 18, 2014, 12:13:47 am »
Hi,

I searched the Forum before posting and I found only 3 threads related to information flows none of which answered my question. I will try searching other terms to see if anything pops up. Thank you.

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: ElementClass for ItemConveyed/InformationFlow
« Reply #3 on: June 18, 2014, 01:00:16 am »
I searched for "information flow" (with a space in between) and  (all posts). That returned a lot of results.

q.

CThompson

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile
Re: ElementClass for ItemConveyed/InformationFlow
« Reply #4 on: June 18, 2014, 02:24:13 am »
Thank you  :). Found it!

CThompson

  • EA Novice
  • *
  • Posts: 7
  • Karma: +0/-0
    • View Profile
Re: ElementClass for ItemConveyed/InformationFlow
« Reply #5 on: June 18, 2014, 04:22:55 am »
Hi again,

I came up with this SQL Query and I was wondering if you could review it for me. This is my first SQL and I don't have any resourec on SQL besides what comes up on the search engine( Google,Bing) and on this Forum.

SQL Query:
SELECT t_taggedvalue.name As Name , t_taggedvalue.value As Value
FROM t_package, t_xref xCon, t_xref xFlow t_connector c, t_connector flow, t_objectproperties
GROUP BY t_taggedvalue.name

Does this query look like it is capable of extracting the tagged values of an information flow?

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: ElementClass for ItemConveyed/InformationFlow
« Reply #6 on: June 18, 2014, 04:32:46 am »
Well, on a first sight: t_taggedvalue is not what you might think. Try t_objectproperties (and have a look in my Inside book).

And most obvious you need to connect t_objectproperties and t_object via the object_id.

q.
« Last Edit: June 18, 2014, 04:34:19 am by qwerty »