Tutorial User Guide > State Table Functional Interface > Record User Response Variable
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX''">XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX''">   
Record User Response Variable
AASTATE.record_ur_real
(variable_name, value)
Description:
This function will record a real State Table variable called <variable_name> associated with the current step.
Input:
STRING
variable_name[4096]
This value specifies the name of the user response variable.
REAL
value
This value specifies the value to record for the <variable_name>.
Output:
 
Error Conditions:
None
Remarks:
The State Table automatically associates the variable recording with the current analysis step as selected in the UI form main step selection box.
Example:
None.
  
AASTATE.record_ur_realarray
(variable_name, num, values)
Description:
This function will record a real array of State Table variables called <variable_name> associated with the current step.
Input:
STRING
variable_name[4096]
This value specifies the name of the user response variable.
INTEGER
num
This value specifies the number of values to store.
REAL
values(num)
This value specifies the values to record for the <variable_name>.
Output:
 
Error Conditions:
None
Remarks:
The State Table automatically associates the variable recording with the current analysis step as selected in the UI form main step selection box.
Example:
None.
 
AASTATE.record_ur_integer
(variable_name, value)
Description:
This function will record an integer State Table variable called <variable_name> associated with the current step.
Input:
STRING
variable_name[4096]
This value specifies the name of the user response variable.
INTEGER
value
This value specifies the value to record for the <variable_name>.
Output:
 
Error Conditions:
None
Remarks:
The State Table automatically associates the variable recording with the current analysis step as selected in the UI form main step selection box.
Example:
None
 
AASTATE.record_ur_integerarray
(variable_name, num, values)
 
Description:
This function will record an integer array State Table called <variable_name> associated with the current step.
Input:
STRING
variable_name[4096]
This value specifies the name of the user response variable.
INTEGER
num
This value specifies the number of values to store.
INTEGER
values(num)
This value specifies the values to record for the <variable_name>.
Output:
Error Conditions:
None
Remarks:
The State Table automatically associates the variable recording with the current analysis step as selected in the UI form main step selection box.
Example:
None
 
AASTATE.record_ur_string
(variable_name, value)
Description:
This function will record a virtual string State Table variable called <variable_name> associated with the current step.
Input:
STRING
variable_name[4096]
This value specifies the name of the user response variable.
STRING
value[virtual]
This value specifies the value to record for the <variable_name>.
Output:
Error Conditions:
None
Remarks:
The State Table automatically associates the variable recording with the current analysis step as selected in the UI form main step selection box.
Example:
None
.
AASTATE.record_ur_stringarray
(variable_name, num, values)
 
Description:
This function will record an array of virtual virtual strings called <variable_name> associated with the current step.
Input:
STRING
variable_name[4096]
This value specifies the name of the user response variable.
INTEGER
num
This value specifies the number of values to store.
STRING
values[virtual](virtual)
This value specifies the values to record for the <variable_name>.
Output:
Error Conditions:
None
Remarks:
The State Table automatically associates the variable recording with the current analysis step as selected in the UI form main step selection box.
Example:
None
 
AASTATE.record_uresponse
(variable_name, real_val, i_val, str_val, data_type)
 
Description:
This function will record either a real, integer, or a string value associated with the current selected analysis step. Place holder arguments are given for all 3 data types. Only one of the values arguments is used based upon the <data_type> argument.
Input:
STRING
variable_name[4096]
This value specifies the name of the user response variable.
REAL
real_val
This value specifies the real value to record for the <variable_name>, if the data_type = 1.
INTEGER
i_val
This value specifies the value to record for the <variable_name>, if the data_type = 2.
STRING
str_val[virtual]
This value specifies the value to record for the <variable_name>, if the data_type = 3.
INTEGER
data_type
Flag for type of data to record for the <variable_name>. The other two values will not be accessed.
Output:
Error Conditions:
None
Remarks:
The State Table automatically associates the variable recording with the current analysis step as selected in the UI form main step selection box.
The application author is not expected to favor this call option because of its complexity.
Example:
None