Here are my two Youtube videos. Here I shared, How to change Purchase order in Purchase Invoice if it is mistakenly wrong Purchase Order.
Here one video in English And second language in Urdu / Hindi
And here is its urdu version
A practitioner’s musings on Dynamics 365 Finance and Operations
by alirazazaidi
Here are my two Youtube videos. Here I shared, How to change Purchase order in Purchase Invoice if it is mistakenly wrong Purchase Order.
Here one video in English And second language in Urdu / Hindi
And here is its urdu version
by alirazazaidi
Hi all, today, while opening Workflow designer, I found following error
application cannot be started. Contact the application vendor
For this I have to clear the cache with following statement, in Command prompt
rundll32 dfshim CleanOnlineAppCache
If still problem remains, install click Once extension in Chrome.
Other wise use dynamics in Microsoft Edge. I tried on Microsoft Edge. It works perfectly fine.
Happy Daxing.
by alirazazaidi
[ExtensionOf(tableStr(PurchLine))]public static class PurchLine_Extension{[SysClientCacheDataMethodAttribute(true)] //This attribute will cache your display method.public static display Real MYOnHand( PurchLine _this){InventOnHand inventOnhand;InventDim InventDim;InventDimParm inventDimParm;inventDimParm.initFromInventDim(_this.inventDim());inventOnHand = InventOnhand::newParameters(_this.Itemid,_this.InventDim(),inventDimParm);return inventOnHand.availPhysical();}}
by alirazazaidi
by alirazazaidi
Severity Code Description Project File Line Suppression StateError CREATE UNIQUE INDEX I_17901NODEREFERENCE ON DBO.PROJHIERARCHYSORTING(PARTITION,DATAAREAID,TYPE,REFID,REFNODEID); —> System.Data.SqlClient.SqlException: The CREATE UNIQUE INDEX statement terminated because a duplicate key was found for the object name ‘dbo.PROJHIERARCHYSORTING’ and the index name ‘I_17901NODEREFERENCE’. The duplicate key value is (5637144576, atd, 0, , 0). 0
by alirazazaidi
public void displayOption(Common _record, FormRowDisplayOption _options){CustTable custTable = _record as CustTable;if ( custTable.CreditLimit < 1000){_options.affectedElementsByControl(CustName.id());_options.backColor(WinApi::RGB2int(255,0,0));_options.textColor(WinApi::RGB2int(255,255,255));}super(_record, _options);}
by alirazazaidi
Hi, There are many scenario, when we do calculation and bind it with Grid in dynamics 365 for finance and operations.
For these scenario, we populate temp table at run time and bind it to form data source.
We wrote code init() initialization method of data source to bind temp table to populate.
I used following code snippet for data populate temp table based data source.
Happy Daxing.
Small tip, but I learn it today, Again Document not create.
by alirazazaidi
During development, I got this error, when try to type newly created class that need to be run in batch processing.
That class I manually type because it was not appear in a list new task form inside batch job.
Later I found that I did not implement the canGoBatchJournal() method of RunBaseBatch
After adding following code snippet in my class, it will start to show in batch job task list.
by alirazazaidi
In Dev machine, we can call runnable class to load number sequence, but UAT or production server Visual Studio is not in our access.
In UAT or production server we can run number sequence load class in browser. with following command.
usnconeboxax1aos.cloud.onebox.dynamics.com[company]&mi=SysClassRunner&cls=[job/runnable class name]
For current example, if my class name is xyzNumberSeqLoadModule
you can add class name after basic url as
SysClassRunner&cls=xyzNumberSeqLoadModule
usnconeboxax1aos.cloud.onebox.dynamics.com&mi=SysClassRunner&cls=xyzNumberSeqLoadModule
by alirazazaidi