FindByKey(Key: Integer): IPrxTableSource;
Key - key of a relational data source.
The FindByKey method searches for a relational data source by the specified key.
Sub Main;
Var
MB: IMetabase;
MObj : IMetabaseObject;
Report : IPrxReport;
TSources : IPrxTableSources;
TSource : IPrxTableSource;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("Report").Edit;
Report := MObj As IPrxReport;
TSources := Report.TableSources;
TSource := TSources.FindByKey(3);
TSource.Name := "TableSource";
MObj.Save;
End Sub Main;
After executing the example the name of the relational data source is changed. Report - identifier of a regular report.
See also: