Previous Topic: TaskNext Topic: BUS_OBJECTIVE (Business Objective)


Task

Select the locations of business assets along the X axis of the matrix BUSINESS_FUNCTION/LOCATION. Order by location of business assets as specified in the toolset.

SELECT MT.NAME, X.NAME. UX.SEQ
  FROM
  MODEL M,
  MATRIX MT,
  MATRIX_USAGE_X UX,
  BUS_LOCATION X
  WHERE
  M.NAME = 'my model name'
  AND UX.MODEL_ID = M.ID
  AND UX.MATRIX_ID = MT.ID
  AND MT.NAME = 'BUSINESS_FUNCTION/LOCATION'
  AND UX.OBJECT_ID = X.ID
ORDER BY MT.NAME, UX.SEQ;