Hello JordanH, If the exchange rate that the bank uses is different from the one that AX suggests to be used, you can overwrite the AX rate with the one that your bank uses. This can be done in the payment journal. In the general tab you should be able to see the currency field (CDN) and the system exchange rate in the field below. You can simply overwrite this rate with the banks rate and post the journal. As usual, if you have not done this before, test it once in a demo environment to be sure that you get the result you expect. Best regards, Ludwig
↧
Forum Post: RE: Cannot settle open invoices in foreign currencies.
↧
Forum Post: RE: Cost Amount for Transfer Journal
Hi Ludwig, There is transfer lot ID on inventory transaction and non financial transfer is ticked. In Inventory - Marking, nothing appears. It's a transfer between warehouse within a single site. Only the transfers cost amount is incorrect. Please suggest. Regards, Nisheet
↧
↧
Forum Post: RE: Error Language when add a new purchase order in Project Management & Accounting
Hello Jesica, Please also check your project contract funding sources. There is a language field available there and you should have this field filled. Best regards, Ludwig
↧
Forum Post: RE: Condition not being invoked for workflow
Hi Sohaib thanks for your reply, InventJournalname is a table, Can you please rearrange the above code ? Thanks
↧
Forum Post: RE: Cost Amount for Transfer Journal
Hello Nisheet, Isn't this a pure inventory transaction that does not create a financial voucher and thus does not affect your inventory valuation at all? Can you check if a ledger voucher has been created for this transaction? I would expect that this is not the case. As this transaction is classified as a non-financial transfer it won't be picked up by the inventory closing/recalclation process. Why should it? You just move an item from warehouse A to warehouse B and your accountants do not even see the value in their ledger accounts. Another thing to consider is that AX always regulates only issue transactions but not receipts. If AX would make an adjustment to the issue value of your inventory transfer, then you would have an issue price that is different from your receipt price, which does not make sense. Does this clarify things? Best regards, Ludwig
↧
↧
Forum Post: RE: Cost Amount for Transfer Journal
Hi, Please also check the following post, which gives you a deep inside into the inventory valuation in AX. This might help in addition to what I mentioned before. fedotenko.info Best regards, Ludwig
↧
Forum Post: RE: Send email with cc using SysEmailtable::sendmail method
Hi Ievgen, I have never done in AX to send email in CC Without modification. If you have any idea to send email in CC using AX framework, Please share with us. We will take this as learning opportunity and if you are in agreement to achieve the functionality with my given solution then please mark as suggested.
↧
Forum Post: RE: Cost Amount for Transfer Journal
Hi, There is some problem in opening the link. Can You share the content please? Nisheet
↧
Forum Post: RE: The Moving Average correction process due to a transaction date error that exceeds the current date
Anybody help?
↧
↧
Forum Post: RE: Calling FormA DataSource methods in formB close method
Hi Karthickks, You can achieve this using the Args class and Parm method. Below is just the sample code to help achieve your result, you can call FormB by using below code in any button click method of FormA. Str parmArgs; Args args = new Args(); args.record(your rable); //if required args.caller(this); args.name(formstr(SPXSalesOrderApprovedLines)); formRun = classFactory.formRunClass( Args ); formRun.init(); formrun.run(); formrun.wait(); if(formrun.closed()) { if(args.parm()) { parmArgs = args.parm(); //This is parameter value returned from FormB } } You need to set args().parm in formB as well as below: element.args().parm( 'Form B parameter value'); Regards, Ali Zeeshan
↧
Forum Post: RE: Calling FormA DataSource methods in formB close method
Hi Ali, Thanks for your reply. I wants to pass parameter from FormB to FormA datasource method. not from formA to Formb Thanks in advance.
↧
Forum Post: RE: Inventory Dimension Cleanup
If you have that many combinations resulting out of your dimensions, yes it will hit a big number. This shouldn't be a Problem by itself. Do you face any issues because of this? If yes, we can specifically look to resolve those.
↧
Forum Post: RE: BP :1201?
On the compiler output window, select Setup -> Best practices. Chan "Layer setting" to be "Skip nodes from lower layers". This will ignore BP issues created by ISVs or Microsoft that exist in layers lower than the one you are currently developing in.
↧
↧
Forum Post: RE: Calling FormA DataSource methods in formB close method
You can write a form Level method in form A to call it's datasource method. Now, from form B, you can call this form Level method in form A.. if (formHasMethod(element.args().caller(), identifierStr(yourNewMethod))) { element.args().caller().yourNewMethod(); // you can also use Parameters here }
↧
Forum Post: RE: Calling FormA DataSource methods in formB close method
Hi Karthickks, I just showed you sample code, the statement below will set your parameter in formB element.args().parm( 'Form B parameter value'); Then you can use below statement to get in formA if(args.parm()) { parmArgs = args.parm(); //This is parameter value returned from FormB } It just need some tweak to match your requirement. Regards, Ali Zeeshan
↧
Forum Post: RE: Inventory Dimension Cleanup
Hi Gepoy, Every customer environment is unique. The last customer I have that is live with Warehouse management (they are not using Containers) has over 2 million records in InventDim (they are running Inventory and Warehouse cleanup jobs). There is a White paper 'Performance considerations for warehouse management' here: blogs.msdn.microsoft.com/.../introducing-the-new-warehouse-management-and-transportation-management-modules-in-dynamics-ax-2012-r3 It talks about the impact of the warehouse module. Whilst most of the talk is around Inventory transactions, it also refers to the InventDim table. In summary, I don't think you can safely delete 'old' InventDimIds, only unused ones via the cleanup job. And if it's having no impact, then ignore it.
↧
Forum Post: RE: Send email with cc using SysEmailtable::sendmail method
I said " it requires tiny modification" and never said you can do it without it...
↧
↧
Forum Post: RE: Calling FormA DataSource methods in formB close method
Hi Crispin, Thanks for help. Will try this and get back!
↧
Forum Post: RE: Calling FormA DataSource methods in formB close method
Thanks Ali Zeeshan. Will try this!
↧
Forum Post: On-hand
Hi, How can I find on-hand stock at any particular date (even on a past date) Regards, Arshad
↧