Congratulations to Denis Macchinetti for the MVP award!
http://sinedax.blogspot.it/2014/04/mvp-2014-on-dynamics-ax.html
giovedì 17 aprile 2014
HOWTO: Refresh display options at run time
If you need to refresh the display options of a record, after an update to the data of dataset or in another situation you don't to research or requery the database, but use the clearDisplayOption method on you datasource. The parameter of the method is the updated record.
yourTable_ds.clearDisplayOption(yourTable);
yourTable_ds.refresh();
Iscriviti a:
Post (Atom)
AX 2012: The request was aborted: Could not create SSL/TLS secure channel
The error you're encountering, "The request was aborted: Could not create SSL/TLS secure channel," can occur due to various re...
-
Ussally you have to save a report to an output file for example store it or send it over mail. Here an example to save a report into Excel...
-
A simple way to export a data entity, using the powerful data management framework. You need a definition group, where the entity is mapped ...
-
NumberSeq numberSeq; InventTransferTable inventTransferTable; InventTransferLine inventTransferLine; InventDim inventDim; ; ttsbegin; ...