2.19.2.1 MMI Managed Objects for Accounting Measurement Support

MMI information associated with Accounting Measurement support is accessed from a DSR NOAM or SOAM from Main Menu, and then MMI API Guide.

Once the MMI API Guide gets opened, use the application navigation to locate specific vSTP managed object information.

The following table lists the managed objects and operations supported for Accounting Measurement support:

Table 2-25 Accounting Measurement support Managed Objects and Supported Operations

Managed Object Name Supported Operations
AccountingMeasurementOptions Insert, Update, Delete
linksets Insert, Update, Delete

1)Accounting Measurement feature for any particular combination will be enabled only if combination specific field in VstpAccMeasOptions MO will be set as Yes.

accountingmeasurementoptions - Insert, Update, Delete

Note:

  • The Accounting Measurement feature for any combination is enabled only if value of the AccountingMeasurementFeature field in VstpAccMeasOptions MO is set as Yes.
  • The Accounting Measurement feature for any combination is enabled only the value of the combination specific field in VstpAccMeasOptions MO is set as Yes.

Execute the following command to display the content:

/vstp/accountingmeasurementoptions

Sample Output:

{
"data": [
{
"accountingMeasFeature": "No",
"dpcCdpaAccMeasOption": "No",
"dpcCgpaAccMeasOption": "No",
"dpcLinksetAccMeasOption": "No",
"dpcSiNiAccMeasOption": "No",
"gttOnInterConnectingNw": "No",
"linksetSiAccMeasOption": "No",
"opcCdpaAccMeasOption": "No",
"opcCgpaAccMeasOption": "No",
"opcDpcAccMeasOption": "No",
"opcDpcNiAccMeasOption": "No",
"opcLinksetAccMeasOption": "No",
"opcSiNiAccMeasOption": "No"
}
],
"links": {},
"messages": [],
"status": true
}

To update data, create a file with following content:

{
"accountingMeasFeature": "Yes",
"dpcCdpaAccMeasOption": "Yes",
"dpcCgpaAccMeasOption": "Yes",
"dpcLinksetAccMeasOption": "No",
"dpcSiNiAccMeasOption": "No",
"gttOnInterConnectingNw": "No",
"linksetSiAccMeasOption": "Yes",
"opcCdpaAccMeasOption": "No",
"opcCgpaAccMeasOption": "Yes",
"opcDpcAccMeasOption": "No",
"opcDpcNiAccMeasOption": "No",
"opcLinksetAccMeasOption": "No",
"opcSiNiAccMeasOption": "Yes"
}

Execute the following command on Active SOAM to update the data:

/vstp/accountingmeasurementoptions -v PUT -r /<Absolute path>/<File Name>
        

Sample Output:

{
"data": true,
"links": {},
"messages": [],
"status": true
}

linksets - Insert, Update, Delete

Note:

Accounting Measurement feature for any linkset is enabled only if the linksetAccMeasOption in linksets MO is set as Yes.

Execute the following command to display the content:

/vstp/linksets

Sample Output:

"data": [
{
"cgGtmod": false,
"configurationLevel": "135",
"enableBroadcastException": false,
"gttmode": "Fcd",
"ituTransferRestricted": false,
"linkTransactionsPerSecond": 100,
"localSignalingPointName": "LSP1“,
"name": "Linkset1",
"remoteSignalingPointName": "RSP1",
“linksetAccMeasOption”: “On”,
"type": "M2pa"
}
],
"links": {},
"messages": [],
"status": true
}

To update data, create a file with following content:

{
"cgGtmod": false,
"configurationLevel": "135",
"enableBroadcastException": false,
"gttmode": "Fcd",
"ituTransferRestricted": false,
"linkTransactionsPerSecond": 100,
"localSignalingPointName": "LSP1",
"name": "Linkset1",
"remoteSignalingPointName": "RSP1",
“linksetAccMeasOption”: “On”,
"type": "M2pa"
}

Execute the following command on Active SOAM to update the data:

/vstp/linksets -v PUT -r /<Absolute path>/<File Name>
        

Sample Output:

{
"data": true,
"links": {},
"messages": [],
"status": true
}