Matrix Version: v6.31.0
We schedule a lot of future statuses and use a dashboard to have a quick overview of those assets.
As a System Admin user in the System Administrators folder I have been able to use %asset_linking_info% and SSJS to identify the future status and retrieve the required information.
However other users are prevented from getting this data despite being able to see it through the admin interface.
Does anyone know of a way around this limitation?
Cheers
Here’s the crux of the current script.
var linkingInfo = %asset_linking_info^json_decode%;
for (i=0; i<linkingInfo.length;i++){
if(linkingInfo[i].link_value=='updating'){
var lineage = linkingInfo[i].lineage;
var page = lineage.pop();
var statusValue = '%globals_asset_assetid:'+page+'^as_asset:asset_data_attributes^json_decode^index:status^index:value%';
var whenValue = '%globals_asset_assetid:'+page+'^as_asset:asset_data_attributes^json_decode^index:when^index:value';
}
}