Dear All,
how to clear accrued purchase,
seem like some purchase order already paid, i still checking why its still acrrued, maybe it is paid but not using standart process payment at AX or else
Please help to clear accrued purchase.
Thank you
Dear All,
how to clear accrued purchase,
seem like some purchase order already paid, i still checking why its still acrrued, maybe it is paid but not using standart process payment at AX or else
Please help to clear accrued purchase.
Thank you
Hi All,
We have configured new AX DEV environment, replicated with Production model store and DB,
While editing PR workflow getting the below error :
"An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue."
while editing the PR workflow,"
My account has Admin rights.
we have tried the below steps:
Refresh WCF in client configuration:
In Administrative Tools select AX 2012 Configuration
in Configuration Target select Business Connector (non-interactive use only)
In Configuration create new configuration if you only have the original,
click on Connection tab, then click on Refresh configuration.
Stop AOS service
Delete files in Xppil (files ONLY, don’t delete the folders inside Xppil)
C:\Program Files\Microsoft Dynamics AX\60\Server\(your dev. repo. name)\bin\XppIL
Start AOS
Generate Full CIL
Data dictionary synchronize
Still getting the same error,
Is there anyway to resolve this error , please advise us.
Regards,
Akbar
Hi,
We are getting below error when scanning item. Price exists in trade agreement. I have run price and discount job from distribution schedule as well as channel db but getting same message
A price of zero is not valid for this item
Hello my bro
When I print approved journal the default printer ️ doesn't appears , suddenly found ax choose another one which doesn't configured.
I appreciate your support
My regards
When i process the sale of an item, I don't get any postings on my Packing Slip posting.. Is there a setup I'm missing?
bonjour,
quelqu'un peut me dire le vrai sens de la formule suivante :
=Atlas 6("Prod";"T.[DirPartyTable]";"";"RecId";"'%[C0]'";"";"Name";$D6)
merci d'avance
Hello!
I am a B.Tech student completed my graduation in the year 2018. I took training on Microsoft Dynamics AX. I want to know whether the fresher can get a job on the AX role.
Hi All ,
AX 2012 R3
The client has business operations across in many countries like Sweden ,UK ,Finland ,Norway and Denmark . The database is the same for all legal entities as mentioned below and business users will connect through RDS servers to access the application.The issue is that if users connected from Sweden they can view the date format on form level as YYYY-MM-DD, but when they run any standard SSRS reports, the date format is DD-MM-YYYY, which leads confusion to them. The date format is also okay in local documents such as excel sheet ,word document.
Any light why report level users has date format issues?
Thanks in advance.
It appears when you add a dependency for tasks you can only do them in sets of 2. So if I was processing a series of data and they were grouped but I needed them to run in a series instead of parallel I can't really accomplish that.
The full data set would be like 1-10 but I need 1-4 to chain dependencies together. So 1-4 would run just like that 1 -> 2 -> 3 -> 4 each depdent on the first one finishing. 5-10 could all be split off in their own parallel run-time task.
It doesn't even provide a way for me to grab the taskId to create the records in the batchConstraint table manually that I can tell.
I know in general it's possible to set up a series of dependent tasks. Just trying to figure out if I can accomplish this with batchHeader or if I need to just change the way I'm processing data.
Hi there,
Are there any discounts available to move Dynamics AX to Dynamics NAV?
If a client is converting to Dynamics NAV from Dynamics AX, is there a chance to receive a dollar credit for your Dynamics AX license? Meaning, if you are current on your annual maintenance with Microsoft and you decide to switch to another on-prem Dynamics product, you would receive a credit for the value of that license. Thanks for any information one may have regarding a Dynamics license transition to another Microsoft product.
Thanks!
Samantha
Good morning,
As i am trying to add number sequence to customer group.
I got stuck in one place.
in ax 2012 we used to mention .
NumberSeqFormHandler numberseqformhandler; is used to declare in form --> Class declaration.
In D365 i created extension form for custGroup.
Now where should i write Numberseqformhandler as global.
Should i create new class for CustGroupForm extension and should i writein that class ?
Please provide some light on this.
Regards.
Have a great day.
Hi All,
the 2017 has been closed in AX and i have noticed few un-settled customer transactions for 2017- Is there a way i can settle them in this year
Regards
Yousaf
Dear Experts,
I have a test server of Dynamics ax, it was working before, i uninstall due to some issue, now when i am trying to install SQL SERVER it gives me errors as above in image. The Error is :
"Reporting service - native Failed
Database Engine Services Failed
Data Quality Services Failed
Full-Text and Semantic Extractions for Search Failed
SQL Server Replication Failed"
Thanks and Regards,
Shabir Ahmad
Hi ,
I have a business scenario , Where i have to pass some value from drop dialog to a form query and based on that the records in the form will be display .
but when I again click the drop down dialog (drop down dialog is a menu control on the form it self) , the previous select value should be selected automatically.
your suggestions are highly welcome.
Regards,
Pratap
I created new customize form which content suspended transaction so now i need to Retrieve suspended transaction
so after research about that i found this way on SuspendedTrans in Triggers project .
Triggering Reciptprint in blank operation project
The good place for this is the PostSuspendTransaction method in the SuspendTriggers class. This class is located in the SuspendTriggers project of the Triggers solution.
The implementation is quite simple, yet a little bit tricky:
public void PostSuspendTransaction(IPosTransaction posTransaction)
{
LSRetailPosis.ApplicationLog.Log("SuspendTriggers.PostSuspendTransaction", "After the suspension of a transaction...", LSRetailPosis.LogTraceLevel.Trace);
RetailTransaction retailTransaction = posTransaction as RetailTransaction;
if (retailTransaction != null)
{
Application.RunOperation(PosisOperations.BlankOperation, "PrintRecipt;", posTransaction);
}
And also place for this is the BlankOperation method in the BlankOperations class. This class is located in the BlankOperations project of the Triggers solution.
and in BlankOperations as following code
// Do whatever you need
// .....................
if (operationInfo.OperationId == "PrintRecipt")
{
try
{
RetailTransaction retailTransaction = posTransaction as RetailTransaction;
if (retailTransaction == null)
{
POSFormsManager.ShowPOSMessageDialog(3660); // This action is not valid for this type of transaction.
}
else
{
Application.Services.Printing.PrintReceipt(FormType.Receipt, retailTransaction, true);
}
}
catch (PosisException ex)
{
ApplicationExceptionHandler.HandleException(this.ToString(), ex);
throw;
}
catch (System.Exception ex2)
{
ApplicationExceptionHandler.HandleException(this.ToString(), ex2);
throw;
}
}
}
How can i copy payment journal??
Hi everybody
I am facing the problem that I packing wrong item in item requirement of project module
I tried to reserve wrong transaction by create new lines with negative quantity in item requirement. However, I can not mark two transaction together. ( no line for mark)
If i don't mark them , the cost might be wrong.
Have you ever faced this problem before? How to reserve wrong transactions in item requirement?
Please help me know. Thanks so much