OPENS THE AVAILABLE TO PROMISE WINDOW WHEN USER DOUBLE CLICKS STOCK CODE IN THE PRODUCTION ORDER.
RespondidaHello Experts
I have created a B1 Validation Configuration & Universal Function Configuration to open Available to promise window when user double clicks on the Item No in a Production Order
It works fine, but needs to be finetuned a bit more and I have run out of ideas how to do it or if it is even possible
The Macro I have used in the Universal Function is as below
Activate(3073)
Transfer($[$37.4.ItemCode]|$[$5.0.0]);
Click($[$1.0.0]);
Activate(5961);
What this does is when the user double clicks the Item Code, it opens the Item Master Data window and then the Available to Promise window
Now my problem’s.
First is that I don’t need the Item Master Data Window, can I open the Available to Promise window directly?
Second when user double clicks on the Item No header to sort the column, it opens the Item Master Data & Available to Promise windows for the first item in the production order. How do I stop this from happening?
I would have posted screen shots, but I don’t know if I can
Thanks and Regards
Rahul
-
Comentario oficial
Hi Rahul,
It's not possible to open the Available to promise window straight from the Production order -window. However, you can add a command CloseParent() to your macro to close the Item Master Data -window automatically:
Activate(3073);
Transfer($[$37.4.ItemCode]|$[$5.0.0]);
Click($[$1.0.0]);
Activate(5961);
CloseParent();To prevent the header double clicks from triggering your validation, you need a simple .NET Snippet to return the row you're clicking. See more on .NET Snippets (https://youtu.be/YSZ8wMTOLHg).
However, .NET snippets are always considered premium support, which you can request from our support e-mail support@boyum-it.com
-
Hello Everyone
It's been eight days since I asked a question
Does anyone even visit this forum? -
Hi Thomas
Thanks for replying. At least part of my problem is now solved
Premium support means I gotta pay?
Thanks and Regards
Rahul -
Yes, premium support is a paid service.
Iniciar sesión para dejar un comentario.
Comentarios
4 comentarios