Показать сообщение отдельно
Старый 02.04.2015, 19:10   #5  
RVS is offline
RVS
Сенбернар
Аватар для RVS
Злыдни
 
696 / 130 (6) +++++
Регистрация: 27.02.2003
Адрес: Королев МО
Цитата:
Сообщение от Music Посмотреть сообщение
Можете уточнить, что вы имеете в виду?

У меня так:
X++:
        workerCertifier            = queryRun.get(TableNum(HcmWorker));
        workerRatingLevelExaminer  = queryRun.get(TableNum(HcmWorker));
public Common get(tableId table, [int occurrence])

occurrence - The data source to be addressed; optional. The number of the data source with the given table; 1-based. If more than one data source has the same table assigned to it, this (optional) parameter can be used to specify which one is to be addressed. It specifies the number of the data source with the given table. Thus, if the CustTable table is assigned to two data sources, and the second data source is required, this argument should have the value 2.

https://msdn.microsoft.com/en-us/lib...(v=ax.50).aspx

Отсюда имеем :

X++:
        workerCertifier            = queryRun.get(TableNum(HcmWorker, 1));
        workerRatingLevelExaminer  = queryRun.get(TableNum(HcmWorker, 2));

Вот как-то так
__________________
Best Regards,
Roman

Последний раз редактировалось RVS; 02.04.2015 в 19:14.
За это сообщение автора поблагодарили: axotnik88 (1).