Workflow Profile Active Property
I have a data adapter with a query that lists all workflow profiles in the application. I need to exclude from that list all the inactive profiles (Profile Active=False)
Where is this property in the database table?

I have a data adapter with a query that lists all workflow profiles in the application. I need to exclude from that list all the inactive profiles (Profile Active=False)
Where is this property in the database table?

Gidon_Albert In your case above, if the scenario is not in the list then it is disabled. It will leave this table.
Take the code below and paste it into your data adaptor.
Test like this : 9 is a Variance scenario. Try there to disable and enable. You will see the result of the query. It will disapear.
Obgiously also chagne the name of the ProfileName.
SELECT
WorkflowProfileHierarchy.ProfileKey
,WorkflowProfileAttributes.ProfileKey
,WorkflowProfileHierarchy.ProfileName
,WorkflowProfileHierarchy.CubeName
,WorkflowProfileHierarchy.ProfileType
,WorkflowProfileAttributes.ScenarioTypeID
,WorkflowProfileAttributes.AttributeIndex
,WorkflowProfileAttributes.ProfileAttributeValue
FROM dbo.WorkflowProfileHierarchy
INNER JOIN dbo.WorkflowProfileAttributes
ON WorkflowProfileHierarchy.ProfileKey = WorkflowProfileAttributes.ProfileKey
WHERE WorkflowProfileHierarchy.ProfileName LIKE '%Task_A1%'
AND WorkflowProfileAttributes.ScenarioTypeID = 9
Later you can simplify this query to only get the profile names...
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.