Skip to main content

Posts

Showing posts from September, 2019

Find New Microsoft Dynamics 365 Certification Exam

Microsoft Dynamics 365 exam You can check below  Microsoft Dynamics 365 exam Certification code and description MB-200 Microsoft Dynamics 365 Customer Engagement Core MB-210 Microsoft Dynamics 365 for Sales MB-220 Microsoft Dynamics 365 for Marketing MB-230 Microsoft Dynamics 365 for Customer Service MB-240 Microsoft Dynamics 365 for Field Service MB-300 Microsoft Dynamics 365 Unified Operations Core MB-310 Microsoft Dynamics 365 for Finance and Operations, Financials MB-320 Microsoft Dynamics 365 for Finance and Operations, Manufacturing MB-330 Microsoft Dynamics 365 for Finance and Operations, Supply Chain Management MB-900 Microsoft Dynamics 365 Fundamentals

Code help to Create and post Project Beginning balance for Estimation posting in Ax 2012 | post project estimate

If you want to post Project Beginning balance for Estimation posting in Ax 2012 you can do that by using class and run method . What you need to do just you need to find posting class for Posting estimation of created stage records and pass via parameters. You need to review class ProjControlPostingPosted there are method run to post estimation. You can pass parameter then you need to write code to post it. Do not forget to initialize class via below code.  ProjControlPostingPosted1=new ProjControlPostingPosted(); after that you need to initialize query like this.            ProjControlPostingPosted1.initQuery();             ProjControlPostingPosted1.getQueryValues();             ProjControlPostingPosted1.queryRun(); Once you done that then you need to pass parameter simply in parm method and run the class by methods of run code. I hope you get the idea to post project estimation by code. I am not writing here whole code because you need to try your own way to get