23.04.2008, 23:06 | #1 |
Участник
|
gatesasbait: Table caching and record delete()/update()/next
Источник: http://gatesasbait.spaces.live.com/B...B9F5!209.entry
============== Good morning, This is a very basic concept. If you get the following error: "Cannot call NEXT, update(), or delete() on buffer where data is selected or inserted in another transactionscope." It means that the record selected has table caching activated, such as 'NotInTTS' and that you attempted to, for example run code like the following: //wrong select firstonly forupdate aRecord; ttsbegin; aRecord.delete(); ttscommit; It is important in general and necessary for cached tables to begin the transaction scope before selecting the record for update. And so, even for tables that do not have caching enabled, it is strongly discouraged to call NEXT, update(), or delete() on a buffer outside of the transaction scope it was selected in. //good ttsbegin; select firstonly forupdate aRecord; aRecord.delete(); ttscommit; Источник: http://gatesasbait.spaces.live.com/B...B9F5!209.entry
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
24.04.2008, 09:51 | #2 |
SAP
|
ну да раньше то на такое ошибку выкидывало, а сейчас с этим надо по осторожней : )
|
|
24.04.2008, 17:31 | #3 |
Участник
|
И сейчас выкидывает ошибку, просто почти на всех таблицах OccEnabled стоит в Yes. Поэтому код
X++: select firstonly forupdate aRecord; ttsbegin; aRecord.delete(); ttscommit; Но лучше все же писать X++: select firstonly optimisticlock aRecord; ttsbegin; aRecord.delete(); ttscommit; Кстати, в книге Inside MS Dynamics Ax4.0 намудрили с ключевыми словами - есть упоминание и optimisticklock, и optimisticlock. |
|
24.04.2008, 22:55 | #4 |
Участник
|
Цитата:
Они ж датчане, для них англ. язык тоже не родной |
|
|
Похожие темы | ||||
Тема | Ответов | |||
axStart: Table caching in AX | 3 | |||
Говорят вышел SP2 для Axapta 3. Кто нибуть что знает на эту тему? | 10 |
|