Description: String;
The Description property determines description (annotation) of current object output.
Sub Main;
Var
MB: IMetabase;
EtlTask: IEtlTask;
ALLLinks: IEtlPlainLinks;
Link: IEtlPlainLink;
Output: IEtlPlainOutput;
s: String;
Begin
MB:=MetabaseClass.Active;
EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;
ALLLinks:=EtlTask.Links;
Link:=ALLLinks.Item(0);
Output:=Link.SourceObjectOutput;
s:=Output.Description;
End Sub Main;
After executing this example the "s" variable contains a description of source object output of the first connection of the ETL task. Repository object has the ETL identifier.
See also: