Quantcast
Channel: Microsoft Dynamics AX
Viewing all 101540 articles
Browse latest View live

Forum Post: financial dimensions in ledgerjournalTrans

$
0
0
Dears, Please note than I am not able to import financial dimensions through DIXF. I am using entity opening balance. lines are imported but w/o financial dimensions. can anyone help?

Forum Post: How to get records from InventTransRegister form and insert it to a custom table?

$
0
0
Hi, My requirement is to get the values from the InventTransRegister form and insert it to a custom table (ex. Test Table). Here is the path where I need to get the values from: Production control > Production orders > All production orders > Inventory tab > Update registrations. The process is the records from the Registration Lines Tab, once the confirm registrations is clicked, the records will move up to the Transactions Tab. Upon checking, the Registration Lines grid DS is TmpInventTransWMS and the Transactions grid DS is InventTrans . I tried to look how those datasources / tables are populated so that I can get the records from those table can be inserted to my custom table. So, all the records in the form that once confirmed, I would like those records to be inserted in my table. Would appreciate any help. Thank you!

Forum Post: RE: ReqTransPoPurchListPage datasource

$
0
0
I am sorry but I did not understand you. If you can explain me better

Forum Post: RE: Call a Form method from FormDataFieldEventHandler

$
0
0
Hi, In I am using form data field event handler. here how can i call data source methods and form methods inside that field event handler method. please suggest me /// /// /// /// /// [FormDataFieldEventHandler(formDataFieldStr(PurchTable, PurchLine, itemBarCode), FormDataFieldEventType::Modified)] public static void itemBarCode_OnModified(FormDataObject sender, FormDataFieldEventArgs e) { FormDataSource purchLine_ds = sender.datasource(); PurchLine purchLine = purchLine_ds.cursor(); } Thanks,

Forum Post: RE: On Sales Order Batch Reservation is not working

$
0
0
Hi, Aside from the other suggestions, this can also be caused if you are using Batch attributes, and one or more of the Batch's attributes has a value that is outside the range that is acceptable on the Customer's Batch attributes. Click the Batch attributes search button. If you are using Batch attributes, you will see records on this form. If deleting all these records reveals some Batches to reserve, this is your problem.

Forum Post: RE: Ledger Dimension in D365 through code

$
0
0
Hi Khadar I am not able to open first link and my requirement here is to create Ledger dimension from Main account Id and Default dimension which I use to do like this: DimensionDefaultingService:: serviceCreateLedgerDimForDefaultDim(_myDefaultDim, AxdDimensionUtil::getLedgerAccountId(MyMainAccContainer)); I got substitute class for DimensionDefaultingService which is LedgerDimensionFacade with desired method, but not able to find getLedgerAccountId method from AxdDimensionUtil class. Appreciate your help..

Forum Post: Ax2012 Emulator for Warehouse Management.

$
0
0
In the emulator in Warehouse Management module under the Change Warehouse function, the warehouse drop down menu has all the warehouses listed in a random order rather than alphanumeric, does anyone know how to rectify this?

Forum Post: RE: financial dimensions in ledgerjournalTrans

$
0
0
Hi, Can you provide some details on how and where you want to import financial dimensions? Do you want to create some ledger journals with financial dimension values or do you want to do something else? Best regards Ludwig

Forum Post: RE: calculate interest for customer

$
0
0
Hello baduro, If I understand this correctly then you want to have some customer specific interest calculation. Is that right? Assuming that this is what you want to achieve, why do you need a system modification for that? Best regards Ludwig

Forum Post: RE: Year End close-Reset in Ax 2012- Voucher Numbers are missing for the reversal and original year end transactions

$
0
0
Hello honey, Can you let us know what you did exactly to reset the transactions? Best regards Ludwig

Forum Post: RE: accruals error after product receipt update

$
0
0
Hello Thomas, Thank you for this update. Can you post a screenshot that illustrates the issue? Can you also let us know the AX version that you operate? Many thanks Ludwig

Forum Post: RE: calculate interest for customer

$
0
0
Hi Ludwig, Thanks for response. Yes, you are right. I have a client requirement to modify the interest calculation for customer and show up in the report. can you please share your idea how we can achieve this.

Forum Post: RE: financial dimensions in ledgerjournalTrans

$
0
0
Hi Ludwig, Yes I want to import from excel some ledger journals with financial dimension. I am using Data import export framework but the financial dimension is not working. this I a sample of what I am trying to import: JournalNum TransDate Voucher AccountType LedgerDimension Txt AmountCurCredit AmountCurDebit OffsetAccountType OffsetLedgerDimension TransactionType ExchRate CurrencyCode LineNum XXX-009999 3/31/2018 GJ-003333 0 YYYYYYYY 2018 Tax balances transfer 999 0 YYYYYYYY 1500 USD 1

Forum Post: RE: financial dimensions in ledgerjournalTrans

$
0
0
Hi, What is your ledger dimension? Does it have a dash included that might prevent the correct identification? What might help in addition is the following post if you have not already checked it connect.justwifi.pl/.../sgu ;cid=81485878&cp=1 Best regards Ludwig

Forum Post: RE: ReqTransPoPurchListPage datasource

$
0
0
Do you want to have a look at next two examples please? http://basicax.blogspot.com/2013/11/ax2012-r2-adding-new-fields-on-list.html https://stoneridgesoftware.com/how-to-update-the-data-source-on-a-listpage-in-microsoft-dynamics-ax/ Every list page has a query (which comes from AOT designed queries) In case if you want to change the query of the list page, you have to open the relevant query and change it there and then re-select the query on list page.

Forum Post: RE: calculate interest for customer

$
0
0
Hi, In the customer posting profile you can setup an interest code for each line. If each customer has a different interest code you only need to add them in your posting profile and you have a customer specific interest calculation. This might be a awkward setup but if you do this with the dixf then this is something that can be achieved without making a system modification. Best regards Ludwig

Forum Post: RE: financial dimensions in ledgerjournalTrans

$
0
0
my ledger dimension doesn't have a dash in my source code but I need to insert dimension in account field. for example the dimension is V3000 which is vendor 3000.

Forum Post: RE: Update table index using table extension

$
0
0
Hi, is there any update on this one?

Forum Post: RE: financial dimensions in ledgerjournalTrans

$
0
0
Can you share your Code that does the final insert to the target tables. (Source --> Target) ? That you mentioned, if you have not defined the dimensions previously in your System, they cannot get imported.

Forum Post: How to call method via dictTable in a batch job?

$
0
0
I have a program which calls dispay method via dict table. When I run it via job it is ok. permissionSet.add(new ExecutePermission()); CodeAccessPermission::assertMultiple(permissionSet); dictTable = new DictTable(_record.TableId); value = dictTable.callObject(_dspMethod, _record); but when I add it to the batch job I get following error: System.InvalidProgramException: Common Language Runtime detected an invalid program. at Dynamics.Ax.Application.MyClassBatch.Run() at Dynamics.Ax.Application.BatchRun.runJobStaticCode(Int64 batchId) in BatchRun.runJobStaticCode.xpp:line 54 at Dynamics.Ax.Application.BatchRun.runJobStatic(Int64 batchId) in BatchRun.runJobStatic.xpp:line 13 at BatchRun::runJobStatic(Object[] ) at Microsoft.Dynamics.Ax.Xpp.ReflectionCallHelper.MakeStaticCall(Type type, String MethodName, Object[] parameters) at BatchIL.taskThreadEntry(Object threadArg) Is it possible to run in in the batch somehow or it needs to be rewritten?
Viewing all 101540 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>