Release Qty Update Event

I’m trying to trigger an event after a release qty change.

Dev tools shows an event called ChangeSellingReqQty being fired when I change the release quantity. So I go to add that event and trigger something after it, but Application Studio doesn’t show it in the list of target events.

I’ve tried entering it and testing it even though it doesn’t show in the drop down list, without luck.

Does anybody know what I’m doing wrong? Or how I should trigger an event after a release qty change? Thank you!


image

Hi Aiden,
I believe what you are looking at is a Method, not an event in Application Studio. Events show up in the Console window after you enable debugging mode (F12 to open the trace window, click into a data field on Kinetic, press Ctrl+Alt+8 to enable debugging mode). Methods should up in the Network tab, App studio events show up in the Console tab.

1 Like

Thank you for the clarification!

Yes, I’m trying to trigger my event using the target method ChangeSellingReqQty. But it doesn’t appear in the list of targets.

I don’t know if you can run an App Studio event after a Method. I’ve come to understand they are more separate worlds (App Studio Events and Data Rules in one world and Method/Data Directives other world). Maybe look to see what event is kicking off the Method and do it after that?

2 Likes

You absolutely nailed it @mackenziem !

The target I needed turned out to be ColumnChanging_OrderRelSellingReqQty and I found it in the Console tab with debugging mode on.
image

Rest Methods = Console tab
App Studio Events = Network tab

Love it! Thank you!

2 Likes

There should be an event that triggers this method.
Do a trace in debug mode to find it, and once you do, then you can trigger your event after that one.

Edit: You beat me to it :tada:

Glad to help!

Rest Methods = Network Tab*
App Studio Events = Console tab*

lol

1 Like

whoops :joy:

Crossed out above, thank you again!

1 Like