How to Get an Output Message from Apex Class displayed on Skuid Page as Error Message on a button cl I am trying to display an output message(which is a variable output from Apex Class) as an error on my SKUID page. The Apex Code(with the required message highlighted) is:
@InvocableMethod(label=‘UpdateTaskStatus’) public static List UpdateTaskStatus(List lstInput){ List lstOutPuts = new List(); Output objOutput = new Output(); Set UnderWrittingIds = new Set(); List taskList = new List(); List<Stipulation__c> stipList = new List<Stipulation__c>(); Opportunity opp = new Opportunity(); for(input objI:lstInput){ UnderWrittingIds.add(objI.strUnderWrittingId); } Underwriting_File__c objUWFile = [select Id,Project_Status__c,Opportunity__c,Account_Name__c,M0_Ready_for_Review_Date_Time__c, M0_Ready_for_Review_Age__c,M1_Ready_for_Review_Date_Time__c,M1_Ready_for_Review_Age__c, (select id,Name,Description__c,Status__c,Completed_Date_Time__c,Suppress_Completed_Email_Alert__c from Stipulations__r where Status__c != ‘Completed’ and (Stipulation_Data__r.Name = ‘APR’ or Stipulation_Da