Hello All,
Upon doing Report as finished on this particular Production order, This Infolog shows "Resource number not specified"
I already checked the routes maintained and the resources are also there.
Hello All,
Upon doing Report as finished on this particular Production order, This Infolog shows "Resource number not specified"
I already checked the routes maintained and the resources are also there.
Hi,
We are calling an external web service and it's throwing an exception System.ServiceModel.FaultException which we are not able to handle in our X++ class.
We tried with other different types of exceptions available in enum Exception such as Exception::Error, Exception::CLRError, Exception::Internal but none has helped.
We also tried below as mentioned in http://dev.goshoom.net/en/2017/06/catching-exceptions-in-ax-7/
--------------------------------
System.ServiceModel.FaultException faultException;
try
{
Call to an external we service here.
}
Catch(faultException)
{
warning("Fault Exception");
}
-----------------------------
But it still fails at Catch block as shown below.
Can anyone please let me know how to handle this and proceed further? Thanks.
Hi All,
I follow below code for file move from one folder to other folder using below Code.
Set permissionSet;
permissionSet =
new
Set(Types::Class);
permissionSet.add(
new
FileIOPermission(fileName, #io_write));
permissionSet.add(
new
FileIOPermission(newFileName, #io_write));
permissionSet.add(
new
InteropPermission(InteropKind::ClrInterop));
CodeAccessPermission::assertMultiple(permissionSet);
System.IO.File::Move(fileName, newFileName);
CodeAccessPermission::revertAssert();
while am using am facing below error
I try to solve above error using the below dll
After adding Dll also am facing error, can anyone please explain me to solve this error.
Thanks
Tony
Hello,
This is our database (MSSQL20012 Standart) cpus and tempdb configuration. What dou think about tempdb configuration? We have to performance problem some times.
Thank you.
HI Experts,
Is there any way to update the approved by ID for all the lines in JV at a time.as it is taking too much time to give the ID for each line.
Thanks in advance
AX Main Account is not getting reflected in Management reporter as in the AX, the account type is "Profit and Loss" whereas the same in Management reporter it is "Total". So the management reporter is not collecting the data from from the said account. How to change the account type of that particular account from "Total" to "Profit and Loss" in Management Reporter.
Dear Experts,
I am getting the above errors while synchronizing database please check the in the image as well as below :
Cannot execute the required database operation. The SQL database has issued an error.
cannot execute a data definition language command on(). The SQL database has issued an error.
Problems during SQL data dictionary synchronization. The operation failed.
Thanks and Regards,
Shabir Ahmad
Dear Experts,
AX Main Account is not getting reflected in Management reporter as in the AX, the account type is "Profit and Loss" whereas the same in Management reporter it is "Total". So the management reporter is not collecting the data from from the said account. How to change the account type of that particular account from "Total" to "Profit and Loss" in Management Reporter.
Dear Team,
Please help if any method to approve via email without using azure ?
Hi
I am in Axapta4.0 and I do import customer payments from paypal by code (into LedgerJournalTrans) (not posted. Only created). Now I want to mark the imported payment against an open customer transaction (which is a customer invoice).
When I try to view the marked records in the form for the imported payments there is no marking available. In the spec trans I cn find my entry.
Can someone help me out?
Over Price/Net amount error while submitting PO, due to Accounting/Financial Distribution is charging double by 200% instead of 100% against one Line item's on PO level.
Please have a look and update me if any buddy have the solution for this bug/error. I shall be very thankful to your kind assistance.
skype: md.salat
Email: muhammadmaroof@greenstar.org.pk
Thanks,
Regards,
hi,
can anyone help I need to change the customer on a quotation that has already been sent so the customer account is greyed out is there a way to change this
many thanks
emma
Above is the workflow error message appearing while running/ submitting expense report.
Could someone share me the source link , I cannot download it
Hello,
Please I need help on how to ensure my AX 2012 test environment synchronises with Management Reporter (MR) test environment.
I have some users created in AX UAT but not showing up in MR UAT environment. I have restarted both the application and process services several times but the users are not showing up in MR. I have checked MR UAT connection to AX AOS and the correct connection is set up so, I don't know what else to check. When I tried to add the user directly in MR UAT ( which I shouldn't do anyway) error message as below displayed :
Interestingly, this doesn't happen in Live environment as the same users when created in AX Live sync with MR Live.
Please any tips on how to resolve this?
Regards
Hi All,
I am opening a page in ESS and when i click on the "View History" button, i get the below error- The User Control WorkflowHistoryDetails.ascx has caused a compilation error
I searched the forum and nothing helps.
Regards.
Does any know how AX 2012 / D365 post transactions for WAVE / Work without posting journals ?
Thanks
Hariharan Marudan
Hi All,
I am getting below error, while syncing the Quotes in AX 2009.Can any one please suggest me in this regard?.
Creation has been cancelled.
I have checked in AX Exceptions .But , Same error is showing in AX Exception.
Thanks ,
Pavan G.
My current system exports data to CSV in UTF-16 encoding format which I modified by adding 65001 UTF format to generate UTF-8 file. The exported file is UTF-8 with BOM. Here the end client requires just UTF-8 without those starting bytes with BOM. Any help or suggestion is really appreciable.
The following is my code: