-
New user here, I am a Junior Salesforce Admin |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@GADXNghia - hmm, there has been one other user reporting the same behavior, but for some reason we have been unable to reproduce.
Can you run this query in the query builder and see if records are returned? This one should return all record-triggered flow across all objects 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 ManageableState IN ('unmanaged', 'installed')
AND TriggerType LIKE 'Record%'
ORDER BY TriggerObjectOrEventId, Label The actual query that Jetstream runs for automation control is like this where there is a list of objects included (in this example 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', 'Contact')
AND ManageableState IN ('unmanaged', 'installed')
AND TriggerType LIKE 'Record%'
ORDER BY TriggerObjectOrEventId, Label |
Beta Was this translation helpful? Give feedback.
@GADXNghia - Any chance you could create an empty sandbox with the flows and invite [email protected] as a user?
That would help troubleshoot.
A couple other debug options:
Any output in console?
Record a jam
Use https://jam.dev/ to do a screen share and show the behav…