3.1.1.1.51.2.2 GetAllAssociations

The GetAllAssociations procedure is used to retrieve all the custom field value associations that have been configured in the IPAM data store.

There are no input parameters to this procedure.

The following is the output parameter from this procedure.

Result_customFieldValueAssociations: This is a collection of tuples<signed 64-bit integer, signed 64-bit integer> in which each entry represents the association mapping for a specific set of custom field values.

The following are the processing steps involved:

  1. Retrieve all the rows in ADM_MultiValueCustomFieldValueAssociationTable.

  2. If no such rows are found, initialize Result_customFieldValueAssociations as NULL and return from the procedure.

  3. Initialize Result_customFieldValueAssociations as a collection of tuples as mentioned previously.

  4. Initialize an instance of tuple and assign CustomFieldValueId1 and CustomFieldValueId2 to it. Add this instance to the Result_customFieldValueAssociations collection.

  5. Return Result_customFieldValueAssociations as the output of the procedure.