In reply to: Webcon_kaluser
We have a flow with all different steps. This flow has an item list and it has the required information from the Data dictionary. I think I can use them but due to all different steps exists in this flow, I thought of creating a simple 2 step flow in the same process and use that item list.
Daniel,
Thank you soo much for the helpful info.
I have created a 2 step flow(attached the pic) and using the existing item list with 2 additional new columns Name_inactiveuser, Count_inactive user. This item list has channel name, Channel cache( all the team members part of the channel), Name_inactiveuser, Count_inactive user.
I have used below query to pull loginID and Count(*) seperately and populating Name_inactiveuser, Count_inactive data row type form fields.
Select Count(*) from (
select
pn as ID,
s as BPS_Format,
dbo.ClearWFElem(s) as DisplayName,
dbo.ClearWFElemID(s) as Login
from Split(';', 'teammemberlist{text}')
) as P
Where P.Login not in ( Select cos_bpsID from CacheOrganizationStructure)
Is it the correct approach?