IRdsDictionaryConverter.AllRdsDatabase

Syntax

AllRdsDatabase(RdsDatabase: IRdsDatabase): IRdsDictionaryConverterList;

Parameters

RdsDatabase. MDM repository.

Description

The AllRdsDatabase method checks MDM repository and returns the list of MDM dictionaries converted to table MDM dictionaries.

Comments

To convert all MDM dictionaries to table MDM dictionaries, use the IRdsDictionaryConverter.ConvertAll method.

Example

Executing the example requires an MDM repository with the 16008 key that contains MDM dictionaries required to convert to table MDM dictionaries.

Add links to the Metabase, Rds system assemblies.

Sub UserProc;
Var
    RDS_DB: IRdsDatabase;
    Converter: IRdsDictionaryConverter;
    List: IRdsDictionaryConverterList;
    NotConv: IMetabaseObjectDescriptors;
    pReasons: IRdsNotConvertibleReasons;
    pReason: IRdsNotConvertibleReason;
    i, j: Integer;
Begin
    RDS_DB := MetabaseClass.Active.Bind(16008As IRdsDatabase;
    Converter := New RdsDictionaryConverter.Create;
    List := Converter.AllRdsDatabase(RDS_DB);
    NotConv := List.NotConvertibleDictionaries;
    For i := 0 To NotConv.Count - 1 Do
        pReasons := List.GetNotConvertibleReasons(NotConv.Item(i).Key);
        Debug.WriteLine("Total errors: " + pReasons.Count.ToString);
        For j := 0 To pReasons.GetExplanation.Length - 1 Do
            pReason := pReasons.Item(j);
            Debug.WriteLine("Error code: " + pReason.Reason.ToString);
            Debug.WriteLine("    Reason:   " + pReason.GetExplanation);
        End For;
    End For;
End Sub UserProc;

After executing the example the console window displays the following:

See also:

IRdsDictionaryConverter