Quantcast
Channel: Microsoft Dynamics AX Forum - Recent Threads
Viewing all 175888 articles
Browse latest View live

RE: AX2012 R3 WHS Picking Marked Inventory

$
0
0

That sounds like a very good idea..

But regardless, this calls for some additional task in the warehouse, before picking for Production.


AX2012 R3 WHS Picking Marked Inventory

$
0
0

Hi All!

I am working on our AX2012 R3 WHS implementation and need to know if there is a way for the reservation and picking system to find Marked inventory lots in the warehouse?  We often reference production orders together, and would like to find the marked inventory lot when releasing the parent production for picking.

Can this be done?

Thanks,

LJ

RE: Returning Boolean value in On Modified event handler in D365

$
0
0

You can use XppPrePostEventArgs.setreturnvalue() method to set return value of the method you subscribing to.

RE: How to call Managed Code in x++

$
0
0

No really. If you have added to the AOT, it should just work in x++.

If you are using version control or importing the xpo. I have noticed at times it drops the dll. You should compile and see the dll.

Adding it as a reference in the AOT will work but it is not necessary.

RE: delete journal completely

$
0
0

Did you guys make any customisation? This doesnt look right.

I am suprised you even have a journal header with out the journal name. The journal name is a mandatory field.

So, curious how you got into that state.

RE: Linked Items quantity not updated automatically in Ax retail POS

$
0
0

Were you able to resolve the issue, as I am also facing the same and your solution might help me mitigate mine. Please share.

Linked Items quantity not updated automatically in Ax retail POS

$
0
0

Dear All,

Can you please help me in the below issue:

“When we chose item on AX POS that linked with another items, For updating the quantity using “set qty” button, it updates the main item but the linked items did not changed. Also when we create a “return transaction” for the same item and when we trying to change its qty; then the quantity of the linked items did not changed at all.

Thanks in Advance,

Ibrahim Zubair

RE: Best before date in Batches

$
0
0

Hello,

Have you managed to use a solution for your question? note that the system should control the expiry date and not the Best-before date.

Thank you,


Best before date in Batches

$
0
0

Hi 

I have question about the "Best before date" in Batches.

I understand that we cannot reserve Batches which has "Best before date" =< Today's date.

Is there any way to reserve this kind of items with parameter settings?

Thank you,

RE: How to return multiple sale order in AX 2012

$
0
0

You cannot select multiple headers but you can select multiple lines from different headers. This way you will create one return order for multiple sales orders, but cannot create multiple for multiple.

RE: Too many forms are currently open...

$
0
0

Hello,

First of all sorry for bumping this subject. Because we were experiencing this error for a very long time and finally found a work around I'm posting this.

Our shopfloor users were the ones getting this error (probably because of a memory leak in custom code). The error came up during a posting process and resulted in not printing a batch label. Because of user restrictions the shopfloor users cannot reprint a batch label so the error resulted in quite some administrative overhead.

We've tackled the problem by adding validation before the posting process on the amount of GDI and USER objects of the ax32.exe application. Here's an example job:

static void TIMProcessUserObjectsCount(Args _args)

{

   #define.PROCESS_QUERY_INFORMATION(1024)    //&h400

   DLL                             user32DLL = new DLL("user32"),

                                   kernel32DLL = new DLL("kernel32");

   DLLFunction                     getGuiResources = new DLLFunction(user32DLL, "GetGuiResources"),

                                   openProcess = new DLLFunction(kernel32DLL, "OpenProcess"),

                                   getCurrentProcessId = new DLLFunction(kernel32DLL, "GetCurrentProcessId");

   HWND                            processHandle;

   ;

   if(hasGUI())

   {

       // Get the AX process ID

       getCurrentProcessId.returns(ExtTypes::DWord);

       processHandle = getCurrentProcessId.call();

       info(strFmt("Process ID: %1", processHandle));

       // Get the process handle

       openProcess.arg(ExtTypes::DWord, ExtTypes::DWord, ExtTypes::DWord);

       openProcess.returns(ExtTypes::DWord);

       processHandle = openProcess.call(#PROCESS_QUERY_INFORMATION, 0, processHandle);

       // Call the GetGuiResources function

       getGuiResources.arg(ExtTypes::DWord, ExtTypes::DWord);

       getGuiResources.returns(ExtTypes::DWord);

       info(getGuiResources.call(processHandle, 0));      // GDI objects

       info(getGuiResources.call(processHandle, 1));      // USER objects

   }

}

Hope this helps.

Too many forms are currently open...

$
0
0

Our users are complaining that they are getting the following message:

 "Too many forms are currently open, close some forms and try again."

 The message appears in an info box. It is very frustrating for them because it causes AX to close on them.  They say that there seems to be no correlation between the message and the number of forms they do in fact have open.  I have few facts to go on. Just complaints.

They say "it's been happening for a while". (We have been live on AX for 6 months.)  but I am hearing about the problem for the first time. And,  I am suddenly hearing about it from multiple sources. The different sources perform different jobs so I assume the problem is not isolated to a specific application.

 Any thoughts?

Thank you!

RE: How to return multiple sale order in AX 2012

$
0
0

Hi,

You can do that but you can copy only one sales order header (which is logic).

1/ pick your first SO and select the header on the upper part the "select all" button and mark the line you want to return, and specify the quantity

2/ pick your 2nd SO and select it, but uncheck the "select all" button there, and mark the line you want to return, and specify the quantity

It should be OK then

How to return multiple sale order in AX 2012

$
0
0

I need to know about return multiple sale order but i can't return show popup "Only one order header can be designated when copying order header." I should i do for this pop up.

RE: Lookup method for form data source field using Extension in D365.


RE: Avoid update modifiedDateTime

$
0
0

I don't think that it's possible, why do you need this ?

Avoid update modifiedDateTime

$
0
0

Hi all

I have a batch process that update a field on InventTrans and every time batch is executed modifiedDateTime fields is updated, is there any way to avoid to system update this field?

Thanks

RE: Lookup method for form data source field using Extension in D365.

RE: How to return multiple sale order in AX 2012

$
0
0

If i need to made select multiple return sale order i should to customize  program right?

RE: Avoid update modifiedDateTime

$
0
0

If you use tableBuffer.doUpdate() instead of tableBuffer.update(), modifiedDateTime is not set..

Viewing all 175888 articles
Browse latest View live


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