We are upgrading from Epicor 10.2.50 and I’m just getting to grips with Kinetic 2022 and Application Studio pre-upgrade with a lot of C# customisations to be re-written.
Have some very basic questions - any help appreciated
How do I set the value in a text box when the value in another field (combobox or textbox) changes (previously using the valuechanged and textchanged events) - what event should I use in Application Studio
You can use the datatable change Trigger and then the Row update to do this.
Alternatively you can also under the textbox properties, under Behavior use the OnBlur for the leave.
In this when the customer part number changes I call a function, update the other field with the result then save.
Thanks everyone for the help - I am calling a function on the Time Entry to do some calculations on the RunQty and returning the value (called from a new event (AfterGetById). That’s working fine but still haven’t figured out to get the row-update to set the value of the new field.
I’m using an Epicor function.
No response parameters defined on the erp-function widget yet. What should I add to this and the row-update?
Run your function in Swagger, Postman, etc and post the response JSON. You need that to fill out the response parameter properly. More than likely, it’ll be returnObj for the “Parse from Response Path”, but not always.
There are plenty of posts out there to search for to show you how to set the row-update.