Hi,
Is it possible to determine which flows and activities are pulling from or pushing to each Item List without the need to locate and inspect the individual flows themselves?
Hi,
Is it possible to determine which flows and activities are pulling from or pushing to each Item List without the need to locate and inspect the individual flows themselves?
Open a tree view and using the Find tool in the Properties panel to seach for occurances of your list name.
Try this script, replacing "List1" with your global list name or adding a user command that has that passed as a parameter:
//findListReferences string listName="List1"; //param(1); List reflist=List(listName); Array listActivities=Array(0); treenode processFlows=Model.find("Tools/ProcessFlow"); Object o; Array results=Array(0); forobjecttreeunder(processFlows){ o=a; if (node("listRef+",variables(o))==reflist) listActivities.push(o); } forobjecttreeunder(processFlows){ o=a; treenode listref=node("listRef+",variables(o)); if (listref && listActivities.indexOf(listref)>0) results.push(o); } for (int n=results.length;n>0;n--) print(results[n]); return results;
This script doesn't account for conditional list selection in push/pull activities or local lists.
15 People are following this question.
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved