Dear All, What is the advantage of Contract and DP class. Please give me more shed on this. Thanks!
↧
Forum Post: advantage of Contract and DP class.
↧
Forum Post: RE: From VS we can run SSRS report in D3FO
He means to say from reporting services URL
↧
↧
Forum Post: RE: Extension in D365 Ax7
Hi satish, Thank you i used your way of declaration.it works. Thanks & reards, padmapriya
↧
Forum Post: Default Code Extension in Dynamics 365 ax7
Hi Friends, This is different sceario in extension i am trying today, I need to call my extentsion method rather than default method. For Example, Default code in form method is if(a&b == 0) { a.c = ax; a.insert; } my extension code is if(a&c == 1) { a.b = ax; b.insert } i need to call my extension code rather than the default code here , i dont want to insert values on a table, how canskip default code and run only my extension code. please sugest an solution. Thanks & Regards, padmapriya
↧
Forum Post: RE: Default Code Extension in Dynamics 365 ax7
You can not skip whatever is running in standard code . You can Use COC to wrap a method and write your own logic docs.microsoft.com/.../method-wrapping-coc
↧
↧
Forum Post: RE: Unable to logon On Microsoft Dynamics, SSRS reports error only with one user
Hi, System administration ->Set up->System->System service accounts Here make sure the BC proxy account specified is the same one at Reporting services Config Manager-> Execution accounts and Service accounts This is a very minute thing, developers forget to check here when refreshing DBs from other environments. Thanks, SM
↧
Forum Post: RE: Chain Of Command In D365 Ax7
Hi Martin, I need to take extension In the form Custtable and the method name is "disableEnableControlsForItemTracing". Thanks & regards, padmapriya
↧
Forum Post: RE: Management Reporter Row definitions
HI Ludwig I would like to Use option (b) Could you guide me on how to use it ?
↧
Forum Post: RE: Chain Of Command In D365 Ax7
Then you've already failed, because it's impossible. I meant that you should look at the business requirement and find a different technical solution then trying to extend a private method. And we can't help you if you keep talking about the wrong code instead of what functional behavior you're trying to achieve.
↧
↧
Forum Post: RE: Don't copy charges while creating a Credit note
Try to use return order instead of credit note
↧
Forum Post: RE: Hiding the Delete button
Just set need permission property for this object to manual in form design and override permission access from security roles
↧
Forum Post: RE: Properties>Model Disabled.
As Martin suggest , You can move to model not change property
↧
Forum Post: RE: Displaying Transfer Invoice Date in the header of Customer Turnover Report
Dear Sir Agha Can you please, provide me Some tutorials sites for Report Development and also, sites about and how to use the tables methods So that I can practice before modifying SmmCustRevenue.Report and thank you very much for your help and cooperations Regards, Jami
↧
↧
Forum Post: RE: Customer/Ledger reconciliation - ledger balance is 0
Hello Ludwig Reinhard, thanks for your response :) this is the output in transaction origin Thanks
↧
Forum Post: RE: CustTranOpenPerDate Report is different for one user
Hello, deleting user/client Cache (auc-files) + executing menu-actions: SysFlushAOD, SysFlushData, SysFlushDictionary Doest not work. Saddly SysFlushReportServer does not exists in our version (R1). Any idea on how to "refresh reporting Server Cache " ? Thx Ferry
↧
Forum Post: RE: CustTranOpenPerDate Report is different for one user
It should be under Tools>>Caches>>Refresh Report Server.
↧
Forum Post: Extending the Variable from Default Method In Dynamics 365 Ax7
Hi Friends, I need to call the variable from default code to extended code in Dynamics 365, inside the ledger journal table method called init inside the variable "Lastvalue".I need to use this varaiable in my customized code, without declaring the variable one more time their.please suggest an solution. Thanks & regards, padmapriya
↧
↧
Forum Post: RE: Localizations Turkey
The company in question are operational with Dynamics AX 2012 R2 in other countries. So it´s not a new implementation but they are planning on adding there Turkey division. Does anybody have a recommendation for a partner that have custom built turkish localizations for Dynamics AX 2012?
↧
Forum Post: RE: CustTranOpenPerDate Report is different for one user
Sorry for me. But it's not there I think it's only in the menu from R3 on..... Ferry
↧
Forum Post: RE: Chain Of Command In D365 Ax7
Hi Padma, As per my understanding, method disableEnableControlsForItemTracing contains code to disable or enable field controls when CustTable form is called from InventTrackingDimTracing form. Hope this helps, 'disableEnableControlsForItemTracing ' is being called from Init method and based on condition when tracefilter exists. So copy post event handler of Init method and proceed as follows, /// /// /// /// [PostHandlerFor(formStr(CustTable), formMethodStr(CustTable, init))] public static void CustTable_Post_init(XppPrePostArgs args) { InventTrackingCustomerSummaryFilter traceFilter; FormRun formrun = args.getThis(); formDataSource CustTable_DS = formrun.dataSource(tableNum(CustTable)); traceFilter = formrun.args().parmObject() as InventTrackingCustomerSummaryFilter; if (traceFilter) { CustTable_DS.object(fieldNum(CustTable, Currency)).visible(false); CustTable_DS.object(fieldNum(CustTable, CustClassificationId)).visible(true); } } Thanks & regards, Satish Kakileti.
↧