@plim Looking at the $tm1Ui function. Code is below
$tm1Ui.attributeGet('MinePhysicals', 'measure_costing_schedules', $scope.selections.measure1, 'Description').then(function(data){
$scope.selections.temp = data.value;
console.debug('Returned by this function - %o', data);
console.log($scope.selections.temp);
});
Been looking at other posts on the promise concept. The function returns a object of data, i just can’t seem to assign it to anything. The value of $scope.seections.temp is undefined.
Brian