Skip to main content

Posts

Showing posts from April, 2011

Update record after record insert in table

If you are getting the following error while inserting and updating records. Cannot edit a record in Table (Tablename). An update conflict occurred due to another user process deleting the record or changing one or more fields in the record. You will be doing it in this way; 1. Table table; 2. ; 3. table.Field1 = 'A' ; 4. table.insert(); 5. 6. table.Field2 = 'Desc' ; 7. table.update(); To avoid such cases: 01. Table table; 02. ; 03. ttsbegin; 04. table.Field1 = 'A' ; 05. table.insert(); 06. 07. table.Field2 = 'Desc' ; 08. table.update(); 09. ttscommit; Or this way: 01. Table table; 02. ; 03. table.Field1 = 'A' ; 04. table.insert(); 05. 06. // time consuming other code here 07. 08. ttsbegin; 09. table.selectForUpdate( true ); 10. table.reread(); 11. table.Field2 = 'Desc' ; 12. table.update(); 13. ttscommit;

List of “Whats New in Dynamics AX 2012″ Documents is Now on PartnerSource!

Finally Microsoft has released some documents about the long waited Microsoft Dynamics AX 2012 . These new training materials highlight the new features in Microsoft Dynamics AX 2012 . These materials are currently downloadable on PartnerSource (Partner Service Plan required). They will be orderable (can be purchased) beginning April 21. What’s New – Application in Microsoft Dynamics AX 2012 for Finance, PA, Case Mgmt., HRM and Public Sector Course Number 80164 What’s New – Technical in Microsoft Dynamics AX 2012 for Implementation Course Number 80165 What’s New – Application in Microsoft Dynamics AX 2012 for Supply Chain Management and Manufacturing Course Number 80163 What’s New – Technical in Microsoft Dynamics AX 2012 for Development Course Number 80299 What’s New – Local Functionality in Microsoft Dynamics AX 2012