Can I create a temp variable in Kinetic Application Studio dashboard that persists whilt the dashboard is open?

Hello,

I am in need of a temp variable or two that I can initialize when the window loads and keeps the variable value the whole time the dashbaord screen is open.

Is this possible?

If so, how do I go about it?

Any help is truly appreciated!

add one to the Transview dataview

2 Likes

Hello,

This is not something I have tried yet so not sure how to add it or access it once it has been created.

Can you give me some pointers on this please?

I appreciate the quick response!

There are a few posts on this already. Since I am in IT, I’ll let them speak for me.. :slight_smile:

1 Like

Application Studio DataViews are dynamic.

You don’t actually need to declare one to use it. If you don’t explicitly declare a DataView, it will show during runtime as a “System DataView” instead of an “Application DataView” in dev tools.

So, at some point in the execution of your app, do a row-update, target something like tempvars.tempvar1, tempvars.tempvar2 etc.

Then you can reference these at any later point during execution.

1 Like

Thank you!

That did it for me.