#SOQL Queries #Salesforce Admin #SOQL
SOQL QUERY: Query all flows in your Org. (Use Tooling API)
Select Id,DefinitionId,MasterLabel, ManageableState, VersionNumber, Status, Description, ProcessType, CreatedDate,CreatedById, TriggerOrder, RunInMode, ApiVersion, Environments, TimeZoneSidKey, ProgressStatus from flow where Status = 'Active'
6 件のコメント
You can also identify schedule-triggered flows with the query:
SELECT id, IsActive, Label, ProcessType, ManageableState , TriggerObjectOrEventId, TriggerObjectOrEventLabel, TriggerType FROM FlowDefinitionView WHERE triggertype = 'Scheduled'