declare var general
Posted: 28 Jul 2023, 01:37
I need to declare a var somewhere in axes that I can use your content anywhere
The Meeting Place for aXes users to ask questions, supply answers and provide tips and techniques about different ways to use aXes.
https://axes.lansa.com.au/
Code: Select all
/* <--- Note the comma */
/* ------------------------------------------------ */
OneGeneralVariable : "", /* One general variable everyone can access */
/* ------------------------------------------------ */
Code: Select all
USERENV.OneGeneralVariable = "Hello";Code: Select all
alert(USERENV.OneGeneralVariable);
USERENV.OneGeneralVariable = 'Bye'