-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in the Automation Control tab I no longer see record trigger flow #1022
Comments
This is the query that Jetstream uses to get access to the record triggered flows.
If 1 above returns records, that means there is an issue in the processing of the data. SELECT Id, ManageableState, IsTemplate, ActiveVersionId, Label,
ApiName, Description, DurableId, IsActive, LastModifiedBy,
FORMAT(LastModifiedDate), LatestVersionId, ProcessType, TriggerObjectOrEventId,
TriggerObjectOrEvent.QualifiedApiName, TriggerObjectOrEventLabel, TriggerType,
(
SELECT Id, ApiVersion, ApiVersionRuntime, DurableId,
FORMAT(LastModifiedDate), ProcessType, RunInMode, Description, Label, VersionNumber,
Status
FROM Versions
)
FROM FlowDefinitionView
WHERE TriggerObjectOrEvent.QualifiedApiName IN ('Account')
AND ManageableState IN ('unmanaged', 'installed')
AND TriggerType LIKE 'Record%'
ORDER BY TriggerObjectOrEventId, Label Here is a more laxed query - if above does not return results, then try this and see if it returns results SELECT Id, ManageableState, IsTemplate, ActiveVersionId, Label,
ApiName, Description, DurableId, IsActive, LastModifiedBy,
FORMAT(LastModifiedDate), LatestVersionId, ProcessType, TriggerObjectOrEventId,
TriggerObjectOrEvent.QualifiedApiName, TriggerObjectOrEventLabel, TriggerType,
(
SELECT Id, ApiVersion, ApiVersionRuntime, DurableId,
FORMAT(LastModifiedDate), ProcessType, RunInMode, Description, Label, VersionNumber,
Status
FROM Versions
)
FROM FlowDefinitionView
WHERE TriggerType LIKE 'Record%'
ORDER BY TriggerObjectOrEventId, Label If #1 above has results - then I would be curious if there are any errors that show up in the console |
@Gustave94 - Did you try the second query and did anything show up from this one? SELECT Id, ManageableState, IsTemplate, ActiveVersionId, Label,
ApiName, Description, DurableId, IsActive, LastModifiedBy,
FORMAT(LastModifiedDate), LatestVersionId, ProcessType, TriggerObjectOrEventId,
TriggerObjectOrEvent.QualifiedApiName, TriggerObjectOrEventLabel, TriggerType,
(
SELECT Id, ApiVersion, ApiVersionRuntime, DurableId,
FORMAT(LastModifiedDate), ProcessType, RunInMode, Description, Label, VersionNumber,
Status
FROM Versions
)
FROM FlowDefinitionView
WHERE TriggerType LIKE 'Record%'
ORDER BY TriggerObjectOrEventId, Label |
hello, sorry for my late answer no, still the same message, sorry for my late return, I have the impression that it's linked to my computer or browser, once I tried in private browsing it worked then it didn't work any more. |
@Gustave94 - I don't know for sure, but it sounds like this is potentially permissions related. |
Hello, |
@Gustave94 - I just sent you an email, please take a look and reply there. |
Describe the bug and steps to reproduce
Hello Everyone,
When i select object and record trigger flow in automation control tab, i see 0 flow
Expected behavior
See flows please :)
Browser and operating system:
The text was updated successfully, but these errors were encountered: