Is there a possibility to create a custom version-entity with versions and release notes and bring the latest / active version from that entity to the UI (through use of model-variable perhaps)? We would like to show it in left menu or under documentation.
Best Answer
C
Cédric BLANC
said
about 2 years ago
You can build a Dashboard App on the welcome page that shows a list of datalocations with their deployed model version and associated description, as well as in a menu in each app that can use a Dashboard Parameter to filter on the appropriate datalocation from the same dashboard.
The query in Dashboard Builder looks like this:
select distinct dl.name as data_location, max (me.description) over (partition by dl.name order by dh.revision desc) as description, max (me.editionid) over (partition by dl.name order by dh.revision desc) as edition
from mta_data_location dl
inner join MTA_DEPLOY_HISTORY dh on dl.uuid=dh.o_datalocation
inner join mta_model_edition me on dh.r_deployedme=me.uuid;
(tested on Oracle)
Make sure to declare the datalocation field as aDashboard Parameterand from your Folders & ActionsOpen Dashboard menu, select :V_DATALOCATION as SemQL expression:
1 Comment
Cédric BLANC
said
about 2 years ago
Answer
You can build a Dashboard App on the welcome page that shows a list of datalocations with their deployed model version and associated description, as well as in a menu in each app that can use a Dashboard Parameter to filter on the appropriate datalocation from the same dashboard.
The query in Dashboard Builder looks like this:
select distinct dl.name as data_location, max (me.description) over (partition by dl.name order by dh.revision desc) as description, max (me.editionid) over (partition by dl.name order by dh.revision desc) as edition
from mta_data_location dl
inner join MTA_DEPLOY_HISTORY dh on dl.uuid=dh.o_datalocation
inner join mta_model_edition me on dh.r_deployedme=me.uuid;
(tested on Oracle)
Make sure to declare the datalocation field as aDashboard Parameterand from your Folders & ActionsOpen Dashboard menu, select :V_DATALOCATION as SemQL expression:
Cédric BLANC
Is there a possibility to create a custom version-entity with versions and release notes and bring the latest / active version from that entity to the UI (through use of model-variable perhaps)? We would like to show it in left menu or under documentation.
You can build a Dashboard App on the welcome page that shows a list of datalocations with their deployed model version and associated description, as well as in a menu in each app that can use a Dashboard Parameter to filter on the appropriate datalocation from the same dashboard.
The query in Dashboard Builder looks like this:
(tested on Oracle)
Make sure to declare the datalocation field as a Dashboard Parameter and from your Folders & Actions Open Dashboard menu, select
:V_DATALOCATION
as SemQL expression:Cédric BLANC
You can build a Dashboard App on the welcome page that shows a list of datalocations with their deployed model version and associated description, as well as in a menu in each app that can use a Dashboard Parameter to filter on the appropriate datalocation from the same dashboard.
The query in Dashboard Builder looks like this:
(tested on Oracle)
Make sure to declare the datalocation field as a Dashboard Parameter and from your Folders & Actions Open Dashboard menu, select
:V_DATALOCATION
as SemQL expression:-
Extend a model with new entities or attributes
-
Data types in xDM
-
Effective date on entities
-
Search using wild cards
-
Export a model from production and import on a development environment
-
"Allow Delete" vs "Allow Removal" privileges
-
LOV label in Named Query
-
Select location on a map and save coordinates
-
Is there a way to set up a master-detail relationship on browse mode?
-
Choose Either a Stepper or A Workflow Based on The User Privileges
See all 274 topics