The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click here for more information.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Workflow manager comments field and SQL Query?

vinodmukka
By
Level 2
Hi,

I need help is creating a custom reqport with sql query to get the below reports:

1) APPID,APPNAME,Comments (App Status Comments in WFM)
2) APPID,APPNAME, Current workflow phase and current owner of the phase, request received date and request completion date

Earliest responce is appreciated.:)

Thanks in advance..
(1) Reply

Cary_R
By
Level 11
Hi There,

You can accomplish something like this with a simple SQL Join:

Application Name, AppID, Comments:

select a.ApplicationLName,a.ApplicationID, b.DataText from ams_application a, AMS_ApplicationItem b
WHERE b.ItemID = a.CurrentWFMajorItemID

You would do something similar for the second report query, only against the AMS_Person and AMS_WFMajorItemTpl tables, which will have the display names of the User GUID and Current Workflow Phase GUID's stored IN AMS_Application.

Regards,