Managers should be able to approve the Movement Journal through the Mobile App APIs
Managers should be able to approve the Movement Journal through the Mobile App APIs class MK_InventJournalWFApprovalService { public MK_InventJournalWFApprovalResponse InventJournalTablePendingCount(MK_InventJournalRequest _request) { MK_InventJournalWFApprovalResponse response = new MK_InventJournalWFApprovalResponse(); List InventJournalList = new List(Types::Class); if (_request.parmEmail()) { UserId userId = this.getUserInfo(_request.parmEmail()).Id; InventJournalTable InventJournalTable; WorkflowWorkItemTable workFlowItemTable; select crosscompany count(RecId) from InventJournalTable join workFlowItemTable where workFlowItemTable.RefRecId == InventJournalTable.Recid && InventJournalTable.JournalType == InventJournalType::Movement && InventJournalTable.WorkflowApprovalStatus == InventJournalWorkfl...