adxmua sets the maximum number of users who can log on to the current application at the same time.
# Extract of an APL file
[S]adxmua = 255
# To avoid any confusion, the maximum number of software processes is mentioned in adxmua.
CHAIN = right$(ver$(0),10)
# ver$(0) provides the name of the Sage version followed by the serial
# number. The number of users starting at position 10.CHAIN = left$(CHAIN,instr(3,CHAIN,'0')-1)
# and finishing with the first "0" that appears beyond the 3rd position.
[S]adxmua = val(CHAIN)
adxmua is an Sage system variable of Description type. It sets the maximum number of users who can log on to the current application at the same time.
adxmua is usually positioned by one of the "APL.ini" name processes that are launched when starting the application. By default, its value is set to 255.
Only the modification of this variable in an initialization file can be efficient.
Regardless of the value of this variable, the total number of users that are logged on to an application at the same time cannot be higher than the total number of Sage processes that can be launched at the same time. The latter number is set upon purchasing the Sage product and it is mentioned in the license number for this product.