Description
Returns approval requests of the logged-on user as authorizer.
Syntax
Example
| Getting the Approval Request List (C#) | Copy Code |
|---|
ApprovalRequestsService approvalSrv = MainModule.oCmpSrv.GetBusinessService(ServiceTypes.ApprovalRequestsService) As ApprovalRequestsService; ApprovalRequestsParams oList = approvalSrv.GetApprovalRequestList(); String result = ""; foreach (ApprovalRequestParams oParams In oList) { result += oParams.Code + " " + oParams.Remarks + " " + oParams.Status + "\n"; } Interaction.MsgBox(result, (Microsoft.VisualBasic.MsgBoxStyle)(0), null);
|
|
See Also