Argomento precedente: CreateServiceDefinitionMetricParameter

Argomento successivo: ServiceDefinition Metric Registration Methods

AddMetricsToServiceDefinition

Description

This method copies existing metrics in the system to the specified service definition.

Syntax

void AddMetricsToServiceDefinition (long ServiceDefinitionFolderItemID, long[] MetricIDs, bool forceAdd);

Parameters

Name

Type

Description

ServiceDefinitionFolderItemId

long

The ID of the service definition folder item.

MetricIDs

long[]

An array of IDs of the selected metrics to add.

forceAdd

bool

Specifies whether to force the addition.

Return Value

The copied metrics may belong to another contract, service definition, or contract template.

If the addition fails due to existing metrics with similar names, or mismatched effective dates, it is possible to set the forceAdd argument to true, in order to perform the addition while automatically renaming the metrics.

Remarks

None.

ServiceDefinition Metric Motes Methods

GetServiceDefinitionMetricNotes

Description

This method get the details of the metric notes in a service definition.

Syntax

MetricNotesData GetServiceDefinitionMetricNotes(long metricID);

Parameters

Name

Type

Description

metricID

long

The Metric's ID.

Return Value

The metric notes details, as type MetricNotesData.

Remarks

None.

UpdateServiceDefinitionMetricNotes

Description

This method updates the metric notes in a service definition.

Syntax

void UpdateServiceDefinitionMetricNotes(long metricID, MetricNotesData data);

Parameters

Name

Type

Description

metricID

long

The Metric's ID.

data

MetricNotesData

The data used to update notes of this metric.

Return Value

None.

Remarks

None.