Hello! AFAIK, to get data not by a link in an object or form attribute I need to create and execute a query. Is there a shorter way if I have a unique standard attribute Code in my catalog?
CodeString = "840";
Currencies = Cataloges.Currencies;
SearchRef = Currencies.FindByCode(CodeString);
If SearchRef = Currencies.EmptyRef() Then
DoMessageBox("There is no currencies by code " + CodeString);
EndIf;