Dynamic Row Serial Numbering in Epicor Kinetic Grids

Hello Everyone,

I am new to the Kinetic environment and need assistance with creating a serial number for a grid when it is initialized. For instance, if the grid has 3 rows, each row should be assigned a serial number, such as 1, 2, 3.

If anyone knows how to implement this in Kinetic, I would greatly appreciate your guidance.

Thank you in advance! @dcamlin @hmwillett

Which screen are you using for this?

Hello @AndyGHA ,

I’m using this for Fulfillment Workbench Screen in Epicor Kinetic.

Thanks and Regards
Amit

It would be good if you could access the row index for this…

In lieu of that, instantiate a Transview variable to 1 (or whatever number) then set a value and increment using the iterative event of a dataview-condition that iterates through the whole set…

Use row-update to set your TransView.Iterator, for example, to 1
then a dataview-condition to iterate the whole data view that you want numbered…
In your iterative event, row-update YourDataView.RowNumber = {TransView.Iterator},
then row-update TransView.Iterator = {TransView.Iterator} + 1

1 Like

Hello @jwphillips,

Thank you for your response. The solution you provided worked well. I appreciate your assistance.

Thanks and regards,
Amit Kamble

1 Like