web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

SQL View to Return the Microsoft Dynamics GP Workflow Step Assignments

Ian Grieve Profile Picture Ian Grieve 22,784
Microsoft Dynamics GPA common request from clients using Microsoft Dynamics GP workflow was a way to easily be able to review to whom workflow steps were assigned; this was often a request from auditors.

I produced a SQL view which could easily be deployed for use in any reporting tool (SmartList Designer or SmartList Builder, SSRS, refreshable Excel, etc.) and which returned who the step was assigned as well showing the predecessor step.

/*
Created by Ian Grieve of azurecurve | Ramblings of an IT Professional (http://www.azurecurve.co.uk) This code is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0 Int). */
CREATE VIEW uv_AZRCRV_GetWorkflowSetupStepAssignment AS SELECT ['Workflow Step Instance Table'].Workflow_name
,['Workflow Step Instance Table'].WF_Step_Predecessor
,['Workflow Step Instance Table'].Workflow_Step_Name
,['Workflow Step Instance Table'].WF_Step_Description
,['Workflow Step Instance Table'].EmailMessageID
,['Workflow Users'].ADLogin
,['Workflow Users'].ADDisplayName
FROM WF100003 AS ['Workflow Step Instance Table'] LEFT JOIN WF40200 AS ['Workflow Users'] ON ['Workflow Step Instance Table'].Workflow_Step_Assign_To = ['Workflow Users'].UsersListGuid
GO

GRANT SELECT ON

uv_AZRCRV_GetWorkflowSetupStepAssignment TO DYNGRP
GO

Read original post SQL View to Return the Microsoft Dynamics GP Workflow Step Assignments at azurecurve|Ramblings of an IT Professional


This was originally posted here.

Comments

*This post is locked for comments