Hi Friends,
New to management reporter, after you create a new row/column definition and saved, how do you modify them?
I poked around, just don't see option, except to create new ones.
Many thanks,
Hi Friends,
New to management reporter, after you create a new row/column definition and saved, how do you modify them?
I poked around, just don't see option, except to create new ones.
Many thanks,
Most likely, this is a result of broken CIL. You can try posting again after an incremental CIL.
If it's all the same, I'd rather avoid the DIXF.
It's only 3000 or so records in a one-off upload, and in the amount of time it takes to get a working template and test it, I'd have been as well doing it by hand.
At this point I may just do that.
Hello Ahmed,
the table ecoresConfiguration is used only for configurations. For size, color and style there are seperate tables called EcoResSize, EcoResColor and EcoResStyle. You need to fill these tables like you've done it for the configuration.
Also you have to fill the tables EcoResProductMasterSize, EcoResProductMasterColor and EcoResProductMasterStyle like you have done it for EcoResProductMasterConfiguration.
regards,
Heinz
That's not my experience. If it's just a simple table, you create a new entity of type "table", create a sample file, fill it with data and import it. It's work for a few minutes - you don't have to design, write and test anty code, you can't make any bugs in code, you can't screw up RecId sequence, you don't have to deploy anything...
Hi Friends,
From workflow setup, you can see how many instance it currently has or happening.
How can I see a list of those instance?
River
Hello everyone,
I'm starting to go a little crazy after exhausting hours into a sudden issue I am having.
I am running Dynamics AX 2012 R2 (Version: 6.2.1000.9655) and I'm consuming a web service through a custom class which builds a SOAP envelope by hand and using HttpRequest.
The code has worked fine for years but the web service is making an upcoming change where they will only allow TLS 1.2 connections and everything else will be refused.
In preparation for this, access to a web service that ONLY accepts TLS 1.2 connections has been made available alongside the current production environment which still accepts TLS 1.0.
When consuming the current production environment, everything continues to work as expected, but once I change my endpoint to the TLS 1.2 environment, I am receiving this error message:
Method 'send' in COM object of class 'Microsoft.XMLHTTP' returned error code 0x800C0005 (<unknown>) which means: The system cannot locate the resource specified.
I opened Fiddler and reran the code in Dynamics AX and the error response changed to this (While Fiddler is open):
Method 'send' in COM object of class 'Microsoft.XMLHTTP' returned error code 0x800C0008 (<unknown>) which means: The download of the specified resource has failed.
Fiddler also shows this in the text view of the request:
Version: 3.1 (TLS/1.0)
With the following error:
fiddler.network.https> HTTPS handshake to webserviceURL (for #3) failed. System.IO.IOException Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. < An existing connection was forcibly closed by the remote host
I could be wrong, but I am taking this as the request is not being made with TLS 1.2 but I have done the following to try and correct this with no luck:
1. I've followed this URL https://success.outsystems.com/Support/Enterprise_Customers/Maintenance_and_Operations/(.NET)_Enable_SSL_Protocols_for_your_Integrations_-_TLS_1.1_and_TLS_1.2 and added the requested registry keys to try and force .NET to TLS 1.2.
2. I've edited this line of the Ax32.Exe.Config file to at least specify a 4.5 version of .NET <supportedRuntime version="v4.0.30319" sku=".NETFramework,Version=v4.5.1"/>
3. I've added this line of code before I call the web service in X++ System.Net.ServicePointManager::set_SecurityProtocol(System.Net.SecurityProtocolType::Tls12);
Lastly, I have a few web applications (ASP.NET MVC) that run on a different server and I added this line of C# code - ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 to them and they appear to connect to the TLS 1.2 web service just fine.
Can anyone please offer me any assistance regarding AX on this issue?
Thank you so much!
Hi all
i have a scenario in which i have to add check box in inventjournalname form and depending on the value of the check box i have to control the value of qty in inventjournalline field to negative only. how can i do that .....need help
Thank you Guy for your explanations, I create an item in the Test environement and I repeat all transactions and see the cost for every operation, now it is clear for me .
Thx
Dear All,
I want to know from where the column Cost Amount is calculated in the item transactions screen, is it using the AVG cost of the last closing? because i have different values by lines which are different from the item cost in the inventory value report.
Could you help me to understand well this part in Dynamics AX?
Thx
Hello,
We are using D365FO U11.
I'm trying to import a Non PO pending vendor invoice( using procurement category) from excel using x++.
Could you please provide some inputs like tables/classes involved in this process?
Also i need to import Default dimensions Cost center and Business unit, since AxdDimensionUtil is deprecated how i can get DefaultDimension RecId to assign while importing?
I'm new to this tool, The tool already installed in AX 2012 R3 Cu8 and CIL is generated.
When I try to start recording and do the operation and do a stop recording, I get the infolog message "No entry points recorded".
I have gone through few posts mentioning abount hot fix but since this is already AX 2012 R3 CU8, I believe the hot fix in.
language is En-US.
Hi ievgen,
Thank you for pointing this out! I am still curious as to why my LedgerEntryJournal.LEDGERJOURNALTABLEDATAAREAID is blank and unusable for joining, in spite of the relationship it is supposed to have to LedgerJournalTable.
Your recommendation for this join allows me to circumvent that dataarea lookup with a different one based on Ledger -> DimAttributeCompanyInfo. Updated query below, and my data replication issue looks to be solved!
SELECT TOP 100 *
FROM [dbo].[GENERALJOURNALACCOUNTENTRY] gjae
LEFT JOIN [dbo].[GENERALJOURNALENTRY] gje ON gjae.GENERALJOURNALENTRY = gje.RECID
LEFT JOIN [dbo].[LEDGER] l ON gje.LEDGER = l.RECID
LEFT JOIN [dbo].[DIMATTRIBUTECOMPANYINFO] company ON l.PRIMARYFORLEGALENTITY = company.RECID
LEFT JOIN [dbo].[LEDGERENTRYJOURNAL] lej ON lej.recid = gje.LEDGERENTRYJOURNAL
LEFT JOIN [dbo].[LEDGERJOURNALTABLE] ljt ON ljt.JOURNALNUM = lej.JOURNALNUMBER
AND ljt.DATAAREAID = l.NAME
I am looking to find the person who created journals, and this is found on the LedgerJournalTable.
From GeneralJournalAccountEntry, I can get myself to the LedgerEntryJournal table. Supposedly I should be able to go from LedgerEntryJournal to LedgerJournalTable easily via the following relation:
However, this relationship fails for me because LedgerJournalTableDataAreaId is largely blank. Any advice on what to do, or advice on if something appears to be broken and how it may be fixed?
Hi Thank you for the reply,
I need to do this customisation in D 365, whether I want customise checque_us report or which one i should customize (check is opening in document while clicking generating payment)
Hi all,
How to find the cheque which is generated when clicking generate payments ,in payment journal,
I need to customise that cheque format design,
path:AP-->PayementJournal-->lines-->Generate payments
Thank you
HI Lionel07,
Not getting extended support does not mean you can not use application. You can still use application in future if you don't want to upgrade to latest version D365 F & O. For future licensing you may have to contact Microsoft.
Hello Lionel07,
As Sukrut Parab has said AX will still be usable after the extended support end date of 2021. However, what this means is no more hotfixes will be released and you will not be able to open up a ticket with Microsoft for support. You will still be responsible for licensing the Environment after this date.
Hello Everyone, quick question....
I am thinking of upgrading to AX 2012R3 to from R2.....but the cost is a major issue
If I choose not to upgrade will I still be able to pay my annual license fee? let say after after 2019 and beyond?
I know one of the main thing is not getting MS mainstream and extended support for AX 2012R2 after 10/9/2018 and 10/12/2021 respectively.
What will happen to Ax 2012 after 2021? Will I be able to use the application? also how would i pay for the licensing?
Thanks for your help...
figured out,
from home -> area page -> workflow -> workflow history