フローを実行できません。ログはこのエラーを報告します:テスト用のスナップショットを取得できませんでしたIssue フローを (テスト経由で、またはトリガーして) 実行しても、フローは実行されません。ノードログを確認すると、エラーが記録されます:テスト用のスナップショットを取得できませんでしたCauseフローデザイナーでフローの実行に問題が発生したため、ノードログを使用して問題を正確に特定する必要があります。 Resolution[フロープロパティ] を使用して [デバッグ] にフローデザイナーログを設定します ([ログレベル] フィールドを指定)テストを繰り返し、同じエラー (テスト用のスナップショットを取得できませんでした) を探します。終わりです[DEBUG: Flow Designer: Compiling] フロー <フロー名>その他をすべて削除読みやすくするには、不要な参照を削除する必要があります。ビジネスルール、異なるスレッド、異なるユーザーでのアクティビティなどへの参照最終的に表示されるのは、何が起こっているのかを説明する約30行のログ行です。Flow Designer でフローを参照してそれを読みます たとえば、次のログスタックについて考えてみます。 DEBUG: Flow Designer: Compiling flow TestFlow | Change DEBUG: Flow Designer: Step Get Catalog Variables Step Created with an input count of 3 and an output count of 0DEBUG: Flow Designer: Step Get Catalog Variables Step Created with an input count of 3 and an output count of 5DEBUG: Flow Designer: Action created with an input count of 3 an output count of 5 DEBUG: Flow Designer: Step Lookup Record step Created with an input count of 5 and an output count of 2DEBUG: Flow Designer: Step Lookup Record step Created with an input count of 5 and an output count of 2DEBUG: Flow Designer: Action created with an input count of 5 an output count of 2 DEBUG: Flow Designer: Step Create Task step Created with an input count of 4 and an output count of 2DEBUG: Flow Designer: Action created with an input count of 3 an output count of 2 DEBUG: Input param1 assigned with a reference count of 1DEBUG: Input param2 assigned with a reference count of 1 SEVERE *** ERROR *** Flow Designer: nullSEVERE *** ERROR *** Flow Designer: Could not retrieve snapshot for testcom.glide.flow_trigger.engine.FlowSnapshotPlanRetriever.retrieve(FlowSnapshotPlanRetriever.java:33)com.snc.process_flow.engine.serialization.PlanProxy.plan(PlanProxy.java:43) ここで行っているのは フローのさまざまなアクションを実行し すべてをコンパイルすることですフローで確認すると、次のようなものが表示されます。 1) カタログ変数を取得:OK2) ルックアップレコード:OK3) タスクの作成:OK したがって、この時点まではすべて正常に機能します。フロー実行の次のステップで失敗する可能性があります。エラーの「null」は、入力値が不足している可能性があります。ログには次のように書かれています。 DEBUG: Input param1 assigned with a reference count of 1DEBUG: Input param2 assigned with a reference count of 1 これらは次のステップの入力です。最初の 2 つ (param1 と param2) は正常に動作しますが、3 番目の 2 つ (param1 と param2) は失敗します。