Open In LiveDesign button in ACAS looks up LiveDesign columns in the D&C tree by name attribute to add them to LiveReports it creates. In LiveDesign, you can create a column alias which will change the name attribute in the D&C tree and cause ACAS to be unable to look up the column by name.
The fix is to use original_name instead of name lookup, which is always filled in and should match ACAS' expected column name.
Related Issue
ACAS-817
How Has This Been Tested?
Uploaded an experiment with column to a protocol
In LiveDesign I created column Alis for one of the endpoints
Tried Open In LiveDesign with the old code and no columns were added to to the LiveRport.
Updated to the code to use original name
Tried Open IN LiveDesign with the new code and both columns (one aliased, one not) were added to the LiveReport.
Description
Open In LiveDesign
button in ACAS looks up LiveDesign columns in the D&C tree byname
attribute to add them to LiveReports it creates. In LiveDesign, you can create a column alias which will change thename
attribute in the D&C tree and cause ACAS to be unable to look up the column by name.original_name
instead ofname
lookup, which is always filled in and should match ACAS' expected column name.Related Issue
ACAS-817
How Has This Been Tested?
Open In LiveDesign
with the old code and no columns were added to to the LiveRport.Open IN LiveDesign
with the new code and both columns (one aliased, one not) were added to the LiveReport.