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

Forum Post: Ax services was unable to log on ( service account password )

$
0
0
after installing updates i am unable to start ax services and i get the following error "service was unable to log on as with the currently configured password due to the following error: unknown user name or bad password." i am using a service account for ax and i have not set any password for the account , also i can not change the password of a service account . when i check the properties of the service account it mentions that the password has been changed like 10 days ago . how dose service accounts password get changed regularly ? can i stop them from changing the ? how dose the service account password updated in database ?

Forum Post: Sales Order creation using classes and class declaration in ax 2012

$
0
0
Sir how can we create sales order in AX 2012 using classes and class declaration,using different classes related to sales order.

Forum Post: Account Structure - Financial Dimension

$
0
0
Hi, I have one company and 2 financial dimensions- Area and Worker in my accounting structure. I am trying to create a link between both my financial dimensions in such a way that whenever user selects Area dimensions only the specific worker dimensions appear to him or allow him to select relevant workers only. Both these dimensions are custom dimension. The financial dimension values for worker and area keep on changing during a year. If I try to fix this setup on account structure then I will have to keep on changing accounting structure every time a new worker is added. Additionally, account structure will also become too big. We have around 41 areas and 500 worker financial dimension values. I want to know whether there is any setup in AX 2012 R3 which I can use ? or did I need to go for customization only ? Thanks in advance for your contributions

Forum Post: RE: Sales Order creation using classes and class declaration in ax 2012

$
0
0
You can refer below code . If you know how to create classes (which you can easily search on the web ),you can utilize below code community.dynamics.com/.../how-to-create-sales-order-through-code

Forum Post: RE: Inventory Location clean up

$
0
0
Hi Sweety, When financial inventory is checked, the cost will be calculated by the warehouse or location level. If you donot check financial inventory for warehouse and location, the cost may be different if the purchased cost is different on location level.

Forum Post: Errors on customized Model build on Application version 10, Platform Update24(7.0.5179.35389)

$
0
0
Hi All, We have deployed our customized model on earlier Platform Updates 21, 22, 23 and it all worked well. Now I created a new VM with version 10 (Platform Update 24) and I am getting hundreds of errors in model build. Can't figure out what is missing. Can someone please throw some light what could be the problem? I created a VM and from VSTS got the latest version of customized models and now model building of all models (standard + customized). These customized VS project/solution gets successfully build. but somehow when i build the model, i get this errors.

Forum Post: RE: Dynamics Ax 2012 R3 on Windows 10

$
0
0
Cumulative Updates are cumulative, so CU13 contains all CUs below it. But it's good to check if the mentioned hotfix was included in the later CUs (it was not part of CU9 based on the document).

Forum Post: RE: Ax services was unable to log on ( service account password )

$
0
0
You or your IT (Active Directory) admin did not follow MS documentation. The service accounts should be set up in a way that the password does not expire. AX has nothing to do with it, it's just using the account that was provided during installation. If your admin needs help in setting not-expiring passwords, a simple web search will help. Or they can ask from an AD forum. If the password is changed, you need to update the credentials for the AOS service in the Windows Services form.

Forum Post: RE: Named user license report "SID getting error"

$
0
0
I did a web search for "dynamics ax named user license count sid getting error". The first search result returned this: " From the error I know what the problem is. One of the users can not be found in Active directory. " So, you have users in your AX user table that do not anymore exist in your AD.

Forum Post: RE: Resource group

$
0
0
Hi allaboutax If you're using the Warehouse management module, AX can create Work of type Finished Goods Put Away. It would be possible to configure this put away work to direct the items to a different location, depending on some property of the item. This method is particularly appropriate if you are using the Warehouse mobile device to register the Report as finished itself. If you use this method, the items will technically share the same output location, but will immediately be moved to the location you want by the put away work.

Forum Post: RE: Rework batch order doesn't activate start button

$
0
0
Hi Richardson, All you should have to do is open the Production order's 'Formula', which shows the items that will be consumed in the rework. Use the Inventory -> Reservation options here to reserve the inventory that you will rework to the production order.

Forum Post: RE: Ax services was unable to log on ( service account password )

$
0
0
Hello nikolaos , thank you for replying , we can not change service account password from services.msc the log on tab in properties is grayed out . can we delete the service account and recreate it again with the same name ?

Forum Post: RE: Ax services was unable to log on ( service account password )

$
0
0
You definetely can change the password, you just need someone with admin privileges to do that. You can't do administrative tasks if you are not an administrator. You should not delete and recreate the account, it will not work since the actual technical id (SID) will be different. Please discuss with your administrator to resolve this.

Forum Post: RE: Retail statement didn't retrieve data from store

$
0
0
Kindly delete records from crt.TABLEREPLICATIONLOG table and run p-job, it will brings all the records from Store DB to AX HQ. Job may take sometime if you have large amount of data. it will insert only whatever not inserted.

Forum Post: RE: Named user license report "SID getting error"

$
0
0
Hi Nikolaos, Thanks for the reply, So as you said we tried to check the AD, the users where , but modified in last September. So why this error got suddenly now. Any reasons or possibilities for that???

Forum Post: How to download cu10 for dynamic ax 2012 r3 without signing

$
0
0
How to download cu10 for dynamic ax 2012 r3 without signing

Forum Post: RE: 1180 Job throws error

$
0
0
this issue is purely timeout exception. can you please increase the connection timeout and command timeout

Forum Post: RE: Named user license report "SID getting error"

$
0
0
Maybe you did not run this report since last September.

Forum Post: RE: How to download cu10 for dynamic ax 2012 r3 without signing

$
0
0
Do you mean without signing in to Partner Source or Customer Source? I don't think that's possible. The updates are only available for Microsoft customers and partners. If you are neither, why would you need to download it?

Forum Post: RE: Sales Order creation using classes and class declaration in ax 2012

$
0
0
Hi Jamil, Here’s the code you can use to create a sales order in Dynamics AX 2012 through X++. static void CreateSalesOrder(Args _args) { //declaring variables SalesTable salesTable; SalesLine salesLine; NumberSeq numberSeq; SalesFormLetter salesFormLetter;; ttsBegin; //creating sales order header //getting sales order id from number sequence numberSeq = NumberSeq::newGetNum(SalesParameters::numRefSalesId()); numberSeq.used(); salesTable.SalesId = numberSeq.num(); salesTable.initValue(); salesTable.CustAccount = ‘US-001’; salesTable.initFromCustTable(); //validate if (!salesTable.validateWrite()) { throw Exception::Error; } salesTable.insert(); //creating sales order line salesLine.SalesId = salesTable.SalesId; salesLine.ItemId = ‘D0001’; salesLine.SalesQty = 2; salesLine.LinePercent = 1; salesLine.createLine(true, // Validate true, // initFromSalesTable true, // initFromInventTable true, // calcInventQty true, // searchMarkup true // searchPrice ); ttsCommit; //confirm sales order salesFormLetter = SalesFormLetter::construct(DocumentStatus::Confirmation); salesFormLetter.update(salesTable); //displaying sales order id info(salesTable.SalesId); } Best Regards, Blue Wang
Viewing all 130240 articles
Browse latest View live


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