|
![]() |
#1 |
Участник
|
palleagermark: Shortcut to the query object of a form data source
Источник: http://palleagermark.blogspot.com/20...form-data.html
============== Did you now that to get the query object of a datasource, you can write dataSource_q instead of dataSource_ds.query() For example in the CustTable form you can write: query = custTable_q; Instead of: query = custTable_ds.query(); Источник: http://palleagermark.blogspot.com/20...form-data.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
![]() |
#2 |
Участник
|
![]()
Таким образом, если подытожить у нас имеется:
X++: Query query; QueryRun queryRun; FormDataSource formDataSource; ; query = DataSourceName_q; queryRun = DataSourceName_qr; formDataSource = DataSourceName_ds; |
|