
Microsoft just update the certification link. The courses are just quick start, rest is up to you.
https://docs.microsoft.com/en-us/learn/modules/discover-customer-needs/index
https://docs.microsoft.com/en-us/learn/modules/fit-gap-analysis/index
A practitioner’s musings on Dynamics 365 Finance and Operations
by alirazazaidi
Microsoft just update the certification link. The courses are just quick start, rest is up to you.
https://docs.microsoft.com/en-us/learn/modules/discover-customer-needs/index
https://docs.microsoft.com/en-us/learn/modules/fit-gap-analysis/index
by alirazazaidi
Very handy and quick tip. How to validate and cancel / failed validation logic in Dynamics 365 for finance and operations.. Here is
FormControlCancelEventArgs is key to return false in the case of validation fail.Very similar logic works for form data source field validate events.
[FormControlEventHandler(formControlStr(BabayeeDaForm, _BabayeDaTextBox), FormControlEventType::Validating)]
public static void BabayeeDaForm_BabayeDaTextBox_OnValidating(FormControl sender, FormControlEventArgs e)
{
var args = e as FormControlCancelEventArgs;
ret = checkFailed(' Main nahee mananah.');
args.cancel(ret );
}
by alirazazaidi
Hello, welcome to this post, In this post I will explain about navigation concept. If we go through the skilled measured PDF released measured by Microsoft it is follow
So what is workspace.
Workspace is one window to all operations performed by one role. Yes.
As this blog post is notes, So I can copied and paste things from different blogs added reference here.
So According to Microsoft
A workspace is defined as…
When to use Workspace.
If we explore the Customer Payments workspace it will something similar.
Tiles
Rectangle box which behaves like a menu button. When you click on it, it will leads you to specific page. This contains specific information, that 10 Sales are pending for confirmation, 2 Sales orders are invoiced.
For example Sales Invoice workspace contains Something similar.
List pages. This section contains the list pages For example sales Invoice contains following List Page.
One optional link based on Graphs and Charts. Something similar.
Then comes Related links.
This section, contains hyperlinks with in Dynamics 365 for finance and operations which are related to workspace, for example. Sales Invoice workspace contains following links.
References
by alirazazaidi
by alirazazaidi
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
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
Unable to connect to the remote server at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext) at Microsoft.WindowsAzure.Storage.Table.CloudTable.Exists(Boolean primaryOnly, TableRequestOptions requestOptions, OperationContext operationContext) at Microsoft.WindowsAzure.Storage.Table.CloudTable.CreateIfNotExists(TableRequestOptions requestOptions, OperationContext operationContext) at Microsoft.DynamicsOnline.Infrastructure.Components.TableAccessor.TableStorageAccessor.PerformOperation(CloudStorageAccount storageAccount, String tableName, Func`1 operation) at Microsoft.DynamicsOnline.Infrastructure.Components.TableAccessor.TableStorageAccessor.AddRecord[T](CloudStorageAccount storageAccount, String tableName, T record) at Microsoft.DynamicsOnline.Infrastructure.Components.SharedServiceUnitStorage.SharedServiceUnitStorage.UploadData(SharedServiceUnitStorageData data, Stream stream) at
by alirazazaidi
Serialization version mismatch detect, make sure the runtime dlls are in sync with the deployed metadata. Version of file ‘12104’. Version of dll ‘172’.