Answer the question
In order to leave comments, you need to log in
How to assign values of type Chart of AccountsReference.Self-supporting to a variable?
I want to sort through the sewn account numbers through the list of values and carry out further manipulations with them.
СписокСчетов = Новый СписокЗначений;
СписокСчетов.ТипЗначения = Новый ОписаниеТипов("ПланСчетовСсылка.Хозрасчетный");
СписокСчетов.Добавить("41.01", "ТоварыНаСкладах");
СписокСчетов.Добавить(ПланыСчетов.Хозрасчетный.НайтиПоКоду("41.01"), "ТоварыНаСкладах");
Answer the question
In order to leave comments, you need to log in
Wired - is it predefined?
It is not possible to get using the built-in language, because according to the syntax helper:
MetadataObject: ChartOfAccounts
Predefined
Usage:
Read only.
Description:
Type: Undefined.
Availability:
Server, thick client, external connection.
Note:
This property is always set to Undefined because the built-in language does not provide for working with the value of this property.
You can get predefined elements using the lookup manager by the name of the predefined item: PredefinedElement = Lookups.Catalog_Name.Predefined_Name.
Запрос = Новый Запрос(
"ВЫБРАТЬ
| Хозрасчетный.Ссылка КАК Ссылка
|ИЗ
| ПланСчетов.Хозрасчетный КАК Хозрасчетный
|ГДЕ
| Хозрасчетный.Предопределенный = Истина
|
|УПОРЯДОЧИТЬ ПО
| Хозрасчетный.Порядок");
Выборка = Запрос.Выполнить().Выбрать();
СписокСчетов = Новый СписокЗначений;
СписокСчетов.ТипЗначения = Новый ОписаниеТипов("ПланСчетовСсылка.Хозрасчетный");
Пока Выборка.Следующий() Цикл
СписокСчетов.Добавить(Выборка.Ссылка);
КонецЦикла;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question