You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HydraPlatform requires unique data for each scenario
The logic exist in code that compares the scenarios
Find a way to update HydraPlatform scenarios to have a parent id that relates the children scenarios with their parent.
It has to happen in two steps, upload the base scenario. Then call Hydra to look up the base scenario id, then use that id as the parent id for each scenario
SELECT DISTINCT ScenarioMappings.MappingID,ScenarioMappings.ScenarioID,ScenarioName
FROM "ResourceTypes"
Left JOIN "ObjectTypes" ON "ObjectTypes"."ResourceTypeID"="ResourceTypes"."ResourceTypeID"
Left JOIN "Attributes" ON "Attributes"."ObjectTypeID"="ObjectTypes"."ObjectTypeID"
Left JOIN "Mappings" ON "Mappings"."AttributeID"= "Attributes"."AttributeID"
Left JOIN "ValuesMapper" ON "ValuesMapper"."ValuesMapperID"="Mappings"."ValuesMapperID"
Left JOIN "ScenarioMappings" ON "ScenarioMappings"."MappingID"="Mappings"."MappingID"
Left JOIN "Scenarios" ON "Scenarios"."ScenarioID"="ScenarioMappings"."ScenarioID"
Left JOIN "MasterNetworks" ON "MasterNetworks"."MasterNetworkID"="Scenarios"."MasterNetworkID"
Left JOIN "Methods" ON "Methods"."MethodID"="Mappings"."MethodID"
Left JOIN "Sources" ON "Sources"."SourceID"="Mappings"."SourceID"
Left JOIN "Instances" ON "Instances"."InstanceID"="Mappings"."InstanceID"
ORDER BY ScenarioName,ScenarioMappings.MappingID ASC
The text was updated successfully, but these errors were encountered:
HydraPlatform requires unique data for each scenario
The logic exist in code that compares the scenarios
Find a way to update HydraPlatform scenarios to have a parent id that relates the children scenarios with their parent.
It has to happen in two steps, upload the base scenario. Then call Hydra to look up the base scenario id, then use that id as the parent id for each scenario
The text was updated successfully, but these errors were encountered: